/* Base Styles */
:root {
    --primary-color: #0d5016; /* Dark Green */
    --secondary-color: #10b981; /* Green */
    --accent-color: #d97706; /* Gold */
    --text-color: #1f2937;
    --light-bg: #f3f4f6;
    --white: #ffffff;
    --red: #dc2626;
    --orange: #ea580c;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    overflow-x: hidden;
}
body {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    text-decoration: underline;
}

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

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
header {
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    transition: transform 0.3s ease;
}

.logo-highlight {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), #0d5016);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.logo-highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #0d5016);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.logo:hover .logo-highlight::after {
    transform: scaleX(1);
    transform-origin: left;
}

.logo-subtitle {
    font-size: 0.7rem;
    font-weight: 500;
    color: #6b7280;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 2px;
    transition: color 0.3s ease;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo:hover .logo-subtitle {
    color: var(--primary-color);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

nav a {
    color: var(--text-color);
    font-weight: 500;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    text-align: center;
    transition: background-color 0.2s;
    text-decoration: none;
}

.btn:hover {
    background-color: #0a4012;
    text-decoration: none;
}

.btn-secondary {
    background-color: #6b7280;
}

.btn-secondary:hover {
    background-color: #4b5563;
}

/* Hero Section */
.hero {
    padding: 6rem 1rem 4rem;
    background: linear-gradient(135deg, #0d5016 0%, #06300c 50%, #0a4012 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(16,185,129,0.1) 0%, transparent 30%),
        radial-gradient(circle at 50% 50%, rgba(13,80,22,0.2) 0%, transparent 40%);
    z-index: 0;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 0 1rem;
}

.hero-text {
    max-width: 100%;
    text-align: left;
    color: white;
}

.hero-tag {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
    font-weight: 800;
    background: linear-gradient(90deg, #ffffff, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 20px rgba(255,255,255,0.1);
}

.hero-lead {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin: 2rem 0 3rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}
/* Hero Image/Preview */
.hero-image {
    position: relative;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255,255,255,0.1);
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.game-preview {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.game-preview-header {
    background: #f9fafb;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
}

.game-dots {
    display: flex;
    gap: 6px;
    margin-right: 10px;
}

.game-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: block;
}

.game-dots span:nth-child(1) { background: #ef4444; }
.game-dots span:nth-child(2) { background: #f59e0b; }
.game-dots span:nth-child(3) { background: #10b981; }

.game-title {
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 500;
}

.game-preview-content {
    padding: 1.5rem;
}

.game-screenshot {
    height: 200px;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.game-screenshot img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 4px;
}

.game-info h4 {
    font-size: 1.25rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.game-info p {
    color: #6b7280;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.btn-small {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-text {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 5rem 1rem;
        min-height: auto;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-lead {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* How It Works Section */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0d5016, #10b981);
    border-radius: 2px;
}

.section-title {
    font-size: 2.75rem;
    color: #1f2937;
    margin: 0 0 1rem;
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(90deg, #06300c, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}
.how-it-works {
    padding: 6rem 1rem;
    background-color: #f8fafc;
    position: relative;
}

.how-it-works .container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    margin-top: 1rem;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.step {
    background: white;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0d5016, #0a4012);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.step h3 {
    color: #1f2937;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.step p {
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
}

.cta-box {
    background: linear-gradient(135deg, #0d5016, #0a4012);
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    color: white;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-box p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-box .btn {
    background: white;
    color: #0a4012;
    font-weight: 600;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
}

.cta-box .btn:hover {
    background: #f3f4f6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .step {
        padding: 2rem 1.5rem;
    }
    
    .cta-box {
        padding: 2.5rem 1.5rem;
    }
    
    .cta-box h3 {
        font-size: 1.75rem;
    }
    
    .cta-box p {
        font-size: 1.1rem;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 6rem 1rem;
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem auto;
    max-width: 1200px;
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    background-clip: text;
}

.feature-card h3 {
    color: #1f2937;
    font-size: 1.4rem;
    margin: 0 0 1rem;
    font-weight: 700;
}

.feature-card p {
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 0 1.5rem;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: #e5e7eb;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #0a4012;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #06300c, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: #4b5563;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    
    .stat-item {
        padding: 1rem 0;
    }
    
    .stat-item:not(:last-child)::after {
        display: none;
    }
    
    .stat-item:not(:last-child) {
        border-bottom: 1px solid #e5e7eb;
        width: 200px;
        padding-bottom: 1.5rem;
    }
}

/* Featured Games Section */
.featured-games {
    padding: 6rem 1rem;
    background-color: #ffffff;
    position: relative;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem auto;
    max-width: 1200px;
}

.game-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    position: relative;
}

.game-card.featured {
   
}

.game-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #0d5016;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.game-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.game-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
    padding: 1.5rem 1.5rem 0.5rem;
}

.game-category {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    backdrop-filter: blur(5px);
}

.game-content {
    padding: 1.5rem;
    text-align: center;
}

.game-content h3,
.game-content p {
    text-align: center;
}

.game-rating {
    color: #f59e0b;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-text {
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 500;
}

.game-card h3 {
    color: #1f2937;
    font-size: 1.4rem;
    margin: 0 0 0.75rem;
    font-weight: 700;
}

.game-card p {
    color: #4b5563;
    line-height: 1.6;
    margin: 0 0 1.25rem;
    font-size: 0.95rem;
    min-height: 4.5rem;
}

.game-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
}

.game-players {
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.game-tag {
    background: #f3f4f6;
    color: #4b5563;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.8rem;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.btn-outline {
    background: transparent;
    border: 2px solid #0d5016;
    color: #0d5016;
    padding: 0.75rem 2rem;
    font-weight: 600;
}

.btn-outline:hover {
    background: #0d5016;
    color: white;
}

.view-all-games {
    text-align: center;
    margin-top: 3rem;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .game-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .game-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .game-card {
        max-width: 100%;
    }
}

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


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

.disclaimer-section .section-title {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 800;
    background: linear-gradient(90deg, #ffffff, #10b981);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.disclaimer-section .section-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.disclaimer-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.disclaimer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2), 0 0 20px rgba(13,80,22,0.3);
}

.disclaimer-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: #10b981;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
}

.disclaimer-card h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.disclaimer-card p {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}



.disclaimer-note p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.disclaimer-note a {
    color: #10b981;
    text-decoration: none;
    font-weight: 600;
    position: relative;
}

.disclaimer-note a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #10b981;
    opacity: 0.7;
}

.disclaimer-note a:hover {
    color: #ffffff;
}

@media (max-width: 768px) {
    .disclaimer-section {
        padding: 3rem 1rem;
    }
    
    .disclaimer-section .section-title {
        font-size: 1.8rem;
    }
    
    .disclaimer-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 2rem;
    }
    
    .disclaimer-card {
        padding: 1.5rem 1.25rem;
    }
}

/* Footer */
footer {
    background: #101010;
    color: #f8fafc;
    padding: 4rem 1rem 2rem;
    position: relative;
    overflow: hidden;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 1.3fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    align-items: flex-start;
}

.newsletter-form {
    padding: 0 0 0 1rem;
    max-width: 320px;
    margin-left: auto;
}

.newsletter-form h4 {
    color: #f8fafc;
    font-size: 1.1rem;
    margin: 0 0 0.75rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.newsletter-form h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #0d5016;
    border-radius: 2px;
}

.newsletter-form p {
    color: #94a3b8;
    font-size: 0.85rem;
    margin: 0 0 1.25rem;
    line-height: 1.5;
}

.newsletter-form-inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    gap: 0.5rem;
    width: 100%;
    flex-direction: column;
}

.newsletter-form input[type="email"] {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1px solid #334155;
    background: #1e293b;
    border-radius: 6px;
    color: #f8fafc;
    font-size: 0.9rem;
    transition: border-color 0.2s;
    margin-bottom: 0.5rem;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: #0d5016;
    box-shadow: 0 0 0 3px rgba(13, 80, 22, 0.1);
}

.newsletter-form input[type="email"]::placeholder {
    color: #64748b;
}

.btn-subscribe {
    background: #0d5016;
    color: white;
    border: none;
    padding: 0.7rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    width: 100%;
    font-size: 0.9rem;
}

.btn-subscribe:hover {
    background: #0a4012;
}

.form-note {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.form-note input[type="checkbox"] {
    margin-top: 0.25rem;
}

.form-note label {
    color: #94a3b8;
    font-size: 0.8rem;
    line-height: 1.5;
}

.form-note a {
    color: #0d5016;
    text-decoration: none;
}

.form-note a:hover {
    text-decoration: underline;
}

.footer-brand h3 {
    font-size: 1.75rem;
    margin: 0 0 0.5rem;
    background: linear-gradient(90deg, #0d5016, #93c5fd);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.tagline {
    color: #94a3b8;
    margin: 0 0 1.5rem;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #cbd5e1;
    text-decoration: none;
    font-style: normal;
}

.social-icon i {
    font-style: normal;
    font-weight: 600;
}

.social-icon:hover {
    background: #0d5016;
    color: white;
}

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

.footer-links-group h4 {
    color: #f8fafc;
    font-size: 1.1rem;
    margin: 0 0 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-links-group h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #0d5016;
    border-radius: 2px;
}

.footer-links-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-group li {
    margin-bottom: 0.75rem;
}

.footer-links-group a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-links-group a:hover {
    color: #0d5016;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.disclaimer {
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.6;
    max-width: 70%;
}

.disclaimer p {
    margin: 0;
}

.copyright {
    color: #ffffff;
    font-size: 0.85rem;
    text-align: center;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
    
    .newsletter-form {
        grid-column: span 2;
        max-width: 500px;
        margin: 0 auto;
        padding: 0;
    }
    
    .footer-links-container {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-links-container {
        grid-column: auto;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .newsletter-form {
        padding: 0;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .btn-subscribe {
        width: 100%;
        padding: 0.75rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .disclaimer {
        max-width: 100%;
    }
}
/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .game-cards {
        grid-template-columns: 1fr;
    }
    
    .cookie-consent {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-consent button {
        margin-top: 1rem;
        width: 100%;
    }
}

/* Game Page Styles */
.game-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.game-frame-container {
    position: relative;
    width: 100%;
    padding-bottom: 75%; /* 4:3 aspect ratio */
    margin: 2rem 0;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.game-frame-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.back-link {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-decoration: none;
}

.back-link:hover {
    text-decoration: underline;
}

/* Text Pages */
.text-page {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.text-page h1 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.text-page h2 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.text-page p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.text-page ul, .text-page ol {
    margin: 1rem 0 1rem 2rem;
}

.text-page li {
    margin-bottom: 0.5rem;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

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

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }