/* 90 Club Game - Main Stylesheet */
/* Updated with atmospheric blue-teal palette */

:root {
    /* New Color Palette - Strictly these four colors only */
    --deep-night-blue: #03001C;    /* Main background */
    --rich-indigo: #301E67;        /* Overlays, sections, cards */
    --soft-teal: #5B8FB9;          /* Primary CTAs and highlights */
    --muted-aqua: #6EADA8;         /* Accents, secondary buttons, UI details */
    
    /* Text and UI Colors */
    --text-white: #FFFFFF;         /* All text must be white for contrast */
    --text-white-transparent: rgba(255, 255, 255, 0.9);
    --text-white-muted: rgba(255, 255, 255, 0.7);
    
    /* Hover/Focus Variations (subtle variations within palette) */
    --soft-teal-hover: #4A7BA3;    /* Slightly darker teal for hover */
    --muted-aqua-hover: #5D9A95;   /* Slightly darker aqua for hover */
    --rich-indigo-hover: #2A1A5A;  /* Slightly darker indigo for hover */
    
    /* Shadows and Borders */
    --shadow-light: 0 2px 8px rgba(3, 0, 28, 0.3);
    --shadow-medium: 0 4px 16px rgba(3, 0, 28, 0.4);
    --shadow-heavy: 0 8px 32px rgba(3, 0, 28, 0.5);
    --border-color: rgba(110, 173, 168, 0.3);
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Account for fixed header */
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-white);
    background-color: var(--deep-night-blue);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-white);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.1rem; }

p {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

a {
    color: var(--soft-teal);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--soft-teal-hover);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation Container */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    width: 50px;
    height: 50px;
    border-radius: 8px;
}

.nav-logo h2 {
    color: var(--text-white);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
    align-items: center;
}

.nav-item {
    list-style: none;
}

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--soft-teal);
    background: rgba(91, 143, 185, 0.1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--soft-teal);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.login-btn {
    background: linear-gradient(135deg, var(--soft-teal) 0%, var(--muted-aqua) 100%);
    color: var(--deep-night-blue);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    background: linear-gradient(135deg, var(--soft-teal-hover) 0%, var(--muted-aqua-hover) 100%);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--deep-night-blue) 0%, var(--rich-indigo) 50%, var(--deep-night-blue) 100%);
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--text-white) 0%, var(--muted-aqua) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-white-muted);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Floating Decorative Elements */
.floating-element {
    position: absolute;
    font-size: 3rem;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 30%;
    right: 15%;
    animation-delay: 1.5s;
}

.floating-element:nth-child(3) {
    bottom: 30%;
    left: 15%;
    animation-delay: 3s;
}

.floating-element:nth-child(4) {
    bottom: 20%;
    right: 10%;
    animation-delay: 4.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(-10px) rotate(-5deg);
    }
    75% {
        transform: translateY(-15px) rotate(3deg);
    }
}

/* What Is Section */
.what-is-section {
    padding: 6rem 0;
    background-color: var(--rich-indigo);
}

.what-is-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-white);
    font-size: 2.5rem;
}

.what-is-section > p {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-white-muted);
    font-size: 1.2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-highlight h3 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--soft-teal);
    font-size: 1.5rem;
}

/* Gameplay Section */
.gameplay-section {
    padding: 6rem 0;
    background-color: var(--deep-night-blue);
}

.gameplay-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-white);
    font-size: 2.5rem;
}

.gameplay-section > p {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-white-muted);
    font-size: 1.2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gameplay-steps h3 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--soft-teal);
    font-size: 1.8rem;
}

/* Game Modes Section */
.game-modes-section {
    padding: 6rem 0;
    background-color: var(--rich-indigo);
}

.game-modes-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-white);
    font-size: 2.5rem;
}

.game-modes-section > p {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-white-muted);
    font-size: 1.2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.game-modes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.game-mode-card {
    background: linear-gradient(135deg, var(--deep-night-blue) 0%, var(--rich-indigo) 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.game-mode-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.mode-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--soft-teal) 0%, var(--muted-aqua) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--deep-night-blue);
}

.game-mode-card h3 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.game-mode-card p {
    color: var(--text-white-muted);
}

/* Popularity Section */
.popularity-section {
    padding: 6rem 0;
    background-color: var(--deep-night-blue);
}

.popularity-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-white);
    font-size: 2.5rem;
}

.popularity-section > p {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-white-muted);
    font-size: 1.2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.popularity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.popularity-card {
    background: linear-gradient(135deg, var(--rich-indigo) 0%, var(--deep-night-blue) 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.popularity-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.popularity-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--muted-aqua) 0%, var(--soft-teal) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--deep-night-blue);
}

