/* Base Styles & Variables */
:root {
    /* Color Palette */
    --primary: #FF6EC7;       /* Bubblegum Pink */
    --secondary: #6EE7FF;     /* Sky Bubble Blue */
    --accent: #FF9A3C;        /* Playful Tangerine */
    --highlight: #6A4DFF;     /* Arcade Violet */
    --bg: #FFF8FB;            /* Cotton Candy White */
    --card-bg: #FFFFFF;       /* White */
    --text: #333333;          /* Dark Gray for text */
    --text-light: #666666;    /* Light Gray for secondary text */
    --border: #E0E0E0;        /* Light border color */
    --warning: #FF4D4D;       /* Warning/Error color */
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --container: 1200px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
    color: var(--text-light);
}

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

a:hover {
    color: var(--highlight);
}

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

/* Layout */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

section {
    padding: var(--spacing-xl) 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-size: 1rem;
    text-decoration: none;
}

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

.btn-primary:hover {
    background-color: #ff4db3;
    color: white;
}

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

.btn-secondary:hover {
    background-color: #4ddbff;
    color: var(--text);
}

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

.btn-accent:hover {
    background-color: #ff8823;
    color: white;
}

/* Header */
#main-header {
    background-color: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--text);
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.2s ease;
}

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

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

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

/* Mobile Menu Toggle */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Header scroll effect */
#main-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 0;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding: 0.5rem 1rem;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 500px;
    }
    
    .dropdown-toggle {
        justify-content: space-between;
        width: 100%;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .nav-open {
        overflow: hidden;
    }
    
    .nav-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
}
/* Age Disclaimer Banner */
.age-disclaimer-banner {
    background-color: #ffa23c;
    color: white;
    text-align: center;
    padding: 0.75rem 0;
    font-weight: 500;
    font-size: 1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(255, 110, 199, 0.1) 0%, rgba(110, 231, 255, 0.1) 100%);
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.hero h1 {
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
}

.subtitle {
    font-size: 1.25rem;
    color: var(--highlight);
    margin-bottom: var(--spacing-md);
    font-weight: 500;
}

.hero-text {
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
    font-size: 1.1rem;
}

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

/* Games Section */
.games-section {
    padding: 5rem 0;
    background-color: #fff;
    position: relative;
}

.games-section .container > h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: #2d3748;
    position: relative;
    padding-bottom: 1rem;
}

.games-section .container > h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary);
}

.game-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.game-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #edf2f7;
    position: relative;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #edf2f7;
}

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

.game-card h3 {
    color: #2d3748;
    font-size: 1.375rem;
    margin: 0 0 1rem;
    padding: 0;
}

.game-card .btn {
    margin-top: auto;
    width: 100%;
    text-align: center;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    background: var(--primary);
    color: white;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.game-card .btn:hover {
    background: #e63e99;
}

.game-disclaimer {
    text-align: center;
    font-size: 0.9rem;
    color: #718096;
    max-width: 800px;
    margin: 2rem auto 0;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    line-height: 1.6;
}

.game-disclaimer p {
    margin: 0 0 1rem;
}

.game-disclaimer p:last-child {
    margin-bottom: 0;
}

/* Disclaimer Section */
#main-footer {
    background-color: #0f172a; /* Dark blue-gray background */
    color: #e2e8f0; /* Light gray text */
    padding: 3.5rem 0 1.5rem;
    font-size: 0.9rem;
    border-top: 1px solid #1e293b; /* Slightly lighter border */

}

.disclaimer-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid #edf2f7;
}

.disclaimer-content h3 {
    color: #2d3748;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.disclaimer-text {
    color: #4a5568;
    line-height: 1.7;
}

.disclaimer-text p {
    margin-bottom: 1.25rem;
}

.disclaimer-text a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.disclaimer-text a:hover {
    text-decoration: underline;
}

/* Disclaimer Banner */
.disclaimer-banner {
    background-color: #FFF3CD;
    border-left: 4px solid #FFC107;
    color: #856404;
    padding: 12px 0;
    margin: 1rem 0 2rem 0;
    border-radius: 4px;
    text-align: center;
}

.disclaimer-banner p {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
}

.disclaimer-banner strong {
    color: #856404;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.features .container > h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: #2d3748;
    position: relative;
    padding-bottom: 1rem;
}

.features .container > h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.feature-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #edf2f7;
    position: relative;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px;
    z-index: -1;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03), 
                0 2px 4px -1px rgba(0, 0, 0, 0.02);
}

.feature-card h3 {
    color: #2d3748;
    margin: 1.5rem 0 1rem;
    font-size: 1.375rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.feature-card h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--primary);
    opacity: 0.7;
}

.feature-card p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1.05rem;
    margin: 0 auto;
    max-width: 280px;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #fff;
    margin: 0 auto;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 
                0 2px 4px -1px rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 1;
    text-align: center;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    z-index: -1;
    opacity: 0.1;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

/* How It Works */
.how-it-works {
    background-color: #f8fafc;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.how-it-works .container > h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: #2d3748;
    position: relative;
    padding-bottom: 1rem;
}

.how-it-works .container > h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.step {
    text-align: center;
    padding: 2.5rem 2rem;
    background: #fff;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03), 
                0 2px 4px -1px rgba(0, 0, 0, 0.02);
    border: 1px solid #edf2f7;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    color: var(--primary);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
    border: 2px solid var(--primary);
    text-align: center;
    line-height: 60px;
}

.step-number::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    z-index: -1;
    opacity: 0.1;
}

