/* =============================================================================
   JEET UP CASINO - MAIN STYLESHEET
   Color Palette Based on https://jeetup.in/
   ============================================================================= */

/* CSS RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #FFFFFF;
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    min-height: 100vh;
}

/* CSS VARIABLES - COLOR PALETTE */
:root {
    /* Primary Colors */
    --primary-brown: #8B4513;
    --secondary-brown: #654321;
    --dark-brown: #5D4037;
    
    /* Accent Colors */
    --gold: #FFD700;
    --orange: #FFA500;
    --dark-orange: #FF8C00;
    --green: #32CD32;
    --dark-green: #228B22;
    
    /* Text Colors */
    --text-white: #FFFFFF;
    --text-dark: #8B4513;
    --text-light: #F5F5F5;
    
    /* Shadow Colors */
    --gold-shadow: rgba(255, 215, 0, 0.3);
    --dark-shadow: rgba(0, 0, 0, 0.5);
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --gradient-green: linear-gradient(135deg, #32CD32 0%, #228B22 100%);
    --gradient-brown: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    
    /* Breakpoints */
    --mobile: 768px;
    --tablet: 1024px;
    --desktop: 1200px;
}

/* TYPOGRAPHY */
h1 {
    font-size: 48px;
    font-weight: bold;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px var(--gold-shadow);
    margin-bottom: 20px;
    line-height: 1.2;
}

h2 {
    font-size: 32px;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 16px;
    text-shadow: 1px 1px 2px var(--dark-shadow);
}

h3 {
    font-size: 24px;
    font-weight: bold;
    color: var(--text-white);
    margin-bottom: 12px;
}

h4 {
    font-size: 20px;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 10px;
}

p {
    font-size: 16px;
    margin-bottom: 16px;
    color: var(--text-light);
}

/* CONTAINER & LAYOUT */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header .container {
    max-width: unset;
}

section a:not(.btn, .games-filter-btn, .sort-btn, .games-filter-link) {
    color: var(--gold);
    text-decoration: none;
}

section a:not(.btn, .games-filter-btn, .sort-btn, .games-filter-link):hover {
    color: var(--orange);
    text-decoration: underline;
}

/* BUTTON STYLES */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
    text-align: center;
    justify-content: center;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--dark-shadow);
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--text-dark);
    border: 2px solid transparent;
}

.btn-primary:hover {
    box-shadow: 0 8px 20px var(--gold-shadow);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--text-dark);
}

.btn-cta-primary {
    background: var(--gradient-green);
    color: var(--text-white);
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 12px;
}

.btn-cta-secondary {
    background: var(--gradient-gold);
    color: var(--text-dark);
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 12px;
}

.btn-trust {
    background: var(--gradient-brown);
    color: var(--text-white);
    border: 2px solid var(--gold);
}

.btn-trust:hover {
    background: var(--gold);
    color: var(--text-dark);
}

/* HEADER STYLES */
.header {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1003;
    padding: 15px 0;
    border-bottom: 2px solid var(--gold);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background: var(--gradient-gold);
    color: var(--text-dark);
}

.header-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
}

/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1002;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
    border-bottom: 2px solid var(--gold);
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-content {
    padding: 20px;
}

.mobile-menu-login {
    display: block;
    color: var(--gold);
    text-decoration: none;
    font-weight: bold;
    padding: 15px 0;
    border-bottom: 1px solid var(--gold);
    margin-bottom: 20px;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 5px;
}

.mobile-nav-link {
    color: var(--text-white);
    text-decoration: none;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--gold);
    padding-left: 10px;
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-brown);
    position: relative;
    overflow: hidden;
    padding-top: 2rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 165, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(50, 205, 50, 0.1) 0%, transparent 50%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-left {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-light);
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-white);
    font-size: 16px;
}

.feature-item i {
    color: var(--green);
    font-size: 18px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-right {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-icon {
    position: absolute;
    font-size: 30px;
    color: var(--gold);
    animation: float 3s ease-in-out infinite;
    text-shadow: 2px 2px 4px var(--dark-shadow);
}

.floating-icon:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
.floating-icon:nth-child(2) { top: 20%; right: 15%; animation-delay: 0.5s; }
.floating-icon:nth-child(3) { top: 40%; left: 10%; animation-delay: 1s; }
.floating-icon:nth-child(4) { top: 60%; right: 20%; animation-delay: 1.5s; }
.floating-icon:nth-child(5) { bottom: 30%; left: 30%; animation-delay: 2s; }
.floating-icon:nth-child(6) { bottom: 20%; right: 10%; animation-delay: 2.5s; }

/* TRUST SECTION */
.trust-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
    text-align: center;
}

.trust-content h2 {
    margin-bottom: 20px;
}

.trust-content p {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.trust-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.trust-img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 20px var(--dark-shadow);
    transition: transform 0.3s ease;
}

.trust-img:hover {
    transform: scale(1.05);
}

.trust-feature {
    text-align: center;
}

.trust-feature i {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 15px;
    display: block;
}

.trust-feature h4 {
    color: var(--gold);
    font-size: 16px;
    margin: 0;
}

.trust-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* PAGES SECTION */
.pages-section {
    padding: 80px 0;
    background: rgba(139, 69, 19, 0.1);
}

.pages-section h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 36px;
}

.pages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.page-card {
    background: rgba(0, 0, 0, 0.4);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.page-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--dark-shadow);
}

.page-icon {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 20px;
}

.page-image {
    margin-bottom: 20px;
    text-align: center;
}

.page-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 20px var(--dark-shadow);
    transition: transform 0.3s ease;
}

.page-img:hover {
    transform: scale(1.05);
}

.page-card h3 {
    color: var(--gold);
    margin-bottom: 15px;
}

.page-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.page-card a {
    color: var(--orange);
    text-decoration: none;
    font-weight: bold;
}

.page-card a:hover {
    color: var(--gold);
    text-decoration: underline;
}

.pages-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* BONUSES TABLE SECTION */
.bonuses-table-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.bonuses-table-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.table-responsive {
    overflow-x: auto;
    margin-bottom: 40px;
}

.bonuses-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.bonuses-table th {
    background: var(--gradient-gold);
    color: var(--text-dark);
    padding: 20px;
    font-weight: bold;
    text-align: left;
}

.bonuses-table td {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    color: var(--text-white);
}

.bonuses-table tr:hover {
    background: rgba(255, 215, 0, 0.1);
}

.table-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.popular-games-section {
    padding: 80px 0;
}

/* REVIEWS SECTION */
.reviews-section {
    padding: 80px 0;
    background: rgba(139, 69, 19, 0.1);
}

.trust-images .trust-feature i {
    margin: 0;
}

.popular-games-section h2, .live-betting-section h2, .cricket-betting-section h2 {
    text-align: center;
    margin-bottom: 20px;
}

.markets-section h2, .bonuses-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.popular-games-section p, .live-betting-section p, .cricket-betting-section p, .markets-section p, .bonuses-section p {
    text-align: center;
    margin-bottom: 40px;
}

.reviews-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.review-card {
    background: rgba(0, 0, 0, 0.4);
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.review-stars {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 18px;
}

.review-card p {
    font-style: italic;
    margin-bottom: 15px;
    color: var(--text-light);
}

.review-author {
    color: var(--orange);
    font-weight: bold;
}

.reviews-info {
    max-width: 800px;
    margin: 0 auto 40px auto;
    text-align: center;
}

.reviews-info a {
    color: var(--orange);
    text-decoration: none;
}

.reviews-info a:hover {
    color: var(--gold);
    text-decoration: underline;
}

.reviews-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* FAQ SECTION */
.faq-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.faq-grid {
    display: grid;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--gold);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 215, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question i {
    color: var(--gold);
    font-size: 18px;
}

.faq-question span {
    font-weight: bold;
    color: var(--text-white);
}

.faq-answer {
    padding: 20px;
    color: var(--text-light);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer a {
    color: var(--orange);
    text-decoration: none;
}

.faq-answer a:hover {
    color: var(--gold);
    text-decoration: underline;
}

/* PAYMENT & SOCIAL SECTION */
.payment-social-section {
    padding: 60px 0;
    background: rgba(139, 69, 19, 0.1);
    text-align: center;
}

.payment-methods h3 {
    margin-bottom: 20px;
    color: var(--gold);
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.payment-icons i {
    font-size: 36px;
    color: var(--gold);
    transition: all 0.3s ease;
    cursor: pointer;
}

.payment-icons i:hover {
    color: var(--orange);
    transform: scale(1.1);
}

/* FOOTER */
.footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 60px 0 20px 0;
    border-top: 2px solid var(--gold);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: var(--gold);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--gold);
}

.footer-payment-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-payment-icons i {
    font-size: 24px;
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 10px;
    color: var(--text-light);
}

.responsible-gaming {
    color: var(--orange);
    font-weight: bold;
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* RESPONSIVE DESIGN */

/* Tablet Styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-list {
        gap: 20px;
    }
    
    .hero-content {
        gap: 40px;
    }
    
    h1 {
        font-size: 40px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    .pages-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .payment-social-section .container {
        gap: 30px;
    }
}

@media (max-width: 1590px) {
        /* Header Mobile */
        .nav {
            display: none;
        }
        
        .mobile-menu-toggle {
            display: block;
        }

        .btn {
            max-width: unset !important;
        }
}

/* Mobile Styles */
@media (max-width: 768px) {
    /* Typography */
    h1 {
        font-size: 32px;
        line-height: 1.3;
    }
    
    h2 {
        font-size: 24px;
    }
    
    h3 {
        font-size: 20px;
    }
    
    p {
        font-size: 14px;
    }
    
    
    /* Hero Mobile */
    .hero {
        padding-top: 2rem;
        min-height: auto;
        padding-bottom: 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-cta {
        justify-content: center;
        gap: 15px;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 12px 20px;
        font-size: 16px;
    }
    
    .hero-right {
        height: 300px;
    }
    
    .floating-icon {
        font-size: 24px;
    }
    
    /* Sections Mobile */
    .trust-section,
    .pages-section,
    .bonuses-table-section,
    .reviews-section,
    .faq-section {
        padding: 60px 0;
    }
    
    .pages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .page-card {
        padding: 25px;
    }
    
    .trust-buttons,
    .pages-cta,
    .table-cta,
    .reviews-cta {
        flex-direction: column;
        align-items: center;
    }
    
    section .btn {
        width: 100%;
    }
    
    /* Table Mobile */
    .bonuses-table {
        font-size: 14px;
    }
    
    .bonuses-table th,
    .bonuses-table td {
        padding: 15px 10px;
    }
    
    /* Payment Mobile */
    .payment-social-section {
        padding: 40px 0;
    }
    
    .payment-icons {
        gap: 15px;
    }
    
    .payment-icons i {
        font-size: 30px;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-payment-icons {
        justify-content: center;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .header-buttons {
        width: 100%;
        justify-content: center;
        order: 3;
        margin-top: 15px;
    }

    .header-buttons .btn {
        width: 100%;
    }

    .header-content {
        flex-wrap: wrap;
        gap: 0;
    }
    
    .mobile-menu {
        top: 158px;
    }

    h1 {
        font-size: 24px;
    }
    
    h2 {
        font-size: 20px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .pages-grid {
        gap: 15px;
    }
    
    .page-card {
        padding: 20px;
    }
    
    .bonuses-table th,
    .bonuses-table td {
        padding: 10px 8px;
        font-size: 12px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* ADDITIONAL PAGE STYLES */

/* Hero Image Styles */
.hero-image {
    position: relative;
    text-align: center;
    animation: fadeInUp 1.2s ease-out;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px var(--dark-shadow);
    transition: transform 0.3s ease;
}

.hero-img:hover {
    transform: scale(1.05);
}

/* Steps Section */
.login-steps-section,
.download-steps-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.step-card {
    background: rgba(0, 0, 0, 0.4);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.step-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--dark-shadow);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px auto;
}

.step-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px var(--dark-shadow);
    transition: transform 0.3s ease;
}

.step-img:hover {
    transform: scale(1.05);
}

.step-card h3 {
    color: var(--gold);
    margin-bottom: 15px;
}

.step-card p {
    color: var(--text-light);
}

.advantages-section {
    background: rgba(139, 69, 19, 0.1);
    padding: 40px;
    border-radius: 12px;
    margin: 40px 0;
}

.advantages-section h3 {
    color: var(--gold);
    margin-bottom: 20px;
}

.advantages-list {
    list-style: none;
    padding: 0;
}

.advantages-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.advantages-list i {
    color: var(--green);
    font-size: 18px;
}

.advantages-list a {
    color: var(--orange);
    text-decoration: none;
}

.advantages-list a:hover {
    color: var(--gold);
    text-decoration: underline;
}

.steps-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.compatibility-info {
    text-align: center;
    margin: 40px 0;
    padding: 20px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 12px;
}

.compatibility-info h3 {
    color: var(--gold);
    margin-bottom: 10px;
}

.compatibility-info p {
    color: var(--text-light);
}

/* Trust Features */
.trust-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.trust-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.trust-feature:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}

.trust-feature i {
    color: var(--gold);
    font-size: 24px;
    margin-top: 5px;
}

.trust-feature h4 {
    color: var(--text-white);
    margin: 0;
    font-size: 16px;
}

.trust-feature a {
    color: var(--orange);
    text-decoration: none;
}

.trust-feature a:hover {
    color: var(--gold);
    text-decoration: underline;
}

/* App Sections */
.mobile-app-section,
.app-features-section {
    padding: 80px 0;
    background: rgba(139, 69, 19, 0.1);
}


.app-features-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

.app-features {
    list-style: none;
    padding: 0;
}

.app-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.app-features i {
    color: var(--green);
    font-size: 18px;
}

.app-features a {
    color: var(--orange);
    text-decoration: none;
}

.app-features a:hover {
    color: var(--gold);
    text-decoration: underline;
}

.app-features-list {
    list-style: none;
    padding: 0;
}

.app-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.app-features-list i {
    color: var(--gold);
    font-size: 18px;
    margin-top: 3px;
}

.app-features-list strong {
    color: var(--orange);
}

.app-features-list a {
    color: var(--orange);
    text-decoration: none;
}

.app-features-list a:hover {
    color: var(--gold);
    text-decoration: underline;
}

.app-cta,
.app-features-cta {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.app-img,
.app-features-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px var(--dark-shadow);
    transition: transform 0.3s ease;
}

.app-img:hover,
.app-features-img:hover {
    transform: scale(1.05);
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.why-choose-section h2 {
    text-align: center;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background: rgba(0, 0, 0, 0.4);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--dark-shadow);
}

.feature-icon {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 20px;
}

.feature-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px var(--dark-shadow);
    transition: transform 0.3s ease;
}

.feature-img:hover {
    transform: scale(1.05);
}

.feature-card h3 {
    color: var(--gold);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-light);
}

.why-choose-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Comparison Section */
.comparison-section {
    padding: 80px 0;
    background: rgba(139, 69, 19, 0.1);
}

.comparison-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.text-success {
    color: var(--green);
}

/* Final CTA Section */
.final-cta-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.5);
    text-align: center;
}

.final-cta-content h2 {
    margin-bottom: 20px;
}

.final-cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Bottom Image Section */
.bottom-image-section {
    padding: 60px 0;
    background: rgba(139, 69, 19, 0.1);
    text-align: center;
}

.bottom-image {
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 40px;
}

.bottom-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px var(--dark-shadow);
    transition: transform 0.3s ease;
}

.bottom-img:hover {
    transform: scale(1.02);
}

.bonus-icon {
    font-size: 48px;
    color: var(--gold);
    text-align: center;
    padding: 40px;
}

.games-icon {
    font-size: 48px;
    color: var(--gold);
    text-align: center;
    padding: 40px;
}

.live-casino-showcase {
    margin: 30px 0;
    text-align: center;
}

.live-casino-showcase-img {
    width: 100%;
    max-width: 800px;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 8px 20px var(--dark-shadow);
    transition: transform 0.3s ease;
}

.live-casino-showcase-img:hover {
    transform: scale(1.05);
}

.live-casino-showcase h4 {
    color: var(--gold);
    margin-bottom: 10px;
    font-size: 18px;
}

.live-casino-showcase p {
    color: var(--text-light);
    font-size: 14px;
}

.app-features-icon {
    font-size: 48px;
    color: var(--gold);
    text-align: center;
    padding: 40px;
}

/* Cricket Betting Section */
.cricket-betting-section {
    padding: 80px 0;
    background: rgba(139, 69, 19, 0.1);
}

.cricket-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.cricket-feature {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.cricket-feature:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--dark-shadow);
}

.cricket-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px var(--dark-shadow);
    transition: transform 0.3s ease;
}

.cricket-img:hover {
    transform: scale(1.05);
}

.cricket-feature h3 {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 20px;
}

.cricket-feature p {
    color: var(--text-light);
    line-height: 1.6;
}

.cricket-icon {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 20px;
}

.cricket-betting-cta,
.live-betting-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Live Betting Section */
.live-betting-section {
    padding: 80px 0;
    background: rgba(139, 69, 19, 0.05);
}

.live-features {
    margin: 40px 0;
}

.live-features ul {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
}

.live-features li {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    color: var(--text-light);
}

.live-features li:last-child {
    border-bottom: none;
}

.live-features i {
    color: var(--green);
    margin-right: 15px;
    font-size: 18px;
}

/* Markets Table Section */
.markets-section {
    padding: 80px 0;
    background: rgba(139, 69, 19, 0.1);
}

.markets-table {
    margin: 40px 0;
    overflow-x: auto;
}

.markets-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px var(--dark-shadow);
}

.markets-table th,
.markets-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.markets-table th {
    background: var(--gradient-gold);
    color: var(--text-dark);
    font-weight: bold;
}

.markets-table td {
    color: var(--text-light);
}

.markets-table tr:last-child td {
    border-bottom: none;
}

.markets-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Comparison Table Section */
.comparison-section {
    padding: 80px 0;
    background: rgba(139, 69, 19, 0.05);
}

.comparison-table {
    margin: 40px 0;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px var(--dark-shadow);
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.comparison-table th {
    background: var(--gradient-gold);
    color: var(--text-dark);
    font-weight: bold;
}

.comparison-table td {
    color: var(--text-light);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Games Specific Styles */
.games-categories-section {
    padding: 80px 0;
    background: rgba(139, 69, 19, 0.1);
}

.games-categories-section h2 {
    text-align: center;
    margin-bottom: 20px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.game-category-card {
    background: rgba(0, 0, 0, 0.4);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.game-category-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--dark-shadow);
}

.game-icon {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 20px;
}

.game-category-card h3 {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 22px;
}

.game-category-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.game-features {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.game-features span {
    background: var(--gradient-gold);
    color: var(--text-dark);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.games-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Live Casino Experience */
.live-casino-experience {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.live-casino-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.live-casino-benefits {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px 0;
}

.live-casino-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-light);
}

.live-casino-benefits i {
    color: var(--green);
    font-size: 16px;
}

.live-casino-benefits a {
    color: var(--orange);
    text-decoration: none;
}

.live-casino-benefits a:hover {
    color: var(--gold);
    text-decoration: underline;
}

.live-casino-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.live-casino-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px var(--dark-shadow);
    transition: transform 0.3s ease;
}

.live-casino-img:hover {
    transform: scale(1.05);
}

/* Games Table Section */
.games-table-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.games-table-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

/* Slots Specific Styles */
.top-slots-section {
    padding: 80px 0;
    background: rgba(139, 69, 19, 0.1);
}

.top-slots-section h2 {
    text-align: center;
    margin-bottom: 20px;
}

.slots-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.slot-showcase-card {
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slot-showcase-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--dark-shadow);
}

.slot-img {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.slot-img:hover {
    transform: scale(1.05);
}

.slot-icon {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 20px;
}

.slot-showcase-card h3 {
    color: var(--gold);
    margin-bottom: 10px;
    font-size: 20px;
}

.slot-showcase-card p {
    color: var(--text-light);
    font-size: 14px;
}

.popular-slots-list {
    background: rgba(0, 0, 0, 0.3);
    padding: 40px;
    border-radius: 12px;
    margin: 40px 0;
}

.popular-slots-list ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.popular-slots-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    padding: 15px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.popular-slots-list li:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateX(5px);
}

.popular-slots-list i {
    color: var(--gold);
    font-size: 16px;
}

.popular-slots-list strong {
    color: var(--orange);
}

.top-slots-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile Slots Section */
.mobile-slots-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.mobile-slots-section h2 {
    text-align: center;
    margin-bottom: 20px;
}

.mobile-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.mobile-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.mobile-feature:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}

