/* Disclaimer Section */
.disclaimer-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1A120B 0%, #1E1A1A 100%);
    position: relative;
    overflow: hidden;
}

.disclaimer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/pattern.png') repeat;
    opacity: 0.03;
    z-index: 1;
}

.disclaimer-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    gap: 2rem;
}

.disclaimer-icon {
    font-size: 2.5rem;
    color: var(--lavender);
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.disclaimer-content {
    flex-grow: 1;
}

.disclaimer-content h3 {
    color: var(--moon-silver);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.disclaimer-text {
    margin-bottom: 2rem;
}

.disclaimer-text p {
    color: var(--moon-silver);
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.disclaimer-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.disclaimer-list li {
    color: var(--moon-silver);
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.disclaimer-list li i {
    position: absolute;
    left: 0;
    top: 0.3rem;
    color: var(--lavender);
    font-size: 1.1rem;
}

.disclaimer-link {
    color: var(--lavender);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.disclaimer-link:hover {
    color: var(--frost-cyan);
    text-decoration: underline;
}

.disclaimer-acknowledge {
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 2rem;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.disclaimer-checkbox {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--moon-silver);
    font-size: 0.95rem;
}

.disclaimer-checkbox input[type="checkbox"] {
    width: 1.2rem;
    height: 1.2rem;
    cursor: pointer;
}

.disclaimer-checkbox label {
    cursor: pointer;
    user-select: none;
}

#continue-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .disclaimer-card {
        flex-direction: column;
        padding: 1.5rem;
    }
    
    .disclaimer-icon {
        margin-bottom: 1rem;
    }
    
    .disclaimer-acknowledge {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .disclaimer-content h3 {
        font-size: 1.5rem;
    }
}

/* Games Section */
.games-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1E1A1A 0%, #1A120B 100%);
    position: relative;
    overflow: hidden;
}

.games-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/pattern.png') repeat;
    opacity: 0.03;
    z-index: 1;
}

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

.section-subtitle {
    display: block;
    font-size: 1.1rem;
    color: var(--lavender);
    font-weight: 500;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0;
}

.section-divider span {
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--lavender), transparent);
}

.section-divider i {
    color: var(--lavender);
    margin: 0 1.5rem;
    font-size: 1.2rem;
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    color: var(--moon-silver);
    opacity: 0.8;
    line-height: 1.6;
    font-size: 1.1rem;
}

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

.game-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.game-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.game-image {
    position: relative;
    padding-top: 60%;
    overflow: hidden;
}

.game-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card:hover .game-img {
    transform: scale(1.05);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 1.5rem;
}

.game-category {
    background: var(--lavender);
    color: var(--indigo-blue);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-rating {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    color: #FFD700;
    font-weight: 600;
}

.game-rating i {
    margin-right: 0.3rem;
    color: #FFD700;
}

.game-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.game-content h3 {
    font-size: 1.4rem;
    margin: 0 0 0.8rem;
    color: var(--moon-silver);
}

.game-content p {
    color: var(--moon-silver);
    opacity: 0.8;
    margin: 0 0 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
}

.game-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.players {
    display: flex;
    align-items: center;
    color: var(--moon-silver);
    font-size: 0.9rem;
    opacity: 0.8;
}

.players i {
    margin-right: 0.5rem;
    color: var(--lavender);
}

.btn-small {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
    background: var(--lavender);
    color: var(--indigo-blue);
    border: none;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-small:hover {
    background: var(--frost-cyan);
    transform: translateY(-2px);
}

.btn-small:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.games-cta {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.games-cta p {
    font-size: 1.2rem;
    color: var(--moon-silver);
    margin-bottom: 1.5rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .games-section {
        padding: 4rem 0;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 2rem auto;
    }
    
    .section-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* Base Styles & Variables */
:root {
    /* Yellow Color Palette */
    --moon-silver: #FFF9C4;
    --indigo-blue: #1A120B;
    --lavender: #FFD700;
    --frost-cyan: #FFC107;
    --accent-pink: #FFA000;
    --warning-orange: #FF8F00;
    --warning-red: #E65100;
    --dark-bg: #1A120B;
    --card-bg: rgba(255, 215, 0, 0.1);

    /* Typography */
    --heading-font: 'Poppins', sans-serif;
    --body-font: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;

    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --border-radius-xl: 32px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);

    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.18);
    --glass-blur: blur(10px);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--moon-silver);
    background: linear-gradient(135deg, #1A120B 0%, #3E2723 100%);
    background-attachment: fixed;
    position: relative;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

h2 {
    font-size: 2.25rem;
    margin-bottom: var(--spacing-md);
    text-align: center;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--frost-cyan), var(--accent-pink));
    border-radius: 2px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

p {
    margin-bottom: var(--spacing-xs);
}

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

a:hover {
    color: var(--moon-silver);
}

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

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-lg);
    font-family: var(--heading-font);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--frost-cyan);
    color: var(--indigo-blue);
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--accent-pink);
    color: var(--accent-pink);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--moon-silver);
    color: var(--moon-silver);
}

