* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* SEO H1 - Invisible to users, visible to search engines */
.seo-h1 {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    font-size: 0;
    line-height: 0;
    color: transparent;
}

html {
    background-color: #1a1a1a;
}

/* Tournaments Section */
.tournaments-section {
    padding: 60px 0;
    background-color: #1a1a1a;
}

.tournaments-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #FFFFFF;
    margin-bottom: 40px;
    font-weight: bold;
}

.tournaments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 100%;
}

.tournament-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.tournament-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066FF, #00CCFF, #0066FF);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tournament-card:hover {
    transform: translateY(-10px);
    border-color: #0066FF;
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.2);
}

.tournament-card:hover::before {
    opacity: 1;
}

.tournament-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0066FF, #00CCFF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    transition: all 0.3s ease;
}

.tournament-icon i {
    font-size: 2.5rem;
    color: #FFFFFF;
}

.tournament-card:hover .tournament-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.4);
}

.tournament-card h3 {
    font-size: 1.8rem;
    color: #FFFFFF;
    margin-bottom: 15px;
    font-weight: 700;
}

.tournament-description {
    color: #CCCCCC;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.tournament-details {
    margin-bottom: 25px;
}

.prize-pool {
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid #0066FF;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
}

.prize-label {
    color: #CCCCCC;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 5px;
}

.prize-amount {
    color: #00CCFF;
    font-size: 1.8rem;
    font-weight: 800;
    display: block;
}

.tournament-prizes {
    text-align: left;
}

.prize-item {
    color: #FFFFFF;
    font-size: 0.9rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 20px;
}

.prize-item:last-child {
    border-bottom: none;
}

.prize-item::before {
    content: '•';
    color: #0066FF;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.tournament-btn {
    background: linear-gradient(135deg, #0066FF, #00CCFF);
    color: #FFFFFF;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    width: 100%;
}

.tournament-btn:hover {
    background: linear-gradient(135deg, #0052CC, #0099CC);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
    text-decoration: none;
}

.tournament-btn:visited {
    color: #FFFFFF;
    text-decoration: none;
}

/* Mobile Responsive for Tournaments */
@media (max-width: 768px) {
    .tournaments-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tournament-card {
        padding: 25px 20px;
    }
    
    .tournament-icon {
        width: 70px;
        height: 70px;
    }
    
    .tournament-icon i {
        font-size: 2rem;
    }
    
    .tournament-card h3 {
        font-size: 1.5rem;
    }
    
    .prize-amount {
        font-size: 1.5rem;
    }
    
    .tournament-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .tournaments-section h2 {
        font-size: 2rem;
    }
    
    .tournament-card {
        padding: 20px 15px;
    }
    
    .tournament-description {
        font-size: 0.9rem;
    }
}

/* Payment Section Styles */
.payment-section {
    background: #0a0a0a;
    border-top: 1px solid #333;
}

.payment-logo {
    height: 60px;
    width: auto;
    filter: brightness(0.8);
    transition: all 0.3s ease;
}

.payment-logo:hover {
    filter: brightness(1);
    transform: scale(1.05);
}

/* Responsible Gaming Section */
.responsible-gaming {
    background: #1a1a1a;
    border-top: 1px solid #333;
}

.responsibility-card {
    background: #2a2a2a;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
}

.responsibility-card:hover {
    border-color: #0066FF;
    transform: translateY(-5px);
}

.responsibility-card i {
    font-size: 3rem;
    color: #0066FF;
    display: block;
}

.responsibility-card h4 {
    font-weight: 600;
    margin: 15px 0 10px 0;
    color: #FFFFFF;
}

.responsibility-card p {
    color: #FFFFFF;
    margin: 0;
}

.age-restriction {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #2a2a2a;
    border-radius: 10px;
    border: 1px solid #0066FF;
}

.age-icon {
    height: 40px;
    width: auto;
}

/* Mobile Responsive for New Sections */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .benefit-card {
        padding: 20px 15px;
    }
    
    .payment-logo {
        height: 45px;
    }
    
    .responsibility-card {
        padding: 20px 15px;
    }
    
    .features-list .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 20px 10px;
    }
    
    .features-list .feature-item i {
        margin-bottom: 10px;
    }
}

