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

body {
    font-family: 'Poppins', sans-serif;
    background: #2a2d3a;
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Desktop Sidebar */
.desktop-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background: #1e1f2b;
    border-right: none;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    padding: 0;
    box-shadow: none;
    overflow-y: auto;
    overflow-x: hidden;
}

.sidebar-logo {
    padding: 20px 20px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
    flex-shrink: 0;
}

.sidebar-logo img {
    max-width: 160px;
    height: auto;
}

.sidebar-nav {
    flex: 1;
    padding: 0 10px;
    min-height: 0;
}

.nav-categories {
    list-style: none;
}

.nav-item {
    margin-bottom: 4px;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: #8b8fa3;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #ff9500, #ffb347);
    transition: width 0.3s ease;
    z-index: -1;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
    transform: none;
}

.nav-icon {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.nav-link:hover .nav-icon,
.nav-link.active .nav-icon {
    filter: brightness(0) invert(0);
}

.nav-text {
    font-size: 14px;
    font-weight: 500;
}.sidebar-auth {
    padding: 15px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 15px;
    flex-shrink: 0;
}

/* Sidebar Promotional Games */
.sidebar-promo-games {
    padding: 15px 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 15px;
    flex-shrink: 0;
}

.sidebar-promo-game {
    display: block;
    width: 100%;
    height: 40px;
    margin-bottom: 6px;
    border: none;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    position: relative;
}

.sidebar-promo-game:last-child {
    margin-bottom: 0;
}

.sidebar-promo-game:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(255, 149, 0, 0.3);
}