.btn-secondary:hover {
    background-color: var(--moon-silver);
    color: var(--indigo-blue);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--lavender);
    color: var(--lavender);
}

.btn-outline:hover {
    background-color: var(--frost-cyan);
    color: var(--indigo-blue);
    transform: translateY(-2px);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--spacing-xs) 0;
    background: rgba(26, 18, 11, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

/* Header Styles */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--moon-silver);
    text-decoration: none;
    z-index: 1001;
}

.logo img {
    width: auto;
    height: 60px;
    margin-right: 10px;
}

.logo span {
    color: var(--frost-cyan);
}

/* Navigation */
.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
    transition: all 0.3s ease;
}

.nav-links li {
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--moon-silver);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--frost-cyan);
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--frost-cyan);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Mobile Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger .bar {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--moon-silver);
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* Focus styles for accessibility */
.hamburger:focus-visible,
.nav-links a:focus-visible {
    outline: 2px solid var(--frost-cyan);
    outline-offset: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
    text-align: center;
    background: linear-gradient(135deg, #1A120B 0%, #3E2723 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/pattern.png') repeat;
    opacity: 0.1;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-text {
    margin: 0 auto;
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    margin: 0 auto 1.5rem;
    line-height: 1.2;
    color: var(--moon-silver);
    font-weight: 700;
    max-width: 800px;
}

.hero .subtitle {
    font-size: 1.4rem;
    color: var(--moon-silver);
    margin: 0 auto 3rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 700px;
}

.hero .cta-buttons {
    justify-content: center;
    margin-bottom: 4rem;
    gap: 1.5rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 900px;
    margin: 6rem auto 0;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.stat-item {
    text-align: center;
    padding: 0 1.5rem;
    flex: 1;
    min-width: 150px;
}

.stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--lavender);
    margin-bottom: 0.5rem;
    font-family: var(--heading-font);
    line-height: 1.1;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--moon-silver);
    opacity: 0.9;
    font-weight: 400;
}

@media (max-width: 1024px) {
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero .subtitle {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
    }
    
    .hero-stats {
        margin-top: 4rem;
        padding: 2rem 1.5rem;
        gap: 2rem;
    }
    
    .stat-item {
        padding: 0 1rem;
        min-width: 120px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 20px 30px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 1.2rem;
    }
    
    .hero .subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 3rem;
    }
    
    .hero .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 3rem;
        padding: 1.5rem 1rem;
    }
    
    .stat-item {
        padding: 0.5rem 0;
        min-width: 100%;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Games Section */
.games-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, rgba(26, 18, 11, 0.9) 0%, rgba(62, 39, 35, 0.9) 100%);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.game-card {
    background: rgba(26, 18, 11, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.game-preview {
    padding: 0;
}

.game-preview img {
    width: 100%;
    height: auto;
}

.game-card h3 {
    padding: 0 var(--spacing-md);
    margin-top: var(--spacing-md);
}

.game-card p {
    padding: 0 var(--spacing-md);
    flex-grow: 1;
    color: var(--lavender);
}

.game-card .btn {
    margin: var(--spacing-md);
    text-align: center;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-subtitle {
    display: block;
    font-size: 1.1rem;
    color: var(--lavender);
    font-weight: 500;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
}

.section-divider span {
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--lavender), transparent);
}

.section-divider i {
    color: var(--lavender);
    margin: 0 1.5rem;
    font-size: 1.2rem;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    position: relative;
    background: linear-gradient(135deg, #1A120B 0%, #1E1A1A 100%);
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/pattern.png') repeat;
    opacity: 0.03;
    z-index: 1;
}

.about-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 2.2rem;
    color: var(--moon-silver);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-text > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--moon-silver);
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.feature {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: var(--border-radius-md);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    color: var(--lavender);
    font-size: 1.2rem;
}

.feature h4 {
    font-size: 1.2rem;
    color: var(--moon-silver);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature p {
    font-size: 0.95rem;
    color: var(--moon-silver);
    opacity: 0.8;
    line-height: 1.6;
    margin: 0;
}

.about-image {
    position: relative;
    flex: 1;
    max-width: 500px;
    margin: 0 auto;
}

.about-img {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--lavender);
    padding: 1.2rem 1.5rem;
    border-radius: var(--border-radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.experience-badge .years {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--indigo-blue);
    line-height: 1;
    margin-bottom: 0.2rem;
    font-family: var(--heading-font);
}

.experience-badge span:last-child {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--indigo-blue);
    white-space: nowrap;
}

.about-cta {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.about-cta p {
    font-size: 1.3rem;
    color: var(--moon-silver);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .about-content {
        flex-direction: column-reverse;
        gap: 3rem;
    }
    
    .about-text, .about-image {
        width: 100%;
        max-width: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 4rem 0;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .about-text h3 {
        font-size: 1.8rem;
    }
    
    .experience-badge {
        right: 0;
        bottom: -15px;
    }
    
    .about-cta p {
        font-size: 1.1rem;
    }
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(26, 18, 11, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
}

/* How It Works */
.how-it-works {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, rgba(26, 18, 11, 0.9) 0%, rgba(62, 39, 35, 0.9) 100%);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.step {
    text-align: center;
    padding: var(--spacing-lg);
    background: rgba(26, 18, 11, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, rgba(26, 18, 11, 0.9) 0%, rgba(62, 39, 35, 0.9) 100%);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3) 0%, rgba(255, 160, 0, 0.3) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    font-size: 2rem;
    color: var(--frost-cyan);
}

 /* Disclaimer Section */
.disclaimer-section {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

.disclaimer-content {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(25, 35, 60, 0.95) 100%);
    padding: 25px 30px;
    border-radius: 12px;
    margin: 50px auto;
    max-width: 1000px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(110, 231, 224, 0.3);
    position: relative;
    overflow: hidden;
}

.disclaimer-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--frost-cyan), var(--moon-silver), var(--frost-cyan));
}

.disclaimer-icon {
    font-size: 3rem;
    color: var(--frost-cyan);
    flex-shrink: 0;
    text-shadow: 0 0 15px rgba(110, 231, 224, 0.5);
}

.disclaimer-text {
    justify-items: center;
}

