/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Account for fixed header */
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #0a0a1a;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #240046;
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 0;
    border: none;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav {
    display: flex;
    align-items: center;
}

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

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #FFD700;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    justify-content: space-around;
    width: 40px;
    height: 30px;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
    transition: transform 0.3s ease;
    will-change: transform;
    backface-visibility: hidden;
    perspective: 1000px;
}

.mobile-menu-toggle {
    padding: 0.5rem;
    margin-right: -0.5rem;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background: #FFD700;
    border-radius: 3px;
    display: block;
    position: relative;
    opacity: 1;
    transform: rotate(0deg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity, background-color;
    transform-origin: center;
}

.mobile-menu-toggle span:not(:last-child) {
    margin-bottom: 5px;
}

.mobile-menu-toggle:hover span {
    background: #FFE55C;
}

.mobile-menu-toggle:active span {
    transform: scale(0.95);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background: #FFD700;
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background: #FFD700;
}

/* Hero Section */
.hero {
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    background: #0f0524; /* Fallback color */
    color: #fff; /* Ensure text is visible */
}

.hero-container {
    position: relative;
    width: 100%;
    max-width: 2496px;
    margin: 0 auto;
    padding-top: 80px; /* Match header height */
    box-sizing: border-box;
}

.hero-image {
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
    background: linear-gradient(90deg, rgba(36, 0, 70, 0.9) 0%, rgba(36, 0, 70, 0.6) 50%, transparent 100%);
}

.hero-text-content {
    max-width: 550px;
    padding: 2rem 0;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #FFD700;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.hero-cta .btn {
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 140px;
    text-align: center;
    flex: 1 1 auto;
}

/* Mobile styles */
@media (max-width: 991px) {
    .hero-content {
        background: linear-gradient(135deg, #240046 0%, #5A189A 100%);
        text-align: center;
        padding: 2rem 1rem;
    }
    
    .hero-text-content {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-text {
        font-size: 1.05rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 0.8rem;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero-cta .btn {
        width: 100%;
        padding: 0.9rem 1rem;
        font-size: 0.95rem;
    }
}

/* Desktop styles */
@media (min-width: 768px) and (max-width: 991px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-cta {
        flex-direction: row;
        max-width: 100%;
    }
    
    .hero-cta .btn {
        flex: 0 1 calc(50% - 0.5rem);
    }
}

@media (min-width: 992px) {
    .hero {
        min-height: 500px;
        display: flex;
        align-items: center;
    }
    
    .hero-container {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }
    
    .hero-content {
        position: absolute;
        top: 0;
        left: 0;
        width: 60%;
        height: 100%;
        display: flex;
        align-items: center;
        background: linear-gradient(90deg, rgba(36, 0, 70, 0.95) 0%, rgba(36, 0, 70, 0.7) 60%, transparent 100%);
    }
    
    .hero-text-content {
        padding: 0;
    }
    
    .hero h1 {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-text {
        font-size: 1.3rem;
        max-width: 90%;
    }
    
    .hero-cta .btn {
        padding: 1rem 2.5rem;
        font-size: 1.2rem;
    }
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #FFD700;
    color: #240046;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    background: #FFC700;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.btn-outline {
    background: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.btn-outline:hover {
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    border-color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

/* About Section */
.about {
    padding: 4rem 0;
    background: #f8f9fa;
    text-align: center;
    color: #333; /* Ensure text is visible on light background */
}

.about h1 {
    font-size: 2.5rem;
    color: #240046;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-text {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Games Section */
.games {
    padding: 4rem 0;
    background: #fff;
    color: #333; /* Ensure text is visible on white background */
}

.games h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #240046;
    margin-bottom: 3rem;
    font-weight: 600;
}

/* Game Grid with Aspect Ratio */
.games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.game-item {
    display: block;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    will-change: transform, box-shadow;
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
    background: #f8f9fa;
    aspect-ratio: 1/1;
}

.game-item:hover {
    transform: translateY(-5px) translateZ(0);
    box-shadow: 0 8px 25px rgba(90, 24, 154, 0.2);
}

.game-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-item:hover img {
    transform: scale(1.03);
}

/* Bonuses Section */
.bonuses {
    padding: 4rem 0;
    background: linear-gradient(135deg, #240046 0%, #5A189A 100%);
    color: #fff;
}

.bonuses h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.bonus-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.bonus-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.bonus-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #FFD700;
}

.bonus-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.bonus-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.bonus-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #FFD700;
}

.bonus-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: 4rem 0;
    background: #fff;
    color: #333; /* Ensure text is visible on white background */
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #240046;
    margin-bottom: 3rem;
    font-weight: 600;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease;
}

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

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFD700;
    color: #240046;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.step-icon {
    font-size: 2.5rem;
    margin: 1rem 0;
}

.step-item h3 {
    font-size: 1.3rem;
    color: #240046;
    margin-bottom: 1rem;
}

.step-item p {
    color: #666;
    line-height: 1.6;
}

/* About Australia Section */
.about-australia {
    padding: 5rem 0;
    background: linear-gradient(135deg, #240046 0%, #5A189A 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.about-australia-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-australia-text {
    flex: 1;
}

.about-australia h2 {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-australia h3 {
    color: #FFD700;
    font-size: 1.8rem;
    margin: 2rem 0 1.2rem;
    font-weight: 600;
}

.about-australia p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.about-australia ul {
    list-style-type: none;
    padding: 0;
    margin: 1.5rem 0;
}

.about-australia ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.about-australia ul li:before {
    content: '✓';
    color: #FFD700;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.about-australia-image {
    text-align: center;
    flex-shrink: 0;
    position: relative;
    width: 100%;
}

.mascot-container {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.about-australia-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid #FFD700;
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    will-change: transform;
}

.about-australia-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Floating Coins - Static Position */
.floating-coins {
    display: none; /* Hide floating coins since they require animation */
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 320px;
    margin: 0 auto;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.2rem 0.5rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 0.3rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

@media (min-width: 992px) {
    .about-australia-content {
        flex-direction: row;
        align-items: flex-start;
        gap: 4rem;
        max-width: 1300px;
    }
    
    .about-australia-image {
        width: 45%;
        position: sticky;
        top: 100px;
    }
    
    .about-australia-text {
        width: 55%;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }
}

@media (max-width: 991px) {
    .about-australia {
        text-align: center;
    }
    
    .about-australia ul li {
        text-align: left;
    }
    
    .about-australia-image {
        margin: 3rem auto 0;
        max-width: 400px;
    }
    
    .stats-grid {
        margin-top: 2rem;
    }
    
    .stat-item {
        padding: 1rem 0.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

/* Popular Slots RTP Section */
.slots-rtp {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a0033 0%, #2d0a5a 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
}

.rtp-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.rtp-table-container {
    width: 100%;
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.rtp-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    overflow: hidden;
}

.rtp-table th,
.rtp-table td {
    padding: 1.2rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.rtp-table th {
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.rtp-table tbody tr:last-child td {
    border-bottom: none;
}

.rtp-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Slot Info Styles */
.slot-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.slot-thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.slot-info:hover .slot-thumbnail {
    transform: scale(1.1);
}

/* Volatility Indicators */
.volatility {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.volatility.high {
    background: rgba(255, 59, 59, 0.2);
    color: #ff3b3b;
}

.volatility.medium {
    background: rgba(255, 174, 0, 0.2);
    color: #ffae00;
}

.volatility.low {
    background: rgba(0, 199, 79, 0.2);
    color: #00c74f;
}

/* RTP Image Section */
.rtp-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-top: 2rem;
}

.rtp-image img {
    width: 100%;
    height: auto;
    display: block;
}

.rtp-image:hover img {
    transform: scale(1.03);
}

.rtp-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(26, 0, 51, 0.7) 0%, rgba(45, 10, 90, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    color: white;
}

.rtp-image-overlay h3 {
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 1rem;
    font-weight: 700;
}

.rtp-image-overlay p {
    font-size: 1.1rem;
    max-width: 400px;
    margin: 0 auto;
    opacity: 0.9;
}

/* RTP Disclaimer */
.rtp-disclaimer {
    margin-top: 3rem;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.rtp-disclaimer strong {
    color: #FFD700;
}

/* Floating Buttons */
.floating-gift,
.back-to-top {
    position: fixed;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    padding: 0;
    overflow: hidden;
    text-decoration: none;
}

.floating-gift {
    left: 20px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a0033;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.4);
}

.floating-gift svg {
    width: 24px;
    height: 24px;
    margin: 0;
}

.floating-gift:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.4);
    color: #1a0033;
}

.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background: rgba(25, 0, 51, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #FFD700;
    opacity: 0;
    visibility: hidden;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    transform: translateY(20px);
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                background-color 0.2s ease;
    will-change: transform, opacity, background-color;
    pointer-events: none;
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top:hover {
    background: rgba(90, 24, 154, 0.9);
    color: #FFD700;
    transform: translateY(-3px) translateZ(0);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.back-to-top:active {
    transform: translateY(-1px) translateZ(0);
    transition-duration: 0.1s;
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    will-change: transform;
}

.back-to-top:hover svg {
    transform: translateY(-2px);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 165, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 165, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 165, 0, 0);
    }
}

/* Recommended Casinos Section */
.recommended-casinos {
    padding: 5rem 0;
    background: #0f051d;
    color: #fff;
}

.recommended-casinos .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.recommended-casinos h2 {
    color: #FFD700;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.casinos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

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

.casino-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.casino-link {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-align: center;
    text-decoration: none;
    transition: color 0.3s ease;
}

.casino-link:hover {
    color: #FFD700;
    text-decoration: underline;
}

.casino-rating {
    color: #FFD700;
    font-size: 1rem;
    letter-spacing: 2px;
}

.recommended-casinos .disclaimer {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

.recommended-casinos .disclaimer strong {
    color: #FFD700;
}

/* Responsive Adjustments */
@media (min-width: 992px) {
    .rtp-content {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .rtp-table-container {
        flex: 1;
        margin-right: 2rem;
    }
    
    .rtp-image {
        flex: 0 0 350px;
        margin-top: 0;
    }
}

@media (max-width: 991px) {
    .rtp-table th,
    .rtp-table td {
        padding: 1rem;
    }
    
    .slot-thumbnail {
        width: 50px;
        height: 50px;
    }
}

/* FAQ Section */
.faq {
    padding: 4rem 0;
}

.faq h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #FFD700;
    margin-bottom: 3rem;
    font-weight: 600;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    color: #240046;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question[aria-expanded="true"] {
    background: #5A189A;
    color: white;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem;
    background: #f8f9fa;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    max-height: 200px;
    padding: 1.5rem;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Footer */
.footer {
    background: #240046;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

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

.footer-nav {
    display: flex;
    gap: 2rem;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(36, 0, 70, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 1rem 1.5rem;
        z-index: 1000;
        transform: translateX(-100%);
        will-change: transform;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0;
        pointer-events: none;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }

    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        margin: 0.4rem 0;
        opacity: 0;
        transform: translateY(5px);
        transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1),
                    opacity 0.25s ease;
        transition-delay: calc(0.03s * var(--i, 0));
        will-change: transform, opacity;
        backface-visibility: hidden;
        transform: translateZ(0);
    }

    .nav-menu li a {
        display: block;
        padding: 0.6rem 1.2rem;
        font-size: 1rem;
        border-radius: 6px;
        transition: all 0.2s ease;
    }

    .nav-menu li a:hover,
    .nav-menu li a:focus {
        background: rgba(255, 215, 0, 0.1);
        color: #FFD700;
        transform: translateX(5px);
        outline: none;
    }

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

    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
        touch-action: none;
    }
    
    /* Add a subtle overlay when menu is open */
    .nav-overlay {
        content: '';
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.7);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: 998;
    }
    
    .nav-menu.active + .nav-overlay {
        opacity: 1;
        pointer-events: auto;
    }

    .about h1 {
        font-size: 2rem;
    }

    .games h2,
    .bonuses h2,
    .how-it-works h2,
    .faq h2 {
        font-size: 1.8rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (min-width: 769px) {
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .games-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .bonuses-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation removed */

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}