.step h3 {
    color: #2d3748;
    font-size: 1.375rem;
    margin: 0 0 1rem;
    position: relative;
    display: inline-block;
}

.step h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--primary);
    opacity: 0.7;
}

.step p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1.05rem;
    margin: 0;
}

/* Game Page */
.game-iframe {
    width: 100%;
    height: calc(100vh - 200px);
    min-height: 600px;
    border: none;
    margin: var(--spacing-md) 0;
}

/* Footer */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-logo {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.footer-tagline {
    color: #94a3b8; /* Lighter gray for better contrast */
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 280px;
    opacity: 0.9;
}

.footer-links h4 {
    color: #ffffff;
    margin-bottom: 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    color: #e2e8f0; /* Light gray links */
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    display: inline-block;
    position: relative;
    opacity: 0.9;
}

.footer-links a:hover {
    color: #ffffff; /* Brighter white on hover */
    transform: translateX(3px);
    opacity: 1;
}

/* Newsletter Styles */
.footer-newsletter {
    margin-bottom: 1.5rem;
}

.footer-newsletter h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.newsletter-desc {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

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

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

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

.btn-subscribe {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 0.7rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.2s ease;
}

.btn-subscribe:hover {
    background-color: #e94d9f;
}

.footer-legal {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #d4c3c3;
}

.age-warning {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.age-warning svg {
    color: #ff6b6b;
}

.age-warning span {
    font-weight: 500;
    color: #ffffff;
}

.copyright {
    color: #888;
    font-size: 0.85rem;
    margin: 0.5rem 0;
}

.disclaimer {
    color: #666;
    font-size: 0.8rem;
    margin: 0.5rem 0 0;
    line-height: 1.5;
}

/* About Page Styles */
.page-hero {
    background-color: #f8fafc;
    padding: 5rem 0 4rem;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.page-hero h1 {
    font-size: 2.75rem;
    color: #0f172a;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #475569;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.6;
}

.about-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 2rem;
    color: #0f172a;
    margin: 3.5rem 0 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.75rem;
}

.about-text h2:first-child {
    margin-top: 0;
}

.about-text h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #0f172a;
    margin-top: 1rem;
    opacity: 0.8;
}

.about-text p {
    color: #334155;
    line-height: 1.8;
    margin-bottom: 1.75rem;
    font-size: 1.05rem;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.value-item {
    background-color: #f8fafc;
    padding: 1.75rem;
    border-left: 3px solid #e2e8f0;
    border-radius: 0 6px 6px 0;
    transition: all 0.2s ease;
}

.value-item:hover {
    background-color: #f1f5f9;
    transform: translateX(5px);
}

.value-item h3 {
    color: #0f172a;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.value-item p {
    color: #475569;
    font-size: 1rem;
    margin: 0;
    line-height: 1.7;
}

.text-link {
    color: #0f172a;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 2px solid #e2e8f0;
    transition: all 0.2s ease;
}

.text-link:hover {
    color: #0f172a;
    border-bottom-color: #0f172a;
}

/* Legal Pages (Terms, Privacy, etc.) */
.legal-content {
    padding: 3rem 0 5rem;
    background-color: #ffffff;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
    color: #334155;
    line-height: 1.8;
}

.legal-text h2 {
    color: #0f172a;
    font-size: 1.5rem;
    margin: 2.5rem 0 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.legal-text h3 {
    color: #0f172a;
    font-size: 1.25rem;
    margin: 2rem 0 1rem;
}

.legal-text p {
    margin-bottom: 1.25rem;
}

.legal-text ul {
    margin: 1rem 0 1.5rem 1.5rem;
    padding: 0;
}

.legal-text li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.25rem;
}

.legal-text li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #0f172a;
}

.legal-text a {
    color: #0f172a;
    text-decoration: none;
    border-bottom: 1px solid #cbd5e1;
}

.legal-text a:hover {
    border-bottom-color: #0f172a;
}

/* Contact Page Styles */
.contact-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 3rem;
    margin-bottom: 5rem;
}

.contact-info h2,
.contact-form-container h2,
.faq-section h2 {
    font-size: 1.8rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.contact-info h2:after,
.contact-form-container h2:after,
.faq-section h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #0f172a;
    margin-top: 0.75rem;
    opacity: 0.8;
}

.contact-info p {
    color: #334155;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-methods {
    margin: 2.5rem 0;
}

.contact-method {
    margin-bottom: 2rem;
}

.contact-method h3 {
    color: #0f172a;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-method p {
    margin: 0.25rem 0;
    color: #475569;
}

.social-links h3 {
    color: #0f172a;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

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

.social-icon {
    color: #0f172a;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-size: 0.9rem;
}

.contact-form-container {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

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

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

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 1rem;
    color: #334155;
    background-color: #ffffff;
}

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

.btn-submit {
    background-color: #0f172a;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
}

.faq-section {
    padding: 4rem 0;
    border-top: 1px solid #e2e8f0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    background-color: #f8fafc;
    padding: 1.5rem;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

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

.faq-item p {
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 4rem 0 3rem;
    }
    
    .page-hero h1 {
        font-size: 2.25rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .about-text h2 {
        font-size: 1.75rem;
        margin: 3rem 0 1.5rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem 1.5rem;
    }
    
    .footer-newsletter {
        grid-column: 1 / -1;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        margin: 0 auto 1rem;
    }
    
    .footer-tagline {
        margin: 0 auto;
    }
    
    .footer-legal {
        text-align: left;
        padding-left: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links h4 {
        margin-bottom: 1rem;
    }
    
    .footer-legal {
        text-align: center;
        padding-left: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .game-cards, .feature-grid, .steps {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }