/* === Our Other Casinos Section === */
.casinos-section {
    padding: 5rem 0;
    background-color: #0f0f0f;
    position: relative;
    overflow: hidden;
}

.casinos-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.casinos-section h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.casinos-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold);
    border-radius: 3px;
}

.casinos-section p {
    color: var(--off-white);
    font-size: 1.1rem;
    opacity: 0.9;
}

.casinos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 0 1rem;
}

.casino-card {
    background: #1a1a1a;
    border-radius: 10px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--gold);
}

.casino-logo {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.casino-card h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.casino-link {
    display: inline-flex;
    align-items: center;
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    margin-top: auto;
    transition: color 0.3s ease;
}

.casino-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.casino-link:hover {
    color: var(--gold-hover);
}

.casino-link:hover i {
    transform: translateX(4px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .casinos-section {
        padding: 3rem 0;
    }
    
    .casinos-section h2 {
        font-size: 2rem;
    }
    
    .casinos-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .casino-card {
        padding: 1.5rem 1rem;
    }
}

/* === Global Styles === */
:root {
    --black: #121212;
    --dark-gray: #1e1e1e;
    --gray: #333333;
    --light-gray: #666666;
    --gold: #d4af37;
    --gold-hover: #e6c158;
    --gold-dark: #a38829;
    --green: #0d9b4d;
    --green-hover: #0eb85b;
    --white: #ffffff;
    --off-white: #f2f2f2;
    
    /* Font weights */
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;
    
    /* Animation speeds */
    --transition-fast: 0.2s;
    --transition-medium: 0.3s;
    --transition-slow: 0.5s;
    
    /* Z-index layers */
    --z-header: 1000;
    --z-mobile-menu: 1001;
    
    /* Scrollbar dimensions */
    --scrollbar-size: 10px;
    --scrollbar-minsize: 40px;
}

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

html {
    scroll-behavior: smooth;
    touch-action: manipulation;
}

body {
    touch-action: manipulation;
}

a,
button,
.btn,
.cta-button,
.auth-button,
.mobile-auth-button,
.faq-question {
    touch-action: manipulation;
}

/* Custom Scrollbar - Desktop Only */
@media (min-width: 768px) {
    /* Webkit browsers (Chrome, Safari, Edge) */
    ::-webkit-scrollbar {
        width: var(--scrollbar-size);
        height: var(--scrollbar-size);
    }
    
    ::-webkit-scrollbar-track {
        background: var(--black);
        border-radius: 4px;
    }
    
    ::-webkit-scrollbar-thumb {
        background: var(--gold);
        border-radius: 20px;
        border: 2px solid var(--black);
        min-height: var(--scrollbar-minsize);
    }
    
    ::-webkit-scrollbar-thumb:hover {
        background: var(--gold-dark);
    }
    
    ::-webkit-scrollbar-corner {
        background: var(--black);
    }
    
    /* Firefox */
    * {
        scrollbar-width: thin;
        scrollbar-color: var(--gold) var(--black);
    }
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
}

body.no-scroll {
    overflow: hidden;
    height: 100vh;
    touch-action: none;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: var(--font-bold);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.cta-button.gold {
    background-color: var(--gold);
    color: var(--black);
    border: 2px solid var(--gold);
}

.cta-button.gold:hover {
    background-color: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}

.cta-button.green {
    background-color: var(--green);
    color: var(--white);
    border: 2px solid var(--green);
}

.cta-button.green:hover {
    background-color: var(--green-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}

.cta-button.highlight {
    background-color: var(--gold);
    color: var(--black);
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.section-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--gold);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--green);
}

.section-header p {
    color: var(--off-white);
    max-width: 800px;
    margin: 0 auto;
}

.section-footer {
    text-align: center;
    margin-top: 2rem;
}

/* === New Header & Navigation === */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-header);
    background: linear-gradient(180deg, rgba(12,12,12,0.98) 0%, rgba(18,18,18,0.95) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-medium) ease;
}