.popularity-card h3 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.popularity-card p {
    color: var(--text-white-muted);
}

.popularity-summary {
    text-align: center;
    color: var(--text-white);
    font-size: 1.2rem;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

/* Winning Tactics Section */
.winning-tactics-section {
    padding: 6rem 0;
    background-color: var(--rich-indigo);
}

.winning-tactics-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-white);
    font-size: 2.5rem;
}

.winning-tactics-section > p {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-white-muted);
    font-size: 1.2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.tactics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.tactic-card {
    background: linear-gradient(135deg, var(--deep-night-blue) 0%, var(--rich-indigo) 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.tactic-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.tactic-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--soft-teal) 0%, var(--muted-aqua) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--deep-night-blue);
}

.tactic-card h3 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.tactic-card p {
    color: var(--text-white-muted);
}

/* Mistakes Section */
.mistakes-section {
    padding: 6rem 0;
    background-color: var(--deep-night-blue);
}

.mistakes-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-white);
    font-size: 2.5rem;
}

.mistakes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.mistake-card {
    background: linear-gradient(135deg, var(--rich-indigo) 0%, var(--deep-night-blue) 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.mistake-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.mistake-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--muted-aqua) 0%, var(--soft-teal) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--deep-night-blue);
}

.mistake-card h3 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.mistake-card p {
    color: var(--text-white-muted);
}

/* Rewards Section */
.rewards-section {
    padding: 6rem 0;
    background-color: var(--rich-indigo);
}

.rewards-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-white);
    font-size: 2.5rem;
}

.rewards-section > p {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-white-muted);
    font-size: 1.2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.rewards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.reward-card {
    background: linear-gradient(135deg, var(--deep-night-blue) 0%, var(--rich-indigo) 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.reward-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.reward-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--soft-teal) 0%, var(--muted-aqua) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--deep-night-blue);
}

.reward-card h3 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.reward-card p {
    color: var(--text-white-muted);
}

/* Safety Section */
.safety-section {
    padding: 6rem 0;
    background-color: var(--deep-night-blue);
}

.safety-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-white);
    font-size: 2.5rem;
}

.safety-section > p {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-white-muted);
    font-size: 1.2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.safety-card {
    background: linear-gradient(135deg, var(--rich-indigo) 0%, var(--deep-night-blue) 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.safety-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.safety-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--muted-aqua) 0%, var(--soft-teal) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--deep-night-blue);
}

.safety-card h3 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.safety-card p {
    color: var(--text-white-muted);
}

/* Mobile Section */
.mobile-section {
    padding: 6rem 0;
    background-color: var(--rich-indigo);
}

.mobile-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-white);
    font-size: 2.5rem;
}

.mobile-section > p {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-white-muted);
    font-size: 1.2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mobile-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mobile-feature-card {
    background: linear-gradient(135deg, var(--deep-night-blue) 0%, var(--rich-indigo) 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.mobile-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.mobile-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--soft-teal) 0%, var(--muted-aqua) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--deep-night-blue);
}

.mobile-feature-card h3 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.mobile-feature-card p {
    color: var(--text-white-muted);
}

/* FAQ Preview Section */
.faq-preview-section {
    padding: 6rem 0;
    background-color: var(--deep-night-blue);
}

.faq-preview-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-white);
    font-size: 2.5rem;
}

.faq-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.faq-preview-card {
    background: linear-gradient(135deg, var(--rich-indigo) 0%, var(--deep-night-blue) 100%);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.faq-preview-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.faq-preview-card h3 {
    color: var(--soft-teal);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-preview-card p {
    color: var(--text-white-muted);
}

.faq-cta {
    text-align: center;
}

/* Beginners Guide Section */
.beginners-guide-section {
    padding: 6rem 0;
    background-color: var(--rich-indigo);
}

.beginners-guide-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-white);
    font-size: 2.5rem;
}

.beginners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.beginner-tip {
    background: linear-gradient(135deg, var(--deep-night-blue) 0%, var(--rich-indigo) 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.beginner-tip:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.tip-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--muted-aqua) 0%, var(--soft-teal) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--deep-night-blue);
}

.beginner-tip p {
    color: var(--text-white-muted);
    font-size: 1.1rem;
}

/* Evolution Section */
.evolution-section {
    padding: 6rem 0;
    background-color: var(--deep-night-blue);
}

.evolution-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-white);
    font-size: 2.5rem;
}