.sidebar-promo-image {
    width: 100%;
    height: 40px;
    object-fit: cover;
    object-position: left center;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.sidebar-promo-game:hover .sidebar-promo-image {
    transform: scale(1.02);
    filter: brightness(1.1);
}.btn-register,
.btn-login {
    width: 100%;
    padding: 10px 15px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 8px;
}

.btn-register {
    background: linear-gradient(135deg, #ff9500, #ffb347);
    color: #ffffff;
}

.btn-register:hover {
    background: linear-gradient(135deg, #ffb347, #ffc966);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 149, 0, 0.4);
}

.btn-login {
    background: linear-gradient(135deg, #ff9500, #ffb347);
    color: #ffffff;
    border: none;
}

.btn-login:hover {
    background: linear-gradient(135deg, #ffb347, #ffc966);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 149, 0, 0.4);
}

/* Mobile Header */
.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: linear-gradient(90deg, #2c2c54, #1a1a2e);
    border-bottom: 2px solid #ff9500;
    z-index: 1001;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    position: relative;
}

.burger-menu {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: absolute;
    left: 20px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: #ff9500;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.mobile-logo img {
    height: 40px;
    width: auto;
}

.mobile-auth {
    display: none;
}

/* Mobile Overlay Menu */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1002;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: absolute;
    left: 0;
    top: 0;
    width: 280px;
    height: 100%;
    background: linear-gradient(180deg, #2c2c54 0%, #1a1a2e 100%);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-overlay.active .mobile-menu {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.mobile-menu-logo {
    height: 35px;
    width: auto;
}

.close-menu {
    background: none;
    border: none;
    color: #ff9500;
    font-size: 30px;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
}

.mobile-nav {
    padding: 20px 0;
}

.mobile-nav-list {
    list-style: none;
    padding: 0 10px;
}

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

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: rgba(255, 149, 0, 0.1);
    color: #ff9500;
}

.mobile-nav-icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    filter: brightness(0) invert(1);
}

.mobile-auth-buttons {
    padding: 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

/* Main Content */
.main-content {
    margin-left: 280px;
    min-height: 100vh;
    padding: 40px;
    padding-top: 40px;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 60px;
    color: white;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ff9500, #ffb347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 24px;
    color: white;
    margin-bottom: 30px;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-content .bonus-code {
    font-size: 18px;
    color: #ffb347;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.hero-play-btn {
    background: linear-gradient(135deg, #ff9500, #ffb347);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-play-btn:hover {
    background: linear-gradient(135deg, #ffb347, #ffc966);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 149, 0, 0.4);
}

.hero-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    z-index: 3;
    pointer-events: none;
}

.hero-nav-btn {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 149, 0, 0.8);
    color: #ff9500;
    font-size: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: auto;
    font-weight: bold;
}

.hero-nav-btn:hover {
    background: rgba(255, 149, 0, 0.8);
    transform: scale(1.1);
}

.hero-indicators {
    position: absolute;
    bottom: 20px;
    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 {
    background: #ff9500;
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .desktop-sidebar {
        width: 240px;
    }
    
    .main-content {
        margin-left: 240px;
        padding: 30px;
    }
    
    .promo-games-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .hero-slider {
        height: 350px;
    }
    
    .hero-content {
        padding: 0 40px;
    }
    
    .hero-content h1 {
        font-size: 42px;
    }
    
    .hero-content p {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .desktop-sidebar {
        display: none;
    }
    
    .mobile-header {
        display: flex;
    }
    
    .mobile-overlay {
        display: block;
    }
    
    .main-content {
        margin-left: 0;
        margin-top: 70px;
        padding: 0 10px;
        padding-top: 0;
    }
    
    .promo-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .promo-games-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero-slider {
        height: 280px;
        border-radius: 15px;
        margin-bottom: 20px;
        margin-top: 0;
    }
    
    .hero-content {
        padding: 0 30px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .hero-play-btn {
        padding: 12px 24px;
        font-size: 16px;
    }
    
    .hero-navigation {
        display: none;
    }

    /* Mobile Category Buttons */
    .category-btn {
        padding: 6px 12px;
        min-width: 70px;
    }

    .category-btn i {
        font-size: 12px;
    }

    .category-btn span {
        font-size: 10px;
    }

    /* Mobile Slots Grid - 3 per line */
    .slots-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .mobile-header {
        padding: 0 15px;
    }
    
    .main-content {
        padding: 15px;
    }
    
    .promo-title {
        font-size: 24px;
    }
    
    .hero-slider {
        height: 250px;
        border-radius: 12px;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-content h1 {
        font-size: 24px;
    }
    
    .hero-content p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .hero-play-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .hero-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .hero-navigation {
        padding: 0 10px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }

    /* Ensure 3 columns on smaller mobile devices */
    .slots-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 10px;
    }
}

.mobile-menu {
    width: 100%;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.promo-games-container {
    animation: fadeInUp 0.8s ease-out;
}

.hero-placeholder {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a2e;
}

::-webkit-scrollbar-thumb {
    background: #ff9500;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ffb347;
}

/* Category Buttons Section */
.category-section {
    margin: 30px 0 20px 0;
}

.category-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: nowrap;
}

.category-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    padding: 8px 15px;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border: 2px solid #333;
    border-radius: 20px;
    color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    min-width: 80px;
    text-decoration: none;
}

.category-btn i {
    font-size: 14px;
    transition: all 0.3s ease;
}

.category-btn span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-btn:hover,
.category-btn.active {
    background: linear-gradient(135deg, #ff9500, #ffb347);
    border-color: #ff9500;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 149, 0, 0.3);
}

/* Slots Grid Section */
.slots-section {
    margin: 40px 0;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 0;
}

.slot-item {
    position: relative;
    display: block;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #1a1a1a;
    text-decoration: none;
}

.slot-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 149, 0, 0.3);
}

.slot-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
}

/* Promo Content Sections */
.promo-content-section {
    margin: 60px 0;
    padding: 0 20px;
}

.promo-container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Layout Right - Image on left, text on right */
.layout-right .promo-container {
    flex-direction: row;
}

/* Layout Left - Text on left, image on right */
.layout-left .promo-container {
    flex-direction: row-reverse;
}

.promo-image {
    position: relative;
    flex: 0 0 520px;
    height: 240px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(255, 149, 0, 0.3));
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    gap: 15px;
}

.bonus-text {
    flex: 1;
    margin-right: 10px;
}

.bonus-text h3 {
    color: #ff9500;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.bonus-text p {
    color: white;
    font-size: 14px;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.bonus-code {
    color: #ffb347;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.promo-cta-btn {
    background: linear-gradient(135deg, #ff9500, #ffb347);
    color: white;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    white-space: nowrap;
}

.promo-cta-btn:hover {
    background: linear-gradient(135deg, #e6850e, #ff9500);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 149, 0, 0.4);
}

.seo-text {
    flex: 1;
    padding: 0 20px;
}

.seo-text h2 {
    color: #ff9500;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.seo-text p {
    color: #ccc;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Mobile Responsive for Promo Sections */
@media (max-width: 768px) {
    .promo-content-section {
        margin: 40px 0;
        padding: 0 15px;
    }

    .promo-container,
    .layout-left .promo-container,
    .layout-right .promo-container {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    /* Mobile: SEO text first, then promo image */
    .promo-container {
        display: flex;
        flex-direction: column;
    }

    .promo-container .seo-text {
        order: 1;
    }

    .promo-container .promo-image {
        order: 2;
    }

    .promo-image {
        flex: none;
        width: 100%;
        max-width: 450px;
        height: 260px;
        margin: 0 auto;
    }

    .promo-overlay {
        padding: 20px 25px;
        gap: 20px;
    }

    .bonus-text h3 {
        font-size: 18px;
    }

    .bonus-text p {
        font-size: 16px;
    }

    .bonus-code {
        font-size: 14px;
    }

    .promo-cta-btn {
        padding: 12px 20px;
        font-size: 16px;
    }

    .seo-text {
        padding: 0;
    }

    .seo-text h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .seo-text p {
        font-size: 14px;
        margin-bottom: 12px;
    }
}

/* Section Divider */
.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff9500, transparent);
    margin: 60px auto;
    max-width: 200px;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .section-divider {
        margin: 40px auto;
        max-width: 150px;
    }
}

/* Payments Section */
.payments-section {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.3);
    text-align: center;
}

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

.payments-section h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.payment-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.payment-link {
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.8;
}

.payment-link:hover {
    transform: scale(1.1);
    opacity: 1;
}

.payment-link img {
    height: 50px;
    width: auto;
    max-width: 120px;
    filter: brightness(1.1);
}

/* Mobile Responsive for Payments */
@media (max-width: 768px) {
    .payments-section {
        padding: 40px 0;
    }
    
    .payments-section h2 {
        font-size: 22px;
        margin-bottom: 30px;
    }
    
    .payment-methods {
        gap: 20px;
    }
    
    .payment-link img {
         height: 40px;
         max-width: 100px;
     }
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.2);
}

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

.faq-section h2 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.faq-item {
    background: rgba(0, 0, 0, 0.4);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 149, 0, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 149, 0, 0.5);
}

.faq-item h3 {
    color: #ff9500;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.faq-item p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
    padding: 50px 0 30px;
    border-top: 2px solid #ff9500;
    margin-left: 280px;
}

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

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-nav {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav a {
    color: #ccc;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #ff9500;
}

.footer-info {
    text-align: center;
}

.age-restriction {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.age-restriction img {
    height: 30px;
    width: auto;
}

.age-restriction span {
    color: #ff9500;
    font-size: 14px;
    font-weight: 600;
}

.footer-text {
    color: #ccc;
    font-size: 14px;
    margin: 10px 0;
}

.footer-disclaimer {
    color: #999;
    font-size: 12px;
    margin: 0;
    font-style: italic;
}

/* Mobile Responsive for FAQ and Footer */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-section h2 {
        font-size: 26px;
        margin-bottom: 40px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .faq-item h3 {
        font-size: 16px;
    }
    
    .footer {
        padding: 40px 0 20px;
        margin-left: 0;
    }
    
    .footer-nav {
        gap: 20px;
    }
    
    .footer-nav a {
        font-size: 14px;
    }
    
    .footer-logo img {
        height: 50px;
    }
    
    .age-restriction img {
        height: 25px;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff9500, #ff7700);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(255, 149, 0, 0.3);
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #ff7700, #ff5500);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 149, 0, 0.4);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* SEO H1 - Hidden but accessible */
.seo-h1 {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}