/* New Content Sections Styling */
.casino-intro {
    background: #1a1a1a;
    border-top: 1px solid #333;
}

.feature-highlight {
    text-align: center;
    padding: 20px;
}

.feature-highlight i {
    font-size: 2.5rem;
    color: #0066FF;
    display: block;
    margin-bottom: 15px;
}

.feature-highlight h4 {
    color: #FFFFFF;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-highlight p {
    color: #FFFFFF;
    margin: 0;
}

.licensing-section {
    background: #0a0a0a;
    border-top: 1px solid #333;
}

.regulation-card {
    background: #2a2a2a;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
}

.regulation-card i {
    font-size: 2.5rem;
    color: #0066FF;
    display: block;
    margin-bottom: 15px;
}

.regulation-card h4 {
    color: #FFFFFF;
    margin-bottom: 15px;
    font-weight: 600;
}

.regulation-card p {
    color: #FFFFFF;
    margin: 0;
}

.responsible-gaming-notice {
    background: #2a2a2a;
    border-radius: 15px;
    border: 1px solid #0066FF;
}

.responsible-gaming-notice h5 {
    color: #FFFFFF;
    font-weight: 600;
}

.responsible-gaming-notice p {
    color: #FFFFFF;
}

.age-verification-badge {
    height: 50px;
    width: auto;
}

.games-features {
    background: #1a1a1a;
    border-top: 1px solid #333;
}

.game-category-card {
    background: #2a2a2a;
    padding: 30px 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
}

.game-category-card i {
    font-size: 2.5rem;
    color: #0066FF;
    display: block;
    margin-bottom: 15px;
}

.game-category-card h3 {
    color: #FFFFFF;
    margin-bottom: 15px;
    font-weight: 600;
}

.game-category-card p {
    color: #FFFFFF;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    color: #FFFFFF;
    padding: 5px 0;
    display: flex;
    align-items: center;
}

.special-feature-card {
    background: #2a2a2a;
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.special-feature-card:hover {
    border-color: #0066FF;
    transform: translateY(-5px);
}

.special-feature-card i {
    font-size: 2.5rem;
    color: #0066FF;
    display: block;
    margin-bottom: 15px;
}

.special-feature-card h4 {
    color: #FFFFFF;
    margin-bottom: 15px;
    font-weight: 600;
}

.special-feature-card p {
    color: #FFFFFF;
    margin: 0;
}

.user-experience {
    background: #0a0a0a;
    border-top: 1px solid #333;
}

.ux-feature {
    text-align: center;
    padding: 20px;
}

.ux-feature i {
    font-size: 2.5rem;
    color: #0066FF;
    display: block;
    margin-bottom: 15px;
}

.ux-feature h4 {
    color: #FFFFFF;
    margin-bottom: 15px;
    font-weight: 600;
}

.ux-feature p {
    color: #FFFFFF;
    margin: 0;
}

/* Additional Mobile Responsive for New Content */
@media (max-width: 768px) {
    .feature-highlight,
    .ux-feature {
        padding: 15px 10px;
    }
    
    .game-category-card,
    .special-feature-card,
    .regulation-card {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    .responsible-gaming-notice {
        padding: 20px 15px;
    }
    
    .age-verification-badge {
        height: 40px;
        margin-top: 15px;
    }
    
    .feature-list li {
        font-size: 0.9rem;
    }
}

body {
    font-family: 'Poppins', sans-serif;
    background: #1a1a1a;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #f5f5f5;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 60vh;
    max-height: 500px;
    min-height: 340px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1a1a1a;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 5%;
}

.promo-text {
    max-width: 500px;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-left: 80px;
}

.promo-text h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #FFFFFF;
}

.promo-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.4;
    color: #FFFFFF;
    opacity: 0.95;
}

/* Enhanced CTA Button Styles */
.cta-button {
    background: #0066FF;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
}

.cta-button:hover {
    background: #0052CC;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
    text-decoration: none;
}

.cta-button:visited {
    color: #FFFFFF;
    text-decoration: none;
}

.cta-button:active {
    transform: translateY(0);
    color: #FFFFFF;
    text-decoration: none;
}

/* Outline Button Styles */
.btn-outline-primary {
    border: 2px solid #0066FF;
    color: #0066FF;
    background: transparent;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: #0066FF;
    color: white;
    border-color: #0066FF;
    transform: translateY(-1px);
}

.btn-outline-light {
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
    background: transparent;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: #FFFFFF;
    color: #0a0a0a;
    border-color: #FFFFFF;
    transform: translateY(-1px);
}

/* Improved Spacing and Layout */
.py-5 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

/* Enhanced Card Hover Effects */
.game-category-card:hover,
.special-feature-card:hover,
.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.2);
}

/* Better Mobile Spacing */
@media (max-width: 768px) {
    .py-5 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
        margin-bottom: 10px;
        display: inline-block;
        text-align: left;
        width: auto;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
    }
    
    .btn-outline-primary,
    .btn-outline-light {
        padding: 10px 20px;
        font-size: 0.9rem;
        margin-bottom: 10px;
        display: block;
        text-align: center;
        width: 100%;
        max-width: 250px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .game-category-card,
    .special-feature-card {
        margin-bottom: 2rem;
    }
    
    .features-list .feature-item {
        margin-bottom: 15px;
    }
}

/* Navigation arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 102, 255, 0.8);
    border: none;
    color: #FFFFFF;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav:hover {
    background: rgba(0, 102, 255, 1);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

/* Slide indicators */
.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active,
.indicator:hover {
    background: #0066FF;
    transform: scale(1.2);
}

/* Enhanced Mobile Responsive Design */
@media (max-width: 768px) {
    .hero-slider {
        height: 50vh;
        max-height: 400px;
        min-height: 280px;
    }
    
    .slide {
        background-size: cover;
        background-position: center;
    }
    
    .promo-text {
        max-width: 90%;
        margin-left: 0;
    }
    
    .promo-text h1 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .promo-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .slider-nav {
        display: none;
    }
    
    /* Content sections mobile optimization */
    .section-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .py-5 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }
    
    .mb-5 {
        margin-bottom: 2rem !important;
    }
    
    /* Game category cards mobile */
    .game-category-card,
    .special-feature-card,
    .benefit-card {
        margin-bottom: 2rem;
        padding: 1.5rem;
    }
    
    .game-category-card h4,
    .special-feature-card h4,
    .benefit-card h4 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    /* Features list mobile */
    .features-list .feature-item {
        margin-bottom: 15px;
        padding: 10px 0;
        border-bottom: 1px solid #333;
    }
    
    .features-list .feature-item:last-child {
        border-bottom: none;
    }
    
    /* CTA buttons mobile */
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
        margin-bottom: 15px;
        display: block;
        text-align: center;
        width: 100%;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .btn-outline-primary,
    .btn-outline-light {
        padding: 10px 20px;
        font-size: 0.9rem;
        margin-bottom: 15px;
        display: block;
        text-align: center;
        width: 100%;
        max-width: 250px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Text alignment for mobile */
    .text-center-mobile {
        text-align: center !important;
    }
    
    /* Slots responsive - 3 columns, 5 rows (15 items total) */
    .slots-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        grid-template-rows: repeat(5, 1fr) !important;
        gap: 15px !important;
        max-height: none !important;
        display: grid !important;
    }
    
    /* Hide extra slots on mobile to show only 15 items (3x5 grid) */
    .slot-item:nth-child(n+16) {
        display: none !important;
    }
    
    /* Remove hover overlay on mobile */
    .slot-overlay {
        display: none;
    }
    
    /* Add image zoom effect on mobile */
    .slot-item:hover img {
        transform: scale(1.1);
    }
    
    .slots-section h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Footer mobile */
    footer {
        padding: 2rem 0 !important;
    }
    
    .age-restriction {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .age-icon {
        height: 30px !important;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 40vh;
        max-height: 300px;
        min-height: 250px;
    }
    
    .slide-content {
        padding: 0 3%;
    }
    
    .promo-text h1 {
        font-size: 1.5rem;
    }
    
    .promo-text p {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
        display: inline-block;
        text-align: left;
        width: auto;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
    }
    
    .slider-indicators {
        bottom: 20px;
    }
}

/* Ensure arrows don't overlay text on larger screens */
@media (min-width: 1200px) {
    .slider-nav.prev {
        left: 40px;
    }
    
    .slider-nav.next {
        right: 40px;
    }
    
    .promo-text {
        max-width: 600px;
    }
    
    .promo-text h1 {
        font-size: 3.5rem;
    }
    
    .promo-text p {
        font-size: 1.4rem;
    }
}

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

/* Slots Section */
.slots-section {
    padding: 60px 0;
    background-color: #1a1a1a;
}

.slots-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #FFFFFF;
    margin-bottom: 40px;
    font-weight: bold;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 100%;
}

/* Hide 6th item in live casino section on desktop to show only 5 items */
#livecasino .slot-item:nth-child(6) {
    display: none;
}

/* Mobile-first approach - override for mobile */
@media (max-width: 768px) {
    .slots-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        grid-template-rows: repeat(5, 1fr) !important;
        gap: 15px !important;
    }
    
    /* Hide extra slots on mobile to show only 15 items (3x5 grid) */
    .slot-item:nth-child(n+16) {
        display: none !important;
    }
    
    /* Live casino specific mobile layout - 2 rows for 6 items */
    #livecasino .slots-grid {
        grid-template-rows: repeat(2, 1fr) !important;
        grid-template-columns: repeat(3, 1fr) !important;
    }
    
    /* Show 6th item on mobile for live casino */
    #livecasino .slot-item:nth-child(6) {
        display: block !important;
    }
}

/* MonixBet Section */
.monixbet-section {
    padding: 80px 0;
    background-color: #1a1a1a;
}

.monixbet-section h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #FFFFFF;
    margin-bottom: 50px;
    font-weight: bold;
    background: linear-gradient(135deg, #0066FF, #00CCFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.monixbet-content {
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.8;
}

.monixbet-content h3 {
    color: #0066FF;
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
    border-left: 4px solid #0066FF;
    padding-left: 20px;
}

.monixbet-content h3:first-child {
    margin-top: 0;
}

.monixbet-content p {
    color: #E0E0E0;
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-align: justify;
}

.monixbet-cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-top: 50px;
    border: 2px solid rgba(0, 102, 255, 0.3);
}

.monixbet-cta h3 {
    border: none;
    padding-left: 0;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.monixbet-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #FFFFFF;
}

/* Mobile responsive for MonixBet section */
@media (max-width: 768px) {
    .monixbet-section {
        padding: 60px 0;
    }
    
    .monixbet-section h2 {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }
    
    .monixbet-content h3 {
        font-size: 1.5rem;
        margin-top: 30px;
        margin-bottom: 15px;
        padding-left: 15px;
    }
    
    .monixbet-content p {
        font-size: 1rem;
        margin-bottom: 20px;
        text-align: left;
    }
    
    .monixbet-cta {
        padding: 30px 20px;
        margin-top: 40px;
    }
    
    .monixbet-cta p {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
}
.slot-item {
    position: relative;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #1a1a1a;
    aspect-ratio: 1;
    text-decoration: none;
    color: inherit;
}

.slot-item:hover {
    text-decoration: none;
    color: inherit;
}

.slot-item:visited {
    text-decoration: none;
    color: inherit;
}

.slot-item:active {
    text-decoration: none;
    color: inherit;
}

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

.slot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 102, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.play-btn {
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 24px;
    border: 2px solid #FFFFFF;
    border-radius: 25px;
    transition: all 0.3s ease;
}

/* Desktop hover effects - same as mobile (image zoom only) */
@media (min-width: 769px) {
    .slot-item:hover img {
        transform: scale(1.1);
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    color: #ffffff;
    padding: 60px 0 0;
    margin-top: 0;
    border-top: 3px solid #0066ff;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-img {
    width: 112px;
    height: 13px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.footer-logo h3 {
    color: #0066ff;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 0 10px 0;
    text-shadow: 0 2px 4px rgba(0, 102, 255, 0.3);
}

.footer-logo p {
    color: #cccccc;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
}

.footer-nav h4 {
    color: #0066ff;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 0 20px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #0066ff;
    display: inline-block;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.footer-nav-list li {
    margin-bottom: 0;
}

.footer-nav-list a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-nav-list a:hover {
    color: #0066ff;
    transform: translateX(5px);
}

.footer-nav-list a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: #0066ff;
    transition: width 0.3s ease;
}

.footer-nav-list a:hover::before {
    width: 10px;
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding: 25px 0;
    background: rgba(0, 0, 0, 0.3);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #999999;
    font-size: 0.9rem;
    margin: 0;
}

.footer-age-restriction {
    display: flex;
    align-items: center;
    gap: 10px;
}

.age-icon {
    width: 30px;
    height: 30px;
    filter: brightness(0.8);
}

.footer-age-restriction span {
    color: #ff6b6b;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Mobile Footer Styles */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 0;
        margin-top: 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-logo {
        align-items: center;
        padding-bottom: 20px;
        border-bottom: 1px solid #333333;
    }

    .footer-logo-img {
        width: 112px;
        height: 13px;
    }

    .footer-logo h3 {
        font-size: 1.6rem;
    }

    .footer-nav h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .footer-nav-list a::before {
        display: none;
    }

    .footer-nav-list a:hover {
        transform: none;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-age-restriction {
        justify-content: center;
    }
}

/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

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

.header-logo .logo-img {
    height: 33px;
    width: auto;
}

.desktop-nav .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.desktop-nav .nav-list a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.desktop-nav .nav-list a:hover {
    color: #0066FF;
}

.desktop-auth {
    display: flex;
    gap: 15px;
}

.auth-btn {
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.login-btn {
    color: white;
    border: 2px solid white;
    background: transparent;
}

.login-btn:hover {
    background: white;
    color: #000;
}

.register-btn {
    background: #0066FF;
    color: white;
    border: 2px solid #0066FF;
}

.register-btn:hover {
    background: #0052CC;
    border-color: #0052CC;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.burger-line {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    z-index: 999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: flex;
    opacity: 1;
}

.mobile-menu-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    position: relative;
}

.mobile-menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-line {
    position: absolute;
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
}

.close-line:first-child {
    transform: rotate(45deg);
}

.close-line:last-child {
    transform: rotate(-45deg);
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 40px;
}

.mobile-nav-list li {
    margin-bottom: 30px;
}

.mobile-nav-list a {
    color: white;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.mobile-nav-list a:hover {
    color: #0066FF;
}

.mobile-auth {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.mobile-auth .auth-btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    min-width: 200px;
    text-align: center;
}

/* Mobile Header Styles */
@media (max-width: 768px) {
    .desktop-nav,
    .desktop-auth {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-logo .logo-img {
        height: 17px;
    }
    
    .main-header {
        padding: 12px 0;
    }
}

/* Add top margin to hero section to account for fixed header */
.hero-slider {
    margin-top: 70px;
}