.mobile-feature i {
    color: var(--gold);
    font-size: 24px;
    margin-top: 5px;
}

.mobile-feature h4 {
    color: var(--text-white);
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
}

.mobile-slots-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* RTP Table Section */
.rtp-table-section {
    padding: 80px 0;
    background: rgba(139, 69, 19, 0.1);
}

.rtp-table-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

/* Aviator Specific Styles */
.what-is-aviator-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.what-is-aviator-section h2 {
    text-align: center;
    margin-bottom: 20px;
}

.aviator-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.aviator-feature-card {
    background: rgba(0, 0, 0, 0.4);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.aviator-feature-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--dark-shadow);
}

.aviator-feature-icon {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 20px;
}

.aviator-feature-card h3 {
    color: var(--gold);
    margin-bottom: 15px;
}

.aviator-feature-card p {
    color: var(--text-light);
}

.aviator-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* How to Play Section */
.how-to-play-section {
    padding: 80px 0;
    background: rgba(139, 69, 19, 0.1);
}

.how-to-play-section h2 {
    text-align: center;
    margin-bottom: 60px;
}

.how-to-play-section a:not(.btn) {
    color: var(--orange);
    text-decoration: none;
}

.how-to-play-section a:not(.btn):hover {
    color: var(--gold);
    text-decoration: underline;
}

/* Why Choose Aviator Section */
.why-choose-aviator-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.aviator-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.aviator-benefits {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px 0;
}

.aviator-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.aviator-benefits i {
    color: var(--green);
    font-size: 18px;
}

.aviator-benefits a {
    color: var(--orange);
    text-decoration: none;
}

.aviator-benefits a:hover {
    color: var(--gold);
    text-decoration: underline;
}

.aviator-text-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.aviator-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px var(--dark-shadow);
    transition: transform 0.3s ease;
}

.aviator-img:hover {
    transform: scale(1.05);
}

/* Aviator Features Table */
.aviator-features-table {
    padding: 80px 0;
    background: rgba(139, 69, 19, 0.1);
}

.aviator-features-table h2 {
    text-align: center;
    margin-bottom: 60px;
}

.aviator-mini-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.mini-table-card {
    background: rgba(0, 0, 0, 0.4);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.mini-table-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--dark-shadow);
}

.mini-table-icon {
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 20px;
}

.mini-table-img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px var(--dark-shadow);
    transition: transform 0.3s ease;
}

.mini-table-img:hover {
    transform: scale(1.05);
}

.mini-table-card h3 {
    color: var(--gold);
    margin-bottom: 10px;
    font-size: 18px;
}

.mini-table-card p {
    color: var(--text-light);
    font-size: 14px;
}

.mini-table-card a {
    color: var(--orange);
    text-decoration: none;
}

.mini-table-card a:hover {
    color: var(--gold);
    text-decoration: underline;
}

.aviator-guide {
    background: rgba(0, 0, 0, 0.3);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 60px;
    text-align: center;
}

.aviator-guide h3 {
    color: var(--gold);
    margin-bottom: 30px;
}

.quick-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.quick-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.quick-step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
}

.quick-step p {
    color: var(--text-light);
    margin: 0;
    text-align: center;
}

.aviator-features-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Bonuses Specific Styles */
.bonus-types-section {
    padding: 80px 0;
    background: rgba(139, 69, 19, 0.1);
}

.bonus-types-section h2 {
    text-align: center;
    margin-bottom: 60px;
}

.bonus-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.bonus-type-card {
    background: rgba(0, 0, 0, 0.4);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.bonus-type-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--dark-shadow);
}

.bonus-type-icon {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 20px;
}

.bonus-type-card h3 {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 20px;
}

.bonus-type-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.bonus-type-card a {
    color: var(--orange);
    text-decoration: none;
}

.bonus-type-card a:hover {
    color: var(--gold);
    text-decoration: underline;
}

.bonus-highlight {
    background: var(--gradient-gold);
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    display: inline-block;
    margin-top: 10px;
}

.bonus-types-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* How to Claim Section */
.how-to-claim-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.how-to-claim-section h2 {
    text-align: center;
    margin-bottom: 60px;
}

.how-to-claim-section a:not(.btn) {
    color: var(--orange);
    text-decoration: none;
}

.how-to-claim-section a:not(.btn):hover {
    color: var(--gold);
    text-decoration: underline;
}

/* Bonus Tables Section */
.bonus-tables-section {
    padding: 80px 0;
    background: rgba(139, 69, 19, 0.1);
}

.bonus-tables-section h2 {
    text-align: center;
    margin-bottom: 60px;
}

.bonus-tables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.bonus-table-container {
    background: rgba(0, 0, 0, 0.3);
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.bonus-table-container h3 {
    color: var(--gold);
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
}

.bonus-table-container .bonuses-table {
    margin-bottom: 0;
}

.bonus-tables-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Bottom Images Section */
.bottom-images-section {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.3);
}

.bottom-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.bottom-images-grid .bottom-image {
    max-width: 100%;
    margin: 0;
    margin-bottom: 40px;
}

.bottom-image img {
    width: 100%;
}

.bottom-images-grid .bottom-img {
    width: 100%;
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    
    .live-casino-content,
    .aviator-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .trust-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .features-grid,
    .games-grid,
    .aviator-features-grid,
    .aviator-mini-table,
    .bonus-types-grid,
    .bonus-tables-grid,
    .bottom-images-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card,
    .game-category-card,
    .aviator-feature-card,
    .mini-table-card,
    .bonus-type-card {
        padding: 25px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .step-card {
        padding: 25px;
    }
    
    .app-cta,
    .app-features-cta,
    .why-choose-cta,
    .steps-cta,
    .final-cta-buttons,
    .live-casino-cta,
    .games-cta,
    .top-slots-cta,
    .mobile-slots-cta,
    .aviator-cta,
    .aviator-text-cta,
    .aviator-features-cta,
    .bonus-types-cta,
    .bonus-tables-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .slots-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 40px 0;
    }
    
    .slot-showcase-card {
        padding: 25px;
    }
    
    .slot-img {
        height: 150px;
    }
    
    .popular-slots-list {
        padding: 30px 20px;
    }
    
    .popular-slots-list ul {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .mobile-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .mobile-feature {
        padding: 20px;
    }
    
    section .btn {
        width: 100%;
    }
    
    .advantages-section {
        padding: 30px 20px;
    }
    
    .final-cta-content p {
        font-size: 16px;
    }
    
    .page-img {
        height: 150px;
    }
    
    .feature-img,
    .step-img,
    .mini-table-img,
    .cricket-img {
        height: 150px;
    }
    
    .cricket-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cricket-feature {
        padding: 20px;
    }
    
    .cricket-betting-cta,
    .live-betting-cta,
    .markets-cta,
    .comparison-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .markets-table,
    .comparison-table {
        overflow-x: auto;
    }
    
    .markets-table th,
    .markets-table td,
    .comparison-table th,
    .comparison-table td {
        padding: 10px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .feature-icon {
        font-size: 36px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .feature-card,
    .step-card {
        padding: 20px;
    }
    
    .trust-feature {
        padding: 15px;
    }
    
    .trust-feature i {
        font-size: 20px;
    }
    
    .advantages-section {
        padding: 25px 15px;
    }
}