.evolution-section p {
    text-align: center;
    color: var(--text-white-muted);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Summary Section */
.summary-section {
    padding: 6rem 0;
    background-color: var(--rich-indigo);
}

.summary-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-white);
    font-size: 2.5rem;
}

.summary-section p {
    text-align: center;
    color: var(--text-white-muted);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    line-height: 1.7;
}

.final-note {
    color: var(--soft-teal) !important;
    font-style: italic;
    font-size: 1.1rem !important;
}

.final-cta {
    text-align: center;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--soft-teal) 0%, var(--muted-aqua) 100%);
    color: var(--deep-night-blue);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
    font-family: inherit;
    line-height: 1.4;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    background: linear-gradient(135deg, var(--soft-teal-hover) 0%, var(--muted-aqua-hover) 100%);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background: linear-gradient(135deg, var(--soft-teal) 0%, var(--muted-aqua) 100%);
    color: var(--deep-night-blue);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--soft-teal-hover) 0%, var(--muted-aqua-hover) 100%);
}

.btn-secondary {
    background: var(--muted-aqua);
    color: var(--deep-night-blue);
}

.btn-secondary:hover {
    background: var(--muted-aqua-hover);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border-color: var(--muted-aqua);
}

.btn-outline:hover {
    background: var(--muted-aqua);
    color: var(--deep-night-blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* Features Section */
.features {
    padding: 6rem 0;
    background-color: var(--rich-indigo);
}

.features h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, var(--deep-night-blue) 0%, var(--rich-indigo) 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--soft-teal) 0%, var(--muted-aqua) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--deep-night-blue);
}

.feature-card h3 {
    color: var(--text-white);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-white-muted);
}

/* Registration Section */
.registration-section {
    padding: 6rem 0;
    background-color: var(--deep-night-blue);
}

.registration-section h3 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-white);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.step {
    background: linear-gradient(135deg, var(--rich-indigo) 0%, var(--deep-night-blue) 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--soft-teal) 0%, var(--muted-aqua) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-night-blue);
    margin: 0 auto 1.5rem;
}

.step h4 {
    color: var(--text-white);
    margin-bottom: 1rem;
}

.step p {
    color: var(--text-white-muted);
}

.cta-buttons {
    text-align: center;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Game Categories */
.game-categories {
    padding: 6rem 0;
    background-color: var(--rich-indigo);
}

.game-categories h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    background: linear-gradient(135deg, var(--deep-night-blue) 0%, var(--rich-indigo) 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
    background: linear-gradient(135deg, var(--rich-indigo) 0%, var(--deep-night-blue) 100%);
}

.category-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--muted-aqua) 0%, var(--soft-teal) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--deep-night-blue);
}

.category-card h3 {
    color: var(--text-white);
    margin-bottom: 1rem;
}

.category-card p {
    color: var(--text-white-muted);
}

/* How To Section */
.how-to-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--deep-night-blue) 0%, var(--rich-indigo) 100%);
    position: relative;
    overflow: hidden;
}

.how-to-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%236EADA8" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%235B8FB9" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%236EADA8" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.how-to-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.how-to-card {
    background: linear-gradient(135deg, var(--rich-indigo) 0%, var(--deep-night-blue) 100%);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-heavy);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.how-to-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--soft-teal) 0%, var(--muted-aqua) 100%);
}

.how-to-card h2 {
    color: var(--text-white);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.3;
}

.how-to-intro {
    color: var(--text-white-muted);
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.step-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
    box-shadow: var(--shadow-medium);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--soft-teal) 0%, var(--muted-aqua) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--deep-night-blue);
    flex-shrink: 0;
    box-shadow: var(--shadow-medium);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    color: var(--text-white);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--soft-teal);
    color: var(--deep-night-blue);
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content p {
    color: var(--text-white-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.register-link {
    display: inline-block;
    color: var(--soft-teal);
    text-decoration: none;
    font-weight: 600;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(110, 173, 168, 0.1);
    border-radius: 6px;
    border: 1px solid var(--soft-teal);
    transition: var(--transition);
}

.register-link:hover {
    background: var(--soft-teal);
    color: var(--deep-night-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.password-recovery {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(110, 173, 168, 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--soft-teal);
}

.password-recovery p {
    color: var(--text-white-muted);
    margin: 0;
    line-height: 1.6;
}

.password-recovery a {
    color: var(--soft-teal);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.password-recovery a:hover {
    color: var(--muted-aqua);
    text-decoration: underline;
}

/* Responsive Design for How-to Section */
@media (max-width: 768px) {
    .how-to-section {
        padding: 4rem 0;
    }
    
    .how-to-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .how-to-card {
        padding: 2rem;
    }
    
    .how-to-card h2 {
        font-size: 1.8rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-icon {
        margin: 0 auto;
    }
    
    .step-content h3 {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .how-to-section {
        padding: 3rem 0;
    }
    
    .how-to-card {
        padding: 1.5rem;
    }
    
    .how-to-card h2 {
        font-size: 1.6rem;
    }
    
    .step-item {
        padding: 1rem;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 0.95rem;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--deep-night-blue) 0%, var(--rich-indigo) 100%);
    color: var(--text-white);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--soft-teal);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-section p {
    color: var(--text-white-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: var(--text-white-muted);
    text-decoration: none;
    transition: var(--transition);
    line-height: 1.6;
}

.footer-section a:hover {
    color: var(--soft-teal);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--soft-teal);
    color: var(--deep-night-blue);
    border-radius: 50%;
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--soft-teal-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: var(--deep-night-blue);
    color: var(--text-white);
    font-size: 1rem;
}

.newsletter-form button {
    padding: 0.75rem 1rem;
    background: var(--soft-teal);
    color: var(--deep-night-blue);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--soft-teal-hover);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-white-muted);
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, var(--deep-night-blue) 0%, var(--rich-indigo) 100%);
    padding: 6rem 0 4rem;
    text-align: center;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%236EADA8" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%235B8FB9" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%236EADA8" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.page-header h1 {
    color: var(--text-white);
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.page-header p {
    color: var(--text-white-muted);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.3rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Main Content Container */
.main-content {
    background-color: var(--deep-night-blue);
    min-height: calc(100vh - 80px);
    margin-top: 80px;
}

/* Enhanced About Page Styles */
.about-content {
    padding: 4rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
    margin: 4rem 0;
    align-items: center;
}

.about-text {
    background: linear-gradient(135deg, var(--rich-indigo) 0%, var(--deep-night-blue) 100%);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-heavy);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.about-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--soft-teal), var(--muted-aqua));
}

.about-text h2 {
    color: var(--text-white);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 600;
}

.about-text p {
    color: var(--text-white-muted);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.about-image {
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-heavy);
    border: 3px solid var(--border-color);
}

/* Enhanced Mission Section */
.mission-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--rich-indigo) 0%, var(--deep-night-blue) 100%);
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%235B8FB9" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.mission-section h2 {
    text-align: center;
    color: var(--text-white);
    margin-bottom: 4rem;
    font-size: 3rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.mission-section > p {
    text-align: center;
    color: var(--text-white-muted);
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.3rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.mission-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.mission-point {
    background: linear-gradient(135deg, var(--deep-night-blue) 0%, var(--rich-indigo) 100%);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-heavy);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.mission-point::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--soft-teal), var(--muted-aqua));
}

.mission-point:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.mission-point h3 {
    color: var(--soft-teal);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.mission-point p {
    color: var(--text-white-muted);
    line-height: 1.6;
}

/* Enhanced Values Section */
.values-section {
    padding: 6rem 0;
    background-color: var(--deep-night-blue);
    margin: 4rem 0;
}

.values-section h2 {
    text-align: center;
    color: var(--text-white);
    margin-bottom: 4rem;
    font-size: 3rem;
    font-weight: 700;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.value-card {
    background: linear-gradient(135deg, var(--rich-indigo) 0%, var(--deep-night-blue) 100%);
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-heavy);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--muted-aqua), var(--soft-teal));
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.value-card h3 {
    color: var(--muted-aqua);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.value-card p {
    color: var(--text-white-muted);
    line-height: 1.6;
}

/* Enhanced Team Section */
.team-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--rich-indigo) 0%, var(--deep-night-blue) 100%);
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="25" height="25" patternUnits="userSpaceOnUse"><path d="M 25 0 L 0 0 0 25" fill="none" stroke="%236EADA8" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.team-section h2 {
    text-align: center;
    color: var(--text-white);
    margin-bottom: 4rem;
    font-size: 3rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.team-section > p {
    text-align: center;
    color: var(--text-white-muted);
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.3rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.team-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.team-highlight {
    background: linear-gradient(135deg, var(--deep-night-blue) 0%, var(--rich-indigo) 100%);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-heavy);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.team-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--soft-teal), var(--muted-aqua));
}