.disclaimer-text h3 {
    color: var(--moon-silver);
    margin: 0 0 15px 0;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.highlight {
    color: var(--frost-cyan);
    font-weight: 600;
}

.age-badge {
    background: #e74c3c;
    color: white;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.disclaimer-features {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    background: rgba(110, 231, 224, 0.1);
    padding: 8px 15px;
    border-radius: 30px;
    border: 1px solid rgba(110, 231, 224, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    background: rgba(110, 231, 224, 0.15);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    margin-right: 8px;
    color: var(--frost-cyan);
    font-size: 1.1rem;
}

.feature-item span {
    color: var(--moon-silver);
    font-weight: 500;
    font-size: 0.95rem;
}

.disclaimer-message {
    color: var(--lavender);
    line-height: 1.7;
    margin: 20px 0 0 0;
    font-size: 0.95rem;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    border-left: 3px solid var(--frost-cyan);
}

/* Footer */
footer {
    background: rgba(15, 23, 42, 0.8);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h3 {
    color: var(--moon-silver);
    margin-bottom: var(--spacing-md);
    font-size: 1.25rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: var(--lavender);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--frost-cyan);
}

.page-header {
    text-align: center;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuLWJnIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjAyKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuLWJnKSIvPjwvc3ZnPg==');
    opacity: 0.7;
    z-index: 0;
}

.page-header-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--moon-silver);
    position: relative;
    display: inline-block;
}

.page-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--frost-cyan);
    border-radius: 2px;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--lavender);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Legal pages */
.content-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(26, 18, 11, 0.9) 0%, rgba(62, 39, 35, 0.9) 100%);
}

.content-card {
    background: rgba(26, 18, 11, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    margin-bottom: 40px;
}

.content-card h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--moon-silver);
    position: relative;
    padding-bottom: 15px;
}

.content-card h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 3rem;
    width: 60px;
    height: 3px;
    background: var(--frost-cyan);
    border-radius: 2px;
}

.content-card h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: var(--moon-silver);
}

.content-card p,
.content-card ul,
.content-card ol {
    color: black;
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-card ul,
.content-card ol {
    padding-left: 20px;
}

.content-card li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 10px;
}

.content-card li::before {
    content: '•';
    color: var(--frost-cyan);
    position: absolute;
    left: -10px;
}

.content-card a {
    color: var(--frost-cyan);
    text-decoration: none;
    transition: color 0.3s ease;
}

.content-card a:hover {
    color: var(--moon-silver);
    text-decoration: underline;
}

.back-button {
    display: inline-flex;
    align-items: center;
    color: var(--moon-silver);
    margin-bottom: 30px;
    transition: color 0.3s ease;
}

.back-button:hover {
    color: var(--frost-cyan);
}

.back-button i {
    margin-right: 8px;
}

.warning-box {
    background: rgba(231, 110, 110, 0.1);
    border-left: 3px solid #e76e6e;
    padding: 20px;
    margin: 25px 0;
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
}

.warning-box p {
    margin: 0;
    color: var(--moon-silver);
}

.privacy-highlight {
    background: rgba(110, 231, 224, 0.1);
    border-left: 3px solid var(--frost-cyan);
    padding: 15px 20px;
    margin: 25px 0;
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
}

.privacy-highlight p {
    margin: 0;
    color: var(--moon-silver);
}

.copyright {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    color: var(--lavender);
}

/* Particles Background */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.6;
}

/* Responsive Styles */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
    }
    .disclaimer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .disclaimer-icon {
        margin: 0 0 15px 0;
    }
    .header-container {
        padding: 1rem;
    }

    .page-header {
        padding: 120px 0 40px;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }


    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--indigo-blue);
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 0.8rem 0;
        opacity: 0;
        transform: translateX(-20px);
    }

    .hamburger {
        display: flex;
    }

    /* Animate hamburger to X when active */
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .content-card {
        padding: 30px 20px;
    }

    .content-card h2 {
        font-size: 1.8rem;
    }

    .content-card h3 {
        font-size: 1.3rem;
    }

    .content-card h4 {
        font-size: 1.1rem;
    }
}

/* Animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-sm {
    margin-top: var(--spacing-sm);
}

.mt-md {
    margin-top: var(--spacing-md);
}

.mt-lg {
    margin-top: var(--spacing-lg);
}

.mt-xl {
    margin-top: var(--spacing-xl);
}

.mb-sm {
    margin-bottom: var(--spacing-sm);
}

.mb-md {
    margin-bottom: var(--spacing-md);
}

.mb-lg {
    margin-bottom: var(--spacing-lg);
}

.mb-xl {
    margin-bottom: var(--spacing-xl);
}