/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #f5f6fa; /* Light text for dark mode */
    background-color: #181a20; /* Dark background */
    /* Fix character encoding issues */
    font-feature-settings: "liga" 1, "kern" 1;
    text-rendering: optimizeLegibility;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Affiliate Cards Section */
.affiliate-cards-section {
    background: linear-gradient(135deg, #23272f 0%, #2d3250 100%); /* Darker gradient */
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.affiliate-cards-section h2 {
    color: #f5f6fa;
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.affiliate-cards-section p {
    color: #f5f6fa;
    text-align: center;
    margin-bottom: 2rem;
}

.affiliate-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    /* Prevent grid overflow */
    overflow: visible;
}

.affiliate-card {
    background: #23272f;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    color: #f5f6fa;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    /* Remove any background text */
    background-image: none !important;
}

.affiliate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.affiliate-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.affiliate-card:hover::before {
    transform: scaleX(1);
}

.affiliate-card-logo {
    width: 80px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Ensure logos don't get cut off */
    overflow: visible;
    position: relative;
}

.affiliate-card-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* Prevent logos from being cut off */
    display: block;
    margin: 0 auto;
}

.affiliate-card-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #f5f6fa;
    /* Ensure proper text rendering */
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.affiliate-card-rating {
    margin-bottom: 1rem;
}

.affiliate-card-stars {
    color: #f6ad55;
    font-size: 1.1rem;
    /* Fix character encoding issues */
    font-family: "Segoe UI Symbol", "Arial Unicode MS", sans-serif;
}

.affiliate-card-offer {
    font-size: 1rem;
    font-weight: 600;
    color: #38a169;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.affiliate-card-button {
    display: inline-block;
    background: linear-gradient(135deg, #7f57f1 0%, #a859c1 100%); /* New gradient */
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.affiliate-card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.affiliate-card-note {
    font-size: 0.75rem;
    color: #718096;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .affiliate-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 640px) {
    .affiliate-cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .affiliate-cards-section {
        padding: 1.5rem 0;
    }
    
    .affiliate-card {
        padding: 1rem;
    }
}

/* Header */
.header {
    background: #23272f;
    box-shadow: 0 2px 10px rgba(0,0,0,0.4);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #2d3748;
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-img {
    width: 40px;
    height: 40px;
    margin-right: 0.5rem;
}

.logo-text {
    color: #7f57f1;
}

.main-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    background: none;
}

.main-nav a {
    text-decoration: none;
    color: #f5f6fa;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.main-nav a:hover {
    color: #7f57f1; /* New hover color */
}

.recommended-casinos {
    display: flex;
    gap: 1rem;
    margin-left: 2rem;
}

.casino-recommendation {
    background: #f7fafc;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    color: #4a5568;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.casino-recommendation:hover {
    background: #7f57f1;
    color: white;
}

.casino-recommendation h3 {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.casino-recommendation p {
    font-size: 0.75rem;
    color: #718096;
}

.casino-recommendation .claim-button {
    background: #7f57f1;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    margin-top: 0.5rem;
    display: inline-block;
}

.casino-recommendation .claim-button:hover {
    background: #6a48d7;
}

.dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 0.8rem;
    margin-left: 0.25rem;
    transition: transform 0.3s ease;
    display: inline-block; /* Ensure the pseudo-element is positioned correctly */
    color: #7f57f1;
}

.dropdown-arrow::after {
    content: '▼';
    font-family: "Segoe UI Symbol", "Arial Unicode MS", sans-serif;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #23272f;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: #f5f6fa;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background: #2d3250;
    color: #7f57f1; /* New hover color */
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #4a5568;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #23272f 0%, #2d3250 100%); /* New gradient */
    color: #f5f6fa;
    text-align: center;
    padding: 4rem 0;
    /* Fix background text positioning */
    background-image: none !important;
    position: relative;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    /* Ensure proper text rendering */
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.feature-icon {
    font-size: 1.25rem;
}

.cta-button, .btn-claim, .btn-review, .btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button.primary, .btn-claim {
    background: #38a169;
    color: white;
}

.cta-button.primary:hover, .btn-claim:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(56, 161, 105, 0.4);
}

.btn-review {
    background: transparent;
    color: #4299e1;
    border: 2px solid #4299e1;
}

.btn-review:hover {
    background: #4299e1;
    color: white;
}

.btn-secondary {
    background: #4299e1;
    color: white;
    margin-top: 2rem;
}

.btn-secondary:hover {
    background: #3182ce;
    transform: translateY(-2px);
}

/* Sections */
.top-bonuses, .bonus-types, .why-choose-us, .faq-section {
    padding: 4rem 0;
}

.top-casinos-ranking {
    background: #23272f;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #2d3748;
    /* Ensure proper text rendering */
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.section-subtitle {
    font-size: 1.125rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #718096;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Casino Rankings - Clean Professional Layout */
.casino-rankings {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.casino-rank-card {
    background: #23272f;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    border: 2px solid #23272f;
    /* Fix any background image issues */
    background-image: none !important;
}

.casino-rank-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-color: #cbd5e0;
}

.casino-rank-card.featured {
    border-color: #7f57f1;
    background: linear-gradient(135deg, #23272f 0%, #2d3250 100%);
    box-shadow: 0 6px 25px rgba(246, 173, 85, 0.15);
}

.rank-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
    flex-shrink: 0;
}

.rank-number {
    width: 60px;
    height: 60px;
    background: #1a202c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.casino-rank-card.featured .rank-number {
    background: linear-gradient(135deg, #f6ad55 0%, #ed8936 100%);
    box-shadow: 0 4px 15px rgba(246, 173, 85, 0.3);
}

.rank-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #f6ad55;
    text-align: center;
    line-height: 1;
}

.casino-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.casino-logo {
    width: 60px;
    height: 60px;
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Fix logo positioning */
    overflow: visible;
    position: relative;
}

.casino-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* Prevent logos from being cut off */
    display: block;
    margin: 0 auto;
}

.casino-details {
    flex: 1;
    min-width: 0;
}

.casino-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1a202c;
    /* Ensure proper text rendering */
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.bonus-offer {
    margin-bottom: 1rem;
}

.bonus-amount {
    font-size: 1.4rem;
    font-weight: 700;
    color: #38a169;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.bonus-type {
    font-size: 0.9rem;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.casino-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.feature {
    background: #f1f5f9;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    color: #475569;
    border: 1px solid #e2e8f0;
    font-weight: 500;
}

.casino-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
    text-align: center;
    flex-shrink: 0;
}

.stars {
    color: #f6ad55;
    font-size: 1.1rem;
    /* Fix character encoding issues */
    font-family: "Segoe UI Symbol", "Arial Unicode MS", sans-serif;
    margin-bottom: 0.5rem;
}

.rating-score {
    font-weight: 700;
    color: #38a169;
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

.casino-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-width: 160px;
    flex-shrink: 0;
}

.btn-claim-bonus {
    background: #3182ce;
    color: white;
    padding: 0.875rem 1.75rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(49, 130, 206, 0.2);
}

.btn-claim-bonus:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(49, 130, 206, 0.3);
    background: #2c5aa0;
}

.btn-review {
    background: transparent;
    color: #3182ce;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #e2e8f0;
    text-transform: none;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.btn-review:hover {
    background: #f7fafc;
    color: #3182ce;
    border-color: #3182ce;
    transform: translateY(-1px);
}

/* Bonus Types */
.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.type-card {
    background: #23272f;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.type-card:hover {
    transform: translateY(-5px);
}

.type-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.type-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.type-card p {
    color: #718096;
    margin-bottom: 1.5rem;
}

.type-link {
    color: #7f57f1; /* New link color */
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.type-link:hover {
    color: #6a48d7; /* Darker shade for hover */
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #23272f;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.feature-card .feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.feature-card p {
    color: #718096;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #23272f;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #23272f;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #2d3250;
}

.faq-question h3 {
    margin: 0;
    color: #2d3748;
}

.faq-icon {
    font-size: 1.5rem;
    color: #7f57f1; /* New icon color */
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #718096;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #181a20;
    color: #f5f6fa;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #7f57f1;
}

.footer-section p {
    color: #e0e0e0;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: #a0aec0;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #e2e8f0;
}

.footer-bottom {
    border-top: 1px solid #23272f;
    padding-top: 1rem;
    text-align: center;
}

.footer-disclaimer {
    margin-bottom: 1rem;
    color: #a0aec0;
    font-size: 0.875rem;
}

.footer-disclaimer a {
    color: #7f57f1; /* Lighter blue for better visibility */
    text-decoration: none;
}

.footer-disclaimer a:hover {
    text-decoration: underline;
}

.footer-copyright {
    color: #718096;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (min-width: 1025px) {
    .casino-rank-card {
        gap: 2rem;
    }
    
    .casino-features {
        flex-wrap: nowrap;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .casino-rank-card {
        gap: 1.5rem;
    }
    
    .casino-features {
        flex-wrap: wrap;
    }
    
    .feature {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        transform: translateY(-100%);
        transition: transform 0.3s ease;
    }
    
    .main-nav.active {
        transform: translateY(0);
    }
    
    .main-nav .nav-list {
        flex-direction: column;
        padding: 1rem;
    }
    
    .main-nav .nav-list li {
        margin-bottom: 1rem;
    }
    
    .main-nav a {
        display: block;
        padding: 0.5rem 0;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f7fafc;
        margin-top: 0.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .casino-rankings {
        gap: 1rem;
    }
    
    .casino-rank-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .casino-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .casino-actions {
        flex-direction: row;
        justify-content: center;
    }
    
    .bonus-actions {
        flex-direction: column;
    }
    
    .types-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .bonus-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .feature {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 3rem 0;
    /* Fix background text positioning */
    background-image: none !important;
    position: relative;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    /* Ensure proper text rendering */
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.page-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
    background: #f7fafc;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '>';
    margin-left: 0.5rem;
    color: #718096;
}

.breadcrumb-list a {
    color: #7f57f1; /* New link color */
    text-decoration: none;
}

.breadcrumb-list a:hover {
    text-decoration: underline;
}

/* Casino Reviews Grid */
.casino-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    /* Fix any overflow issues */
    overflow: hidden;
    position: relative;
}

.casino-review-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.casino-review-card:hover {
    transform: translateY(-5px);
}

.casino-review-card.featured {
    border: 2px solid #f6ad55;
}

.review-badge {
    background: linear-gradient(135deg, #f6ad55 0%, #ed8936 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
}

.casino-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.casino-logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.casino-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-score {
    font-weight: 700;
    color: #38a169;
}

.review-highlights {
    margin-bottom: 1.5rem;
}

.highlight-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.highlight-label {
    color: #718096;
    font-weight: 500;
}

.highlight-value {
    font-weight: 600;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.pros h4, .cons h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.pros h4 {
    color: #38a169;
}

.cons h4 {
    color: #e53e3e;
}

.pros ul, .cons ul {
    list-style: none;
}

.pros li::before {
    content: '✓';
    color: #38a169;
    font-weight: bold;
    margin-right: 0.5rem;
}

.cons li::before {
    content: '✗';
    color: #e53e3e;
    font-weight: bold;
    margin-right: 0.5rem;
}

.review-actions {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.review-footer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
    color: #718096;
    font-size: 0.875rem;
}

/* Guides Grid */
.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.guide-card {
    background: #23272f;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.guide-card:hover {
    transform: translateY(-5px);
}

.guide-card.featured {
    border: 2px solid #f6ad55;
}

.guide-image {
    height: 200px;
    overflow: hidden;
}

.guide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.guide-content {
    padding: 1.5rem;
}

.guide-category {
    background: #7f57f1; /* New category background */
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
}

.guide-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.guide-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #718096;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.guide-link {
    color: #7f57f1; /* New link color */
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.guide-link:hover {
    color: #6a48d7; /* Darker shade for hover */
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    background: #23272f;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.category-guides {
    list-style: none;
    text-align: left;
}

.category-guides li {
    margin-bottom: 0.5rem;
}

.category-guides a {
    color: #7f57f1; /* New link color */
    text-decoration: none;
    transition: color 0.3s ease;
}

.category-guides a:hover {
    color: #6a48d7; /* Darker shade for hover */
}

/* Contact Section */
.contact-section {
    background: #f7fafc;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form {
    background: #23272f;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2d3748;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7f57f1; /* New focus color */
}

.btn-submit {
    background: #7f57f1; /* New button color */
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #6a48d7; /* Darker shade for hover */
    transform: translateY(-2px);
}

.form-success {
    background: #38a169;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #23272f;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.contact-icon {
    width: 24px;
    height: 24px;
    margin-right: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* Use proper icon font or remove broken icons */
    font-family: "Segoe UI Symbol", "Arial Unicode MS", sans-serif;
    font-size: 1.2rem;
    color: #7f57f1; /* New icon color */
}

/* Remove broken icon placeholders */
.contact-icon::before {
    content: "✉"; /* Use a simple mail icon */
}

/* Fix navigation dropdown arrows */
.dropdown-arrow::after {
    content: "▼";
    font-family: "Segoe UI Symbol", "Arial Unicode MS", sans-serif;
    margin-left: 0.25rem;
}

/* Fix any background text issues */
.affiliate-card::after,
.casino-rank-card::after,
.bonus-card::after {
    display: none !important;
}

/* Ensure proper text rendering */
.affiliate-card-name,
.casino-name,
.page-title,
.section-title {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
    color: #2d3748;
    /* Prevent text rendering issues */
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Fix any overflow issues */
.affiliate-cards-section,
.bonuses-listing,
.casino-reviews-grid {
    overflow: hidden;
    position: relative;
}

/* Ensure proper container sizing */
.affiliate-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    /* Prevent grid overflow */
    overflow: visible;
}

/* Fix any background image issues */
.hero,
.page-header {
    background-image: none !important;
    position: relative;
}

/* Remove any problematic background elements */
.hero::before,
.page-header::before,
.affiliate-cards-section::before {
    display: none !important;
}

/* Quick Access Section */
.quick-access {
    background: #181a20;
    padding: 3rem 0;
    text-align: center;
}

.quick-access h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #2d3748;
}

.quick-access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.quick-access-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: #23272f;
    border-radius: 12px;
    text-decoration: none;
    color: #f5f6fa;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.quick-access-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    color: #7f57f1; /* New hover color */
}

.quick-access-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.quick-access-item span {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Hero Section Improvements */
.hero {
    background: linear-gradient(135deg, #7f57f1 0%, #a859c1 100%);
    color: white;
    text-align: center;
    padding: 4rem 0;
    position: relative;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.feature-icon {
    font-size: 2rem;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Responsive Design for Quick Access */
@media (max-width: 768px) {
    .quick-access-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-features {
        gap: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
}

.contact-details h3 {
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.contact-details p {
    color: #718096;
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: #7f57f1; /* New link color */
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Filter Section */
.filter-section {
    background: white;
    padding: 2rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.filter-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: #7f57f1; /* New active/hover color */
    color: white;
    border-color: #7f57f1; /* New active/hover color */
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sort-options select {
    padding: 0.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    background: white;
}

/* Articles Grid */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.article-card {
    background: #23272f;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.article-date {
    background: #7f57f1; /* New date background */
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    text-align: center;
}

.article-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: #2d3748;
}

.article-card a {
    color: #7f57f1; /* New link color */
    text-decoration: none;
    padding: 0 1.5rem 1.5rem;
    display: block;
    font-weight: 600;
}

.article-card a:hover {
    text-decoration: underline;
}

/* Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
}

.process-step h3 {
    margin-bottom: 1rem;
    color: #2d3748;
    font-size: 1.25rem;
}

.process-step p {
    color: #718096;
    line-height: 1.6;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7f57f1 0%, #a859c1 100%); /* New gradient */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-links a {
    color: #7f57f1; /* New link color */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #6a48d7; /* Darker shade for hover */
}

/* Form Focus Effects */
.form-group.focused label {
    color: #7f57f1; /* New focus color */
}

.form-group.focused input,
.form-group.focused textarea {
    border-color: #7f57f1; /* New focus color */
    box-shadow: 0 0 0 3px rgba(127, 87, 241, 0.1); /* New focus color */
}

/* Sticky Conversion Bar */
.sticky-conversion-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #7f57f1 0%, #a859c1 100%); /* New gradient */
    color: white;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

.sticky-conversion-bar.show {
    transform: translateY(0);
}

.conversion-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.conversion-message {
    flex: 1;
    margin-right: 2rem;
}

.urgency-text {
    font-weight: 700;
    color: #f6ad55;
}

.conversion-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-conversion {
    background: #38a169;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-conversion:hover {
    background: #2f855a;
    transform: translateY(-2px);
}

.close-conversion {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.close-conversion:hover {
    background: rgba(255,255,255,0.1);
}

.urgency-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    opacity: 0.9;
}

.urgency-indicator::before {
    content: '⏰';
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Social Proof */
.social-proof {
    background: #f7fafc;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.trust-badge {
    display: inline-block;
    background: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    margin: 0 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    font-weight: 600;
    color: #2d3748;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
    }
    
    .casino-reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .casino-header {
        flex-direction: column;
        text-align: center;
    }
    
    .sticky-conversion-bar {
        padding: 0.75rem;
    }
    
    .conversion-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .conversion-message {
        margin-right: 0;
    }
    
    .btn-conversion {
        width: 100%;
        text-align: center;
    }
    
    .close-conversion {
        position: absolute;
        top: 0.5rem;
        right: 0.5rem;
    }
    
    .guide-card {
        margin-bottom: 1rem;
    }
    
    .guide-content {
        padding: 1rem;
    }
    
    .guide-image {
        height: 150px;
    }
    
    .guide-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
} 