.team-highlight:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.team-highlight h3 {
    color: var(--soft-teal);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.team-highlight p {
    color: var(--text-white-muted);
    line-height: 1.6;
}

/* Enhanced CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--deep-night-blue) 0%, var(--rich-indigo) 100%);
    margin: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%235B8FB9" opacity="0.2"/><circle cx="10" cy="10" r="0.5" fill="%236EADA8" opacity="0.2"/><circle cx="40" cy="40" r="0.8" fill="%235B8FB9" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.3;
}

.cta-section h2 {
    color: var(--text-white);
    margin-bottom: 2rem;
    font-size: 3rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.cta-section p {
    color: var(--text-white-muted);
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.3rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* Enhanced FAQ Page Styles */
.faq-content {
    padding: 4rem 0;
    background-color: var(--deep-night-blue);
}

.faq-categories {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 4rem;
    background: linear-gradient(135deg, var(--rich-indigo) 0%, var(--deep-night-blue) 100%);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-heavy);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.faq-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--soft-teal), var(--muted-aqua));
}

.faq-category h2 {
    color: var(--text-white);
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    margin-top: 0;
    line-height: 1.3;
    text-align: center;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: var(--deep-night-blue);
    margin-bottom: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item:hover {
    box-shadow: var(--shadow-heavy);
    transform: translateY(-2px);
    border-color: var(--soft-teal);
}

.faq-item h3 {
    background: var(--rich-indigo);
    color: var(--text-white);
    margin: 0;
    padding: 1.5rem 2rem;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.faq-item h3:hover {
    background: var(--soft-teal);
    color: var(--deep-night-blue);
}

.faq-item h3::after {
    content: '▼';
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    transition: var(--transition);
    color: inherit;
}

.faq-item.active h3::after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    padding: 2rem;
    color: var(--text-white);
    background: var(--deep-night-blue);
    line-height: 1.7;
    font-size: 1.1rem;
    display: none;
}

.faq-answer.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

.faq-answer p {
    margin-bottom: 1rem;
    color: var(--text-white);
    font-size: 1.1rem;
    line-height: 1.7;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* Enhanced Contact Us Page Styles */
.contact-content {
    padding: 4rem 0;
    background-color: var(--deep-night-blue);
}

.contact-sections {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-section {
    background: linear-gradient(135deg, var(--rich-indigo) 0%, var(--deep-night-blue) 100%);
    padding: 3rem;
    border-radius: 16px;
    margin-bottom: 4rem;
    box-shadow: var(--shadow-heavy);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--soft-teal), var(--muted-aqua));
}

.contact-form-section h2 {
    color: var(--text-white);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 0;
    line-height: 1.3;
    text-align: center;
}

.contact-form-section p {
    color: var(--text-white-muted);
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form .form-group {
    margin-bottom: 2rem;
}

.contact-form label {
    display: block;
    color: var(--soft-teal);
    margin-bottom: 0.75rem;
    font-weight: 500;
    font-size: 1.1rem;
    line-height: 1.4;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: var(--deep-night-blue);
    color: var(--text-white);
    font-size: 1.1rem;
    line-height: 1.5;
    transition: var(--transition);
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--soft-teal);
    box-shadow: 0 0 0 3px rgba(91, 143, 185, 0.2);
    background: var(--rich-indigo);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-white-muted);
    opacity: 0.7;
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
    line-height: 1.6;
}

.contact-form button {
    background: linear-gradient(135deg, var(--soft-teal) 0%, var(--muted-aqua) 100%);
    color: var(--deep-night-blue);
    border: none;
    padding: 1.25rem 3rem;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    font-family: inherit;
    line-height: 1.4;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
    background: linear-gradient(135deg, var(--soft-teal-hover) 0%, var(--muted-aqua-hover) 100%);
}

.contact-form button:active {
    transform: translateY(0);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group label {
    margin-bottom: 0;
    line-height: 1.5;
    color: var(--text-white-muted);
}

.contact-details {
    background: linear-gradient(135deg, var(--rich-indigo) 0%, var(--deep-night-blue) 100%);
    padding: 3rem;
    border-radius: 16px;
    margin-bottom: 4rem;
    box-shadow: var(--shadow-heavy);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.contact-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--soft-teal), var(--muted-aqua));
}

.contact-details h2 {
    color: var(--text-white);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    margin-top: 0;
    line-height: 1.3;
    text-align: center;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-detail {
    background: var(--deep-night-blue);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.contact-detail:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    border-color: var(--soft-teal);
}

.contact-detail h3 {
    color: var(--soft-teal);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    margin-top: 0;
    line-height: 1.3;
}

.contact-detail p {
    color: var(--text-white);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-detail p:last-child {
    margin-bottom: 0;
}

.contact-detail strong {
    color: var(--muted-aqua);
    font-weight: 600;
}

.support-channels {
    background: linear-gradient(135deg, var(--rich-indigo) 0%, var(--deep-night-blue) 100%);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-heavy);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.support-channels::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--soft-teal), var(--muted-aqua));
}

