/* Base Styles */
:root {
    --primary-color: #10b981;
    --primary-dark: #059669;
    --primary-light: #34d399;
    --secondary-color: #0f172a;
    --secondary-dark: #0c1322;
    --secondary-light: #1e293b;
    --text-light: #f8fafc;
    --text-muted: #94a3b8;
    --yellow: #fbbf24;
    --orange: #f59e0b;
    --orange-dark: #d97706;
    --danger: #ef4444;
    --success: #22c55e;
    --gradient-primary: linear-gradient(135deg, #10b981, #059669);
    --gradient-orange: linear-gradient(135deg, #f39c12, #e67e22);
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

.major-section-title { color: var(--orange); scroll-margin-top: 72px; }

.review-modal-theme h1,
.review-modal-theme h2,
.review-modal-theme h3,
.review-modal-theme h4,
.review-modal-theme h5,
.review-modal-theme h6 { color: var(--orange); }

.review-modal-theme .section-header h2 { color: var(--orange); }

#hero .hero-title { color: var(--orange); }

.hero-section h1 { color: var(--orange); }

.review-modal-theme .section-header {
    padding: 40px 24px;
    background: rgba(245, 158, 11, 0.08);
    border-left: 4px solid var(--orange);
    border-radius: var(--border-radius);
}
.major-section-title {
    color: var(--orange);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--secondary-color);
    color: var(--text-light);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--text-light);
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}



section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-light);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(16, 185, 129, 0.2);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: rgba(16, 185, 129, 0.1);
    transform: translateY(-2px);
}

.btn-yellow {
    background-color: var(--yellow);
    color: var(--secondary-dark);
}

.btn-yellow:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(251, 191, 36, 0.2);
}

.btn-orange {
    background: var(--gradient-orange);
    color: var(--text-light);
}

.btn-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(243, 156, 18, 0.2);
}

/* Header Styles */
#header {
    position: sticky;
    top: 0;
    background-color: var(--secondary-dark);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    padding: 4px 0;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    padding-left: 15px;
}

.logo a {
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.logo a:hover {
    transform: translateY(-1px);
}

.site-logo-img {
    height: 120px !important;
    width: auto;
    max-width: 300px;
    object-fit: contain;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 12px;
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-light);
    border-radius: 6px;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-link i {
    margin-left: 6px;
    font-size: 12px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
    background-color: rgba(16, 185, 129, 0.1);
}

.nav-link:hover i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--secondary-light);
    min-width: 200px;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-menu a {
    display: block;
    padding: 12px 18px;
    color: var(--text-light);
    font-weight: 500;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-menu a:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding-left: 22px;
    transform: translateX(4px);
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu .divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin: 8px 0;
    padding: 0;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-light);
    transition: var(--transition);
}

/* Hero Section */
#hero.dark-bg {
    background-color: var(--secondary-dark);
    padding: 120px 0;
    overflow: hidden;
}

#hero.text-centered .container {
    display: flex;
    justify-content: center;
    text-align: center;
}

#hero .container {
    position: relative;
    z-index: 2;
}

#hero .hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

#hero .hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--primary-color);
    font-weight: 700;
}

#hero .subheadline {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.5;
}

/* All Sites Hero Section */
.hero-section {
    background: var(--secondary-color);
    padding: 100px 0 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-section .hero-content {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section p {
    font-size: 1.3rem;
    color: var(--primary-color);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Filter Section */
.filter-section {
    background: var(--secondary-color);
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-tab {
    background: var(--secondary-light);
    color: var(--text-light);
    border: 2px solid transparent;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.filter-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.filter-tab:hover::before {
    left: 100%;
}

.filter-tab:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.filter-tab.active {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-light);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.filter-tab.active::before {
    display: none;
}

#hero .hero-message {
    margin: 20px 0;
    padding: 15px;
    background: rgba(16, 185, 129, 0.15);
    border-left: 4px solid var(--primary-color);
    border-radius: var(--border-radius);
}

#hero .highlight-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-light);
}

.features-list-horizontal {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.feature-item {
    margin: 0 15px 10px;
    display: flex;
    align-items: center;
}

.feature-item i {
    color: var(--primary-color);
    margin-right: 8px;
}

.features-list {
    margin-bottom: 30px;
}

.features-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.features-list i {
    color: var(--primary-color);
    margin-right: 10px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Value Grid Section */
#value-grid {
    background-color: var(--secondary-color);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background-color: var(--secondary-light);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.card h3 {
    margin-bottom: 15px;
}

.card p {
    color: var(--text-muted);
}

/* Featured Sites Section */
#featured-sites {
    background-color: var(--secondary-dark);
}

.sites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

/* Category Separator Styles */
.category-separator {
    grid-column: 1 / -1;
    margin: 40px 0 20px 0;
    padding: 30px 0;
    border-top: 2px solid var(--primary-color);
    text-align: center;
}

.category-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.category-icon {
    font-size: 2.2rem;
}

.category-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin: 0;
}

.site-card {
    background-color: var(--secondary-light);
    border-radius: var(--border-radius);
    padding: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    border: 1px solid transparent;
}

.site-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.site-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.exclusive {
    background-color: var(--primary-dark);
    color: var(--text-light);
}

.usa {
    background-color: var(--orange);
    color: var(--text-light);
}

.site-logo {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.site-logo img {
    max-height: 100%;
}

.site-rating {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 5px 10px;
    border-radius: var(--border-radius);
    font-weight: 600;
    margin-bottom: 20px;
}

.site-features {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.site-features li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.site-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 16px;
}

.site-card .btn {
    margin-top: auto;
}

/* About Section */
#about {
    background-color: var(--secondary-color);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

.staking-box {
    background-color: var(--secondary-light);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-top: 40px;
    border-left: 4px solid var(--primary-color);
}

.staking-box h3 {
    margin-bottom: 15px;
}

.staking-box p {
    margin-bottom: 20px;
}

/* Newsletter Section */
#newsletter {
    background: var(--gradient-primary);
    color: var(--text-light);
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.newsletter-content p {
    margin-bottom: 30px;
}

.newsletter-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.newsletter-features .feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.newsletter-features .feature i {
    color: white;
    font-size: 1.2rem;
}

.newsletter-form {
    display: flex;
    margin-bottom: 15px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 1rem;
}

.newsletter-form button {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    white-space: nowrap;
}

.newsletter-note {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 15px;
}

.benefits-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
}

.benefits-list li {
    margin: 0 15px 10px;
    display: flex;
    align-items: center;
}

.benefits-list i {
    margin-right: 8px;
}

.signup-form {
    display: flex;
    margin-bottom: 15px;
}

.signup-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 1rem;
}

.signup-form button {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.note {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Footer */
#footer {
    background-color: var(--secondary-dark);
    padding: 40px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-links a {
    margin: 0 15px 10px;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-info {
    text-align: center;
}

.footer-info p {
    margin-bottom: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary-light);
    padding: 15px 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 1000;
    max-width: 90%;
    width: 500px;
}

.cookie-notice p {
    font-size: 0.9rem;
}

.cookie-notice.hidden {
    display: none;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .grid, .sites-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        padding: 8px;
        border-radius: 4px;
        transition: var(--transition);
    }
    
    .menu-toggle:hover {
        background-color: rgba(16, 185, 129, 0.1);
    }
    
    .navbar {
        padding: 0 15px;
    }
    
    .logo {
        padding-left: 5px;
    }
    
    .site-logo-img {
        height: 120px !important;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 85px;
        flex-direction: column;
        background-color: var(--secondary-dark);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        padding: 30px 0;
        gap: 0;
        border-top: 1px solid rgba(16, 185, 129, 0.2);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 0;
        width: 100%;
    }
    
    .nav-link {
        justify-content: center;
        padding: 18px 20px;
        font-size: 16px;
        border-radius: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-link:hover {
        background-color: rgba(16, 185, 129, 0.15);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background-color: rgba(15, 23, 42, 0.9);
        box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border: none;
        border-radius: 0;
        min-width: 100%;
    }
    
    .dropdown-menu.active {
        max-height: 500px;
    }
    
    .dropdown-menu a {
        padding: 15px 40px;
        font-size: 14px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .dropdown-menu a:hover {
        background-color: rgba(16, 185, 129, 0.2);
        padding-left: 45px;
        transform: none;
    }
    
    .dropdown-menu .divider {
        height: 1px;
        background: rgba(255, 255, 255, 0.1);
        margin: 5px 20px;
    }
        border-radius: 0;
    }
    
    .dropdown-menu.active {
        max-height: 500px;
    }
    
    .dropdown-menu a {
        padding: 15px 30px;
        font-size: 14px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .grid, .sites-grid {
        grid-template-columns: 1fr;
    }
    
    .signup-form {
        flex-direction: column;
    }
    
    .signup-form input {
        border-radius: var(--border-radius);
        margin-bottom: 10px;
    }
    
    .signup-form button {
        border-radius: var(--border-radius);
    }
}

@media (max-width: 480px) {
    section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .cookie-notice {
        flex-direction: column;
        text-align: center;
    }
}

/* All Sites Page Styles */
.all-sites-hero {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary-color) 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: var(--text-light);
}

.all-sites-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #10b981, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.all-sites-hero p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

/* Sites Section */
.sites-section {
    background: var(--secondary-color);
    padding: 60px 0 80px 0;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--secondary-light);
    color: var(--text-light);
    border: 2px solid transparent;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 140px;
    justify-content: center;
}

.filter-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.filter-btn i {
    font-size: 16px;
}

@media (max-width: 768px) {
    .filter-buttons {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 10px 16px;
        font-size: 13px;
        min-width: 120px;
    }
}

.poker-sites-section {
    padding: 80px 0;
    background: var(--secondary-color);
}

.sites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.site-card {
    background: var(--secondary-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: scale(1);
}

.site-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    border-color: var(--primary-color);
}

.site-banner {
    height: 180px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-bottom: 2px solid rgba(16, 185, 129, 0.2);
}

.site-banner img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(1.1) contrast(1.1);
    border-radius: 8px;
}

.site-card:hover .site-banner img {
    transform: scale(1.05);
}

.site-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.site-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.site-features {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-tag {
    background: var(--gradient-primary);
    color: var(--text-light);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.site-info p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.site-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.stars {
    color: var(--yellow);
}

.rating-text {
    font-weight: 600;
    color: var(--text-light);
}

.site-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.site-actions .btn {
    width: 100%;
    text-align: center;
}

/* Review Button Styles */
.review-btn {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    border: 2px solid #34495e;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.review-btn:hover {
    background: linear-gradient(135deg, #34495e, #2c3e50);
    border-color: #2c3e50;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 73, 94, 0.3);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    pointer-events: auto;
}

.modal-content {
    background-color: #1a1a1a;
    margin: 5% auto;
    padding: 0;
    border: none;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    background: var(--gradient-primary);
    color: white;
    padding: 20px 30px;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover,
.close:focus {
    color: #fff;
    text-decoration: none;
}

.modal-body {
    padding: 30px;
    color: #e0e0e0;
    line-height: 1.6;
}

/* Rakeback Article Modal Enhancements */
.rakeback-header {
    background: var(--gradient-primary);
}

.article-meta {
    color: var(--text-muted);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--secondary-light);
}

.article-intro {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 20px;
    padding: 16px;
    background: rgba(16, 185, 129, 0.08);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
}

.highlight-box {
    background: var(--secondary-light);
    border: 2px solid var(--secondary-light);
    border-radius: 12px;
    padding: 20px;
    margin: 22px 0;
}

/* Colorful Highlight Variants for Modals (align with betting pop-ups) */
.highlight-box.info {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
}

.highlight-box.info h4 {
    color: var(--primary-color);
}

.highlight-box.warning {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--danger);
    border-radius: 8px;
}

.highlight-box.warning h4 {
    color: var(--danger);
}

.calculation-box {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    padding: 16px;
    margin: 20px 0;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, 'Courier New', monospace;
}

.calculation-box h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-family: inherit;
}

.calc-line {
    color: var(--text-light);
    margin: 6px 0;
}

.calc-result {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1rem;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--primary-color);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 22px 0;
}

.comparison-table th {
    background: var(--secondary-light);
    color: var(--primary-color);
    padding: 12px;
    text-align: left;
    border-bottom: 2px solid var(--primary-color);
}

.comparison-table td {
    padding: 12px;
    border-bottom: 1px solid var(--secondary-light);
    color: var(--text-light);
}

.comparison-table tr:hover {
    background: rgba(16, 185, 129, 0.05);
}

.cta-section {
    background: var(--gradient-primary);
    color: white;
    padding: 22px;
    border-radius: 12px;
    margin: 25px 0;
    text-align: center;
}

.cta-section h3 {
    color: white;
    margin-bottom: 10px;
}

.cta-button {
    display: inline-block;
    background: white;
    color: var(--primary-dark);
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 8px;
    transition: transform 0.3s;
}

.cta-button:hover {
    transform: scale(1.05);
}

.warning-box {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--danger);
    border-radius: 8px;
    padding: 16px;
    margin: 20px 0;
}

.warning-box h4 {
    color: var(--danger);
    margin-bottom: 8px;
}

.faq-section {
    margin-top: 25px;
}

.faq-item {
    background: var(--secondary-light);
    border: 1px solid var(--secondary-light);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 12px;
}

.faq-question {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 6px;
}

.faq-answer {
    color: var(--text-light);
}

/* Modal Article Heading Colors */
.modal-body h2.heading-orange,
.modal-body h3.heading-orange {
    color: var(--orange);
}

.modal-body h2.heading-green,
.modal-body h3.heading-green {
    color: var(--primary-color);
}

/* Modal meta grid for symmetrical layout */
.modal-meta {
    display: grid;
    grid-template-columns: 1fr 1fr 1.6fr; /* wider tags column */
    gap: 6px 24px;
    margin-bottom: 20px;
}
.modal-meta .meta-item {
    display: flex;
    flex-direction: column;
}
.modal-meta .meta-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}
.modal-meta .meta-value {
    color: var(--text-light);
    font-weight: 500;
}

/* Normalize list indentation inside modal bodies for symmetry */
.modal-body ul,
.modal-body ol {
    padding-left: 18px;
    margin-bottom: 14px;
}
.modal-body li {
    margin-bottom: 8px;
}

@media (max-width: 600px) {
    .modal-meta {
        grid-template-columns: 1fr;
    }
}

.review-section {
    margin-bottom: 25px;
}

.review-section h3 {
    color: #f39c12;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.review-section h4 {
    color: #f39c12;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.review-section p {
    font-size: 16px;
    margin-bottom: 15px;
}

/* Improve list spacing inside modal review sections */
.review-section ul,
.review-section ol {
    margin-bottom: 14px;
    padding-left: 18px; /* visual indent within modal body */
}

.review-section li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* FAQ paragraphs tighter but readable */
.faq-section p {
    margin-bottom: 10px;
}

/* Rating Breakdown */
.rating-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin: 25px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.rating-item {
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.rating-item h4 {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: #bdc3c7;
    font-weight: 500;
}

.rating-score {
    font-size: 24px;
    font-weight: 700;
    color: #f39c12;
}

/* Pros and Cons */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 25px 0;
}

.pros, .cons {
    padding: 20px;
    border-radius: 8px;
}

.pros {
    background: rgba(39, 174, 96, 0.1);
    border-left: 4px solid #27ae60;
}

.cons {
    background: rgba(231, 76, 60, 0.1);
    border-left: 4px solid #e74c3c;
}

.pros h4 {
    color: #27ae60;
    margin: 0 0 15px 0;
    font-size: 18px;
    font-weight: 600;
}

.cons h4 {
    color: #e74c3c;
    margin: 0 0 15px 0;
    font-size: 18px;
    font-weight: 600;
}

.pros ul, .cons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros li, .cons li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.pros li:before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 16px;
}

.cons li:before {
    content: "\2717";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
    font-size: 16px;
}

/* Responsive Design for Modals */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-header h2 {
        font-size: 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .rating-breakdown {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .site-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .rating-breakdown {
        grid-template-columns: 1fr;
    }
}

/* Sign-up Instructions Modal Styles */
.signup-modal .modal-content {
    max-width: 600px;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
}

.signup-modal .modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px 12px 0 0;
}

/* Instruction Items Styling */
.signup-instructions {
    padding: 0;
    margin: 0;
}

.instruction-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.instruction-number {
    background: var(--primary-color);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    margin-right: 15px;
    flex-shrink: 0;
}

.instruction-text {
    flex: 1;
    line-height: 1.5;
    color: var(--text-light);
}

.signup-steps {
    padding: 0;
}

.signup-steps .step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.signup-steps .step-number {
    background: var(--primary-color);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    margin-right: 15px;
    flex-shrink: 0;
}

.signup-steps .step-content {
    flex: 1;
}

.signup-steps .step-text {
    line-height: 1.5;
    color: var(--text-light);
}

.signup-steps .step-text .highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: bold;
}

.signup-modal .modal-footer {
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0 0 12px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.signup-modal .contact-note {
    font-size: 14px;
    color: var(--text-muted);
    margin: 15px 0;
    text-align: center;
}

.signup-modal .contact-note .highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: bold;
}

.signup-modal .contact-link {
    color: var(--primary-light);
    text-decoration: underline;
}

.signup-modal .modal-buttons {
    display: flex;
    gap: 10px;
}

.btn-cancel {
    background: var(--secondary-light);
    color: var(--text-light);
    border: 1px solid var(--text-muted);
}

.btn-cancel:hover {
    background: var(--text-muted);
    transform: translateY(-1px);
}

.warning-icon {
    color: var(--yellow);
    font-size: 20px;
    margin-right: 10px;
}

/* Under Construction Styles */
.under-construction-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
}

.construction-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: var(--secondary-light);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.construction-icon {
    margin-bottom: 2rem;
}

.construction-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.construction-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.construction-features {
    text-align: left;
    margin: 2rem 0;
    padding: 0;
}

.construction-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-light);
}

.construction-features li i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 1.1rem;
}

.construction-timeline {
    background: var(--secondary-color);
    padding: 20px;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    border-left: 4px solid var(--primary-color);
}

.construction-timeline strong {
    color: var(--primary-light);
}

.construction-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.construction-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.construction-actions .btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.construction-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.construction-actions .btn-secondary {
    background: var(--secondary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.construction-actions .btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* Top Deals Page Styles */

/* Hero Section for Top Deals */
.hero-section .hero-cta {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-section .hero-subhead {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

/* Deal Cards Grid */
.deals-grid {
    padding: 60px 0;
    background: var(--secondary-color);
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.deal-card {
    background: var(--secondary-light);
    border-radius: var(--border-radius);
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    cursor: pointer;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.deal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.card-header {
    padding: 25px 25px 15px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
}

.card-header h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-light);
    margin: 0;
    line-height: 1.3;
    flex: 1;
}

.badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.badge.verified {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.badge.invite-only {
    background: var(--yellow);
    color: var(--secondary-dark);
}

.card-content {
    padding: 20px 25px;
    flex: 1;
}

.card-content p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 15px;
}

.card-content p:last-child {
    margin-bottom: 0;
}

.steps-list {
    margin: 20px 0;
}

.steps-list ol {
    padding-left: 20px;
    color: var(--text-muted);
}

.steps-list li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.card-footer {
    padding: 20px 25px 25px 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.button-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.disclaimer {
    font-size: 0.8rem;
    color: var(--text-muted);
    opacity: 0.7;
    line-height: 1.4;
    margin-top: 15px;
    display: block;
}

/* How to Claim Section */
.how-to-claim {
    padding: 60px 0;
    background: var(--secondary-dark);
}

.section-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.section-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 40px;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.step-content {
    color: var(--text-light);
    font-weight: 500;
    line-height: 1.5;
}

.help-text {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

.help-text a {
    color: var(--primary-color);
    font-weight: 600;
}

/* Eligible Rooms Section */
.eligible-rooms {
    padding: 60px 0;
    background: var(--secondary-color);
}

.rooms-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.room-pill {
    background: var(--secondary-light);
    color: var(--text-light);
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    border: 2px solid transparent;
    transition: var(--transition);
}

.room-pill:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

/* FAQs Section */
.faqs {
    padding: 60px 0;
    background: var(--secondary-dark);
}

.faq-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background: var(--secondary-light);
    padding: 25px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.faq-item p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Compliance Block */
.compliance-block {
    padding: 60px 0;
    background: var(--secondary-color);
}

.compliance-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.compliance-content p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.compliance-content p:last-child {
    margin-bottom: 0;
}

.compliance-content a {
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsive Design for Under Construction */
@media (max-width: 768px) {
    .construction-title {
        font-size: 2rem;
    }
    
    .construction-content {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .construction-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .construction-actions .btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .hero-section .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .grid-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .button-group {
        flex-direction: column;
    }
    
    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .section-content h2 {
        font-size: 2rem;
    }
    
    .rooms-pills {
        gap: 10px;
    }
    
    .room-pill {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

/* Generic modal overrides */
#generic-article-modal.no-blur {
    backdrop-filter: none;
}

#generic-article-modal .modal-content {
    max-height: 85vh;
    overflow-y: auto;
}