.site-header.scrolled {
    padding: 0;
    background: rgba(12, 12, 12, 0.7);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    position: relative;
    transition: all var(--transition-medium) ease;
}

.site-header.scrolled .header-container {
    padding: 0.5rem 1.5rem;
}

/* Logo & Brand */
.brand {
    flex: 0 0 auto;
    position: relative;
    z-index: calc(var(--z-header) + 1);
}

.brand-logo img {
    height: 40px;
    transition: transform var(--transition-medium) ease;
}

.site-header.scrolled .brand-logo img {
    height: 32px;
}

.brand-logo:hover img {
    transform: scale(1.05);
}

/* Main Navigation - Desktop */
.main-navigation {
    display: none; /* Hidden on mobile, shown with media query */
}

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

.nav-item {
    position: relative;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: var(--font-medium);
    padding: 0.5rem 0;
    color: var(--white);
    text-decoration: none;
    position: relative;
    transition: all var(--transition-medium) ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition-medium) ease;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--gold);
}

.nav-link:hover::after,
.nav-link:focus::after {
    width: 100%;
}

/* Authentication Buttons - Desktop */
.auth-area {
    display: none; /* Hidden on mobile, shown with media query */
    flex: 0 0 auto;
    gap: 1rem;
}

.auth-button {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: var(--font-semibold);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all var(--transition-medium) ease;
}

.auth-button.login {
    color: var(--white);
    background: transparent;
    border: 1px solid var(--gray);
}

.auth-button.login:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

.auth-button.signup {
    color: var(--black);
    background: var(--gold);
    border: 1px solid var(--gold);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.auth-button.signup:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
}

/* Mobile Toggle Button */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: calc(var(--z-header) + 1);
}

.toggle-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--white);
    border-radius: 2px;
    transition: all var(--transition-medium) ease;
    transform-origin: center;
}

/* Mobile toggle animation */
.mobile-toggle.active .toggle-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background-color: var(--gold);
}

.mobile-toggle.active .toggle-line:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .toggle-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background-color: var(--gold);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.98) 0%, rgba(10, 10, 10, 0.99) 100%);
    z-index: var(--z-mobile-menu);
    transition: all var(--transition-medium) cubic-bezier(0.77, 0, 0.175, 1);
    visibility: hidden;
    opacity: 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
    visibility: visible;
    opacity: 1;
}

.mobile-menu-container {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    height: 100%;
}

.mobile-brand {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

.mobile-brand img {
    height: 45px;
}

.mobile-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--gold);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-medium) ease;
}

.mobile-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.mobile-close i {
    font-size: 1.2rem;
}

/* Mobile Navigation */
.mobile-navigation {
    margin-bottom: 2rem;
}

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

.mobile-nav-item {
    margin-bottom: 1.5rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all var(--transition-medium) ease;
}

.mobile-menu.active .mobile-nav-item {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu.active .mobile-nav-item:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-nav-item:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-nav-item:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-nav-item:nth-child(4) { transition-delay: 0.4s; }

.mobile-nav-link {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: var(--font-medium);
    color: var(--white);
    text-decoration: none;
    padding: 0.7rem 0;
    transition: all var(--transition-medium) ease;
}

.mobile-nav-link i {
    width: 30px;
    margin-right: 15px;
    color: var(--gold);
    font-size: 1.2rem;
}

.mobile-nav-link:hover {
    color: var(--gold);
    transform: translateX(5px);
}

/* Mobile Authentication */
.mobile-auth {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: auto;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-medium) ease;
    transition-delay: 0.5s;
}

.mobile-menu.active .mobile-auth {
    opacity: 1;
    transform: translateY(0);
}

.mobile-auth-button {
    display: block;
    padding: 1rem;
    text-align: center;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: var(--font-semibold);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all var(--transition-medium) ease;
}

.mobile-auth-button.login {
    color: var(--white);
    background: transparent;
    border: 1px solid var(--gray);
}

.mobile-auth-button.login:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.mobile-auth-button.signup {
    color: var(--black);
    background: var(--gold);
    border: 1px solid var(--gold);
}

.mobile-auth-button.signup:hover {
    background: var(--gold-hover);
}

/* Mobile Social */
.mobile-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-medium) ease;
    transition-delay: 0.6s;
}

.mobile-menu.active .mobile-social {
    opacity: 1;
    transform: translateY(0);
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    transition: all var(--transition-medium) ease;
}

.social-icon:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

/* Desktop Responsive Adjustments */
@media (min-width: 992px) {
    .header-container {
        padding: 1.2rem 2rem;
    }
    
    .brand-logo img {
        height: 45px;
    }
    
    .main-navigation {
        display: block;
        flex: 1;
        margin: 0 2rem;
    }
    
    .nav-list {
        justify-content: center;
    }
    
    .auth-area {
        display: flex;
    }
    
    .mobile-toggle {
        display: none;
    }
}

/* Tablet Responsive Adjustments */
@media (min-width: 768px) and (max-width: 991px) {
    .mobile-menu {
        width: 400px;
    }
    
    .mobile-nav-link {
        font-size: 1.3rem;
    }
}

/* === New Hero Section === */
.hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem 1rem 4rem; /* Adjusted padding for mobile */
    min-height: 450px; /* Minimum height for mobile */
    color: var(--white);
    overflow: hidden;
    margin-top: 60px; /* Space for fixed header */
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.8) 70%, rgba(0,0,0,0.9) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
    padding: 1rem;
}

.hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    color: var(--gold);
    font-weight: var(--font-extrabold);
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.hero-content p {
    font-size: 1rem;
    font-weight: var(--font-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

.au-trust-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.2rem;
    background-color: rgba(0,0,0,0.5);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.au-trust-badge i {
    color: var(--gold);
    margin-right: 0.6rem;
    font-size: 1.1rem;
}

.hero-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 0.9rem; /* Base button font size */
    min-width: 220px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.btn-primary {
    background-color: var(--green);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--green-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.btn-secondary {
    background-color: var(--gold);
    color: var(--black);
}

.btn-secondary:hover {
    background-color: var(--gold-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* === Game Sections === */
.game-section {
    padding: 4rem 1rem;
    background-color: var(--black);
    perspective: 1000px; /* Add perspective for 3D effects */
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Enhanced Game Card with premium animations */
.game-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background-color: var(--dark-gray);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    will-change: transform, box-shadow;
    z-index: 1;
}

.game-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 20%, rgba(212, 175, 55, 0.2), transparent 80%);
    opacity: 0;
    z-index: 2;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.game-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, 
        transparent 15%, 
        rgba(212, 175, 55, 0.5) 25%, 
        transparent 35%, 
        transparent 65%, 
        rgba(212, 175, 55, 0.5) 75%, 
        transparent 85%);
    border-radius: 14px;
    z-index: -1;
    opacity: 0;
    transform: scale(1.05);
    filter: blur(8px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}

.game-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(-2deg);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.4), 
                0 0 30px rgba(212, 175, 55, 0.2);
}

.game-card:hover::before {
    opacity: 1;
    animation: shimmer 2s infinite;
}

.game-card:hover::after {
    opacity: 1;
    animation: pulse 2s infinite alternate;
}

@keyframes shimmer {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes pulse {
    0% {
        opacity: 0.3;
        transform: scale(1.05);
    }
    100% {
        opacity: 0.7;
        transform: scale(1.07);
    }
}

.game-card img {
    width: 100%;
    display: block;
    transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    backface-visibility: hidden;
}

.game-card:hover img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.05);
}

.game-card .game-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.95) 30%, 
        rgba(0, 0, 0, 0.8) 60%, 
        transparent 100%);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(70%);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), padding 0.5s ease;
    z-index: 3;
}

.game-card:hover .game-info {
    transform: translateY(0);
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.game-card .game-title {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--white);
    font-weight: 600;
    transform: translateY(5px);
    opacity: 0.9;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.game-card:hover .game-title {
    transform: translateY(0);
    opacity: 1;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.game-card .play-button {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-hover) 100%);
    color: var(--black);
    display: inline-block;
    transform: translateY(10px) scale(0.95);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 4;
}

.game-card .play-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: transform 0.5s ease;
    transform: skewX(-25deg);
    z-index: -1;
}

.game-card:hover .play-button {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.game-card .play-button:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, var(--gold-hover) 0%, var(--gold) 100%);
}

.game-card .play-button:hover::before {
    animation: shine 1.2s ease;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* === About Section === */
.about-section {
    padding: 4rem 1rem;
    background-color: var(--dark-gray);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature {
    padding: 1.5rem;
    background-color: var(--gray);
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.feature i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

/* === Footer === */
footer {
    background-color: var(--black);
    padding: 4rem 1rem 2rem;
    border-top: 1px solid var(--gray);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

.footer-logo img {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.link-group h4 {
    color: var(--gold);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.link-group h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--green);
}

.link-group ul li {
    margin-bottom: 0.5rem;
}

.link-group ul li a {
    color: var(--off-white);
    font-size: 0.9rem;
}

.link-group ul li a:hover {
    color: var(--gold);
}

.social-media {
    text-align: center;
}

.social-media h4 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: var(--gray);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--gold);
    transform: translateY(-3px);
}

.social-icons a i {
    font-size: 1.2rem;
    color: var(--white);
}

.copyright {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray);
    font-size: 0.9rem;
    color: var(--light-gray);
}

/* === SEO Info Section === */
.seo-section {
    padding: 4rem 1rem;
    background-color: var(--dark-gray); /* Or var(--black) if preferred */
    color: var(--off-white);
}

.seo-section .container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.seo-section h2 {
    text-align: center;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 2rem;
    position: relative;
}

.seo-section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--green);
}

.seo-section p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--light-gray);
}

.seo-section p strong {
    color: var(--gold);
    font-weight: var(--font-semibold);
}

.review-table-wrap {
    overflow-x: auto;
    margin-top: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 8px;
    background-color: rgba(18, 18, 18, 0.55);
}

.review-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 620px;
}

.review-table th,
.review-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    vertical-align: top;
    text-align: left;
}

.review-table tr:last-child th,
.review-table tr:last-child td {
    border-bottom: 0;
}

.review-table th {
    width: 32%;
    color: var(--gold);
    font-weight: var(--font-semibold);
    background-color: rgba(212, 175, 55, 0.07);
}

.review-table td {
    color: var(--off-white);
}

.faq-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 1000px;
    margin: 2rem auto 3rem;
}

.faq-item {
    padding: 1.5rem;
    background: rgba(30, 30, 30, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--gold);
    font: inherit;
    font-weight: var(--font-bold);
    text-align: left;
    cursor: pointer;
}

.faq-question::after {
    content: '+';
    flex: 0 0 auto;
    color: var(--white);
    font-size: 1.4rem;
    line-height: 1;
}

.faq-question[aria-expanded="true"]::after {
    content: '-';
}

.faq-answer {
    padding-top: 0.7rem;
}

.faq-answer p {
    color: var(--off-white);
    margin-bottom: 0;
}

/* Responsive adjustments for SEO section if needed */
@media (min-width: 768px) {
    .seo-section h2 {
        font-size: 2.2rem;
    }
    .seo-section p {
        font-size: 1.1rem;
    }

}

/* === Stats Section === */
.stats-section {
    background: linear-gradient(to bottom, var(--black), var(--dark-gray));
    padding: 5rem 1rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    opacity: 0.5;
}

.stats-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.stats-section .section-title {
    text-align: center;
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.stats-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--green);
}

.stats-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.stats-description p {
    color: var(--off-white);
    font-size: 1.1rem;
    line-height: 1.7;
}

.stats-description strong {
    color: var(--gold);
    font-weight: var(--font-semibold);
}

.stats-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: rgba(30, 30, 30, 0.7);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--gold));
    opacity: 0.8;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    margin-bottom: 1.2rem;
}

.stat-icon i {
    font-size: 2.5rem;
    color: var(--gold);
    opacity: 0.9;
}

.stat-number {
    font-size: 3rem;
    font-weight: var(--font-bold);
    color: var(--white);
    margin-bottom: 0.8rem;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 1.1rem;
    text-transform: uppercase;
    color: var(--gold);
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
    font-weight: var(--font-medium);
}

.stat-info {
    font-size: 0.9rem;
    color: var(--light-gray);
}

.stats-cta {
    text-align: center;
    margin-top: 2rem;
}

.stats-cta .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(13, 155, 77, 0.4);
    transition: all 0.3s ease;
}

.stats-cta .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(13, 155, 77, 0.5);
}

/* Animation for counting up */
[data-aos="count-up"] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="count-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive styles for Stats Section */
@media (min-width: 768px) {
    .stats-section {
        padding: 6rem 2rem;
    }
    
    .stats-section .section-title {
        font-size: 2.2rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (min-width: 992px) {
    .stats-section {
        padding: 7rem 2rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .stat-card {
        padding: 2.5rem 2rem;
    }
}

/* === Media Queries === */
@media (min-width: 576px) {
    .games-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 576px) {
    .games-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
    }
    
    .games-grid .game-card {
        border-radius: 8px;
    }
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 2.2rem;
    }

    .hero-section {
        padding: 8rem 1rem 6rem;
        min-height: 500px;
    }

    .hero-content h1 {
        font-size: 3rem; /* Larger for tablets */
    }

    .hero-content p {
        font-size: 1.2rem; /* Larger for tablets */
    }
    
    .au-trust-badge {
        font-size: 1rem;
        padding: 0.7rem 1.5rem;
    }

    .hero-cta-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
    }

    .btn {
        padding: 1rem 2.2rem;
        font-size: 1rem;
    }

    .features {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 3fr;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .nav-container {
        padding: 1rem 2rem;
    }

    .menu-toggle {
        display: none;
    }

    .nav-center .nav-menu {
        position: static;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
        background-color: transparent;
        height: auto;
        padding: 0;
        width: auto;
    }

    .nav-center .nav-menu li {
        margin: 0;
        width: auto;
    }

    .nav-center .nav-menu li a {
        font-size: 0.95rem;
    }

    .games-grid {
        grid-template-columns: repeat(8, 1fr);
    }

    .hero-section {
        min-height: 600px;
    }

    .hero-content h1 {
        font-size: 3.8rem; /* Larger for desktop */
    }

    .hero-content p {
        font-size: 1.3rem; /* Larger for desktop */
    }
}

@media (max-width: 768px) {
    .hero-section {
        align-items: center;
        text-align: center;
        min-height: 450px;
    }
    
    .hero-content {
        max-width: 90%;
    }
    
    .hero-cta-buttons {
        justify-content: center;
    }
    
    .hero-section::before {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.8) 100%);
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 400px;
        padding: 3.5rem 1rem 1.5rem;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        gap: 0.6rem;
        align-items: center;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content h2 {
        font-size: 0.9rem;
    }
}

/* === Split Banner Section === */
.split-banner-section {
    padding: 3rem 0;
    background-color: var(--black);
    color: var(--white);
    position: relative;
}

.promo-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.content-container {
    padding: 0;
    max-width: 100%;
    box-sizing: border-box;
    z-index: 1;
    background-color: transparent;
}

.promo-box {
    padding: 2rem;
    margin-bottom: 2rem;
    background-color: #222;
    border-radius: 8px;
    border-left: 4px solid var(--gold);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.promo-box h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: var(--font-bold);
}

.bonus-amount {
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: var(--font-bold);
    display: block;
    margin-bottom: 1.8rem;
}

.testimonial {
    background-color: #222;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
    .split-banner-section {
        padding: 4rem 0;
    }
    
    .promo-container {
        padding: 0 2rem;
    }
    
    .promo-box h3 {
        font-size: 2rem;
    }
    
    .bonus-amount {
        font-size: 1.6rem;
    }
}

@media (min-width: 992px) {
    .split-banner-section {
        padding: 5rem 0;
    }
} 