.support-channels h2 {
    color: var(--text-white);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 0;
    line-height: 1.3;
    text-align: center;
}

.support-channels p {
    color: var(--text-white-muted);
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.support-channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.support-channel {
    background: var(--deep-night-blue);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.support-channel:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    border-color: var(--soft-teal);
}

.support-channel h3 {
    color: var(--soft-teal);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    margin-top: 0;
    line-height: 1.3;
}

.support-channel p {
    color: var(--text-white-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: left;
}

.support-channel .btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: inherit;
    line-height: 1.4;
}

.btn-secondary {
    background: var(--muted-aqua);
    color: var(--deep-night-blue);
}

.btn-secondary:hover {
    background: var(--muted-aqua-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Responsive Design for FAQ and Contact Pages */
@media (max-width: 768px) {
    .faq-content,
    .contact-content {
        padding: 2rem 0;
    }
    
    .faq-category,
    .contact-form-section,
    .contact-details,
    .support-channels {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .faq-category h2,
    .contact-form-section h2,
    .contact-details h2,
    .support-channels h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .faq-item h3 {
        padding: 1.25rem 1.5rem;
        font-size: 1.1rem;
    }
    
    .faq-answer {
        padding: 1.5rem;
    }
    
    .faq-answer p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .contact-form button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .contact-details-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .support-channels-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-detail,
    .support-channel {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .faq-category,
    .contact-form-section,
    .contact-details,
    .support-channels {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .faq-category h2,
    .contact-form-section h2,
    .contact-details h2,
    .support-channels h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .faq-item h3 {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 1rem;
    }
    
    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        padding: 0.875rem;
        font-size: 1rem;
    }
    
    .contact-form button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .contact-detail,
    .support-channel {
        padding: 1.25rem;
    }
}

/* Animation for FAQ answers */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced typography for better readability */
.faq-content,
.contact-content {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.faq-content h1,
.faq-content h2,
.faq-content h3,
.contact-content h1,
.contact-content h2,
.contact-content h3 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-white);
}

.faq-content p,
.contact-content p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.faq-content p:last-child,
.contact-content p:last-child {
    margin-bottom: 0;
}

/* Enhanced spacing for better visual hierarchy */
.faq-category + .faq-category {
    margin-top: 3rem;
}

.contact-form-section + .contact-details {
    margin-top: 3rem;
}

.contact-details + .support-channels {
    margin-top: 3rem;
}

/* Improved focus states for accessibility */
.faq-item h3:focus,
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus,
.contact-form button:focus {
    outline: 2px solid var(--soft-teal);
    outline-offset: 2px;
}

/* Enhanced hover states */
.faq-item:hover h3 {
    background: var(--soft-teal);
    color: var(--deep-night-blue);
}

.contact-detail:hover h3,
.support-channel:hover h3 {
    color: var(--text-white);
}

/* Enhanced Privacy, Terms, Disclaimer Pages */
.privacy-section,
.terms-section,
.disclaimer-section {
    background: linear-gradient(135deg, var(--deep-night-blue) 0%, var(--rich-indigo) 100%);
    padding: 3rem;
    border-radius: 16px;
    margin: 3rem 0;
    box-shadow: var(--shadow-heavy);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.privacy-section::before,
.terms-section::before,
.disclaimer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--soft-teal), var(--muted-aqua));
}

.privacy-section h2,
.terms-section h2,
.disclaimer-section h2 {
    color: var(--text-white);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
}

.privacy-section h3,
.terms-section h3,
.disclaimer-section h3 {
    color: var(--soft-teal);
    margin: 2.5rem 0 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.privacy-section p,
.terms-section p,
.disclaimer-section p {
    color: var(--text-white-muted);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.privacy-section ul,
.terms-section ul,
.disclaimer-section ul {
    color: var(--text-white-muted);
    margin: 1.5rem 0;
    padding-left: 2.5rem;
    line-height: 1.7;
}

.privacy-section li,
.terms-section li,
.disclaimer-section li {
    margin-bottom: 0.75rem;
}

.privacy-section strong,
.terms-section strong,
.disclaimer-section strong {
    color: var(--soft-teal);
    font-weight: 600;
}

/* Enhanced Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
    margin: 4rem 0;
}

.contact-info {
    background: linear-gradient(135deg, var(--rich-indigo) 0%, var(--deep-night-blue) 100%);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-heavy);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--muted-aqua), var(--soft-teal));
}

.contact-info h3 {
    color: var(--text-white);
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--deep-night-blue) 0%, var(--rich-indigo) 100%);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-medium);
}

.contact-item i {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--soft-teal) 0%, var(--muted-aqua) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--deep-night-blue);
    flex-shrink: 0;
    box-shadow: var(--shadow-medium);
}

.contact-item h4 {
    color: var(--soft-teal);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-item p {
    color: var(--text-white-muted);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.5;
}

.contact-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Enhanced 404 Error Page */
.error-section {
    text-align: center;
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--deep-night-blue) 0%, var(--rich-indigo) 100%);
    position: relative;
    overflow: hidden;
}

.error-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="error-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="%235B8FB9" opacity="0.1"/><circle cx="60" cy="60" r="1" fill="%236EADA8" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23error-pattern)"/></svg>');
    opacity: 0.3;
}

.error-section h1 {
    font-size: 8rem;
    color: var(--soft-teal);
    margin-bottom: 2rem;
    font-weight: 900;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.error-section h2 {
    color: var(--text-white);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.error-section p {
    color: var(--text-white-muted);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.2rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.error-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* Enhanced smooth scrolling for older browsers */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
    
    /* Custom smooth scrolling for elements */
    .smooth-scroll {
        scroll-behavior: smooth;
    }
}

/* Enhanced focus styles for accessibility */
.nav-link:focus-visible,
.footer-section a:focus-visible {
    outline: 2px solid var(--soft-teal);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Loading state styles */
.nav-link.loading,
.footer-section a.loading {
    opacity: 0.7;
    pointer-events: none;
    position: relative;
}

.nav-link.loading::after,
.footer-section a.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -20px;
    width: 16px;
    height: 16px;
    margin-top: -8px;
    border: 2px solid var(--soft-teal);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Enhanced scroll target highlighting */
.scroll-target {
    transition: all 0.3s ease;
}

.scroll-target.highlighted {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(91, 143, 185, 0.3);
    background: linear-gradient(135deg, var(--rich-indigo) 0%, var(--rich-indigo-hover) 100%);
}

/* Smooth scroll indicator */
.smooth-scroll-indicator {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: var(--rich-indigo);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.5rem;
    opacity: 0;
    transition: var(--transition);
    z-index: 999;
}

.smooth-scroll-indicator.visible {
    opacity: 1;
}

.smooth-scroll-indicator:hover {
    background: var(--rich-indigo-hover);
    transform: translateY(-50%) scale(1.1);
}

/* Scroll to top button */
.scroll-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--soft-teal);
    border: none;
    border-radius: 50%;
    color: var(--text-white);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 1000;
    box-shadow: var(--shadow-medium);
}

.scroll-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top-btn:hover {
    background: var(--soft-teal-hover);
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.scroll-to-top-btn:focus {
    outline: 2px solid var(--text-white);
    outline-offset: 2px;
}

/* Enhanced section transitions for smooth scrolling */
section[id] {
    scroll-margin-top: 100px; /* Ensure proper scroll positioning */
}

/* Smooth scroll progress indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--soft-teal), var(--muted-aqua));
    z-index: 1001;
    transition: width 0.1s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .features-grid,
    .steps-container,
    .categories-grid,
    .about-grid,
    .values-grid,
    .contact-grid,
    .game-modes-grid,
    .popularity-grid,
    .tactics-grid,
    .mistakes-grid,
    .rewards-grid,
    .safety-grid,
    .mobile-features-grid,
    .faq-preview-grid,
    .beginners-grid,
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .category-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .category-tab {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    /* How To Section Mobile */
    .how-to-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .how-to-card {
        padding: 1.5rem;
    }
    
    .how-to-card h3 {
        font-size: 1.5rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .step-icon {
        margin: 0 auto;
    }
    
    .step-text p {
        text-align: center;
    }
    
    /* New Sections Mobile */
    .what-is-section h2,
    .gameplay-section h2,
    .game-modes-section h2,
    .popularity-section h2,
    .winning-tactics-section h2,
    .mistakes-section h2,
    .rewards-section h2,
    .safety-section h2,
    .mobile-section h2,
    .faq-preview-section h2,
    .beginners-guide-section h2,
    .evolution-section h2,
    .summary-section h2,
    .games-section h2,
    .about-section h2,
    .features-section h2,
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .what-is-section > p,
    .gameplay-section > p,
    .game-modes-section > p,
    .popularity-section > p,
    .winning-tactics-section > p,
    .rewards-section > p,
    .safety-section > p,
    .mobile-section > p,
    .evolution-section p,
    .summary-section p,
    .games-section > p,
    .about-section > p,
    .features-section > p,
    .contact-section > p {
        font-size: 1.1rem;
    }
    
    .features-highlight h3,
    .gameplay-steps h3 {
        font-size: 1.3rem;
    }
    
    .game-mode-card,
    .popularity-card,
    .tactic-card,
    .mistake-card,
    .reward-card,
    .safety-card,
    .mobile-feature-card,
    .faq-preview-card,
    .beginner-tip,
    .game-card,
    .about-card,
    .feature-card {
        padding: 1.5rem;
    }
    
    .mode-icon,
    .popularity-icon,
    .tactic-icon,
    .mistake-icon,
    .reward-icon,
    .safety-icon,
    .mobile-icon,
    .tip-icon,
    .game-icon,
    .about-icon,
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .faq-preview-grid {
        grid-template-columns: 1fr;
    }
    
    .final-cta {
        flex-direction: column;
        align-items: center;
    }
    
    /* Floating Elements Mobile */
    .floating-element {
        font-size: 2rem;
    }
    
    /* Contact Section Mobile */
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .contact-item i {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 6rem 0 4rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .feature-card,
    .step,
    .category-card,
    .about-card,
    .value-item,
    .contact-info,
    .contact-form {
        padding: 1.5rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Styles */
.btn:focus,
.nav-links a:focus,
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: 2px solid var(--soft-teal);
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --border-color: var(--soft-teal);
        --shadow-light: 0 2px 8px rgba(91, 143, 185, 0.5);
        --shadow-medium: 0 4px 16px rgba(91, 143, 185, 0.6);
        --shadow-heavy: 0 8px 32px rgba(91, 143, 185, 0.7);
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hero-buttons,
    .cta-buttons,
    .footer {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero,
    .features,
    .registration-section,
    .game-categories {
        background: white;
        color: black;
    }
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: linear-gradient(135deg, var(--deep-night-blue) 0%, var(--rich-indigo) 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: var(--transition);
        gap: 1rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        width: 100%;
        text-align: center;
    }
    
    .nav-link {
        display: block;
        padding: 1rem;
        width: 100%;
        border-radius: 0;
    }
    
    .login-btn {
        margin-top: 1rem;
        width: 200px;
        text-align: center;
    }
}

/* Games Section */
.games-section {
    padding: 6rem 0;
    background-color: var(--deep-night-blue);
}

.games-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-white);
    font-size: 2.5rem;
}

.games-section > p {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-white-muted);
    font-size: 1.2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.game-card {
    background: linear-gradient(135deg, var(--rich-indigo) 0%, var(--deep-night-blue) 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.game-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--soft-teal) 0%, var(--muted-aqua) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--deep-night-blue);
}

.game-card h3 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.game-card p {
    color: var(--text-white-muted);
    margin-bottom: 1.5rem;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background-color: var(--rich-indigo);
}

.about-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-white);
    font-size: 2.5rem;
}

.about-section > p {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-white-muted);
    font-size: 1.2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.about-card {
    background: linear-gradient(135deg, var(--deep-night-blue) 0%, var(--rich-indigo) 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.about-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--muted-aqua) 0%, var(--soft-teal) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--deep-night-blue);
}

.about-card h3 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.about-card p {
    color: var(--text-white-muted);
}

.about-cta {
    text-align: center;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background-color: var(--deep-night-blue);
}

.features-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-white);
    font-size: 2.5rem;
}

.features-section > p {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-white-muted);
    font-size: 1.2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, var(--rich-indigo) 0%, var(--deep-night-blue) 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--soft-teal) 0%, var(--muted-aqua) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--deep-night-blue);
}

.feature-card h3 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-white-muted);
}

/* Category Tabs */
.category-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.category-tab {
    background: var(--rich-indigo);
    color: var(--text-white);
    border: 2px solid var(--border-color);
    padding: 1rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    min-width: 150px;
}

.category-tab.active,
.category-tab:hover {
    background: var(--soft-teal);
    color: var(--deep-night-blue);
    border-color: var(--soft-teal);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, var(--deep-night-blue) 0%, var(--rich-indigo) 100%);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-medium);
    border-bottom: 1px solid var(--border-color);
}

/* Header */
.header {
    position: relative;
    z-index: 1000;
}
