/* ========================= */
/* GLOBAL STYLES */
/* ========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e40af;
    --secondary-color: #0891b2;
    --accent-color: #f97316;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================= */
/* HEADER & NAVIGATION */
/* ========================= */
header {
    background-color: var(--bg-white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    flex: 0 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex: 1;
    margin: 0 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--primary-color);
}

.download-btn-mobile {
    display: none;
    padding: 0.5rem 1rem;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.download-btn-mobile:hover {
    background-color: #ea580c;
}

/* ========================= */
/* BUTTONS */
/* ========================= */
.cta-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 0.375rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-btn.primary {
    background-color: var(--accent-color);
    color: white;
}

.cta-btn.primary:hover {
    background-color: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

/* ========================= */
/* HERO SECTION */
/* ========================= */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.hero-subtext {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.page-hero p {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* ========================= */
/* SECTIONS */
/* ========================= */
section {
    padding: 4rem 0;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
}

section h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
}

section p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.intro-section,
.what-is,
.is-for-you,
.tips-section {
    background-color: var(--bg-light);
}

/* ========================= */
/* FEATURES GRID */
/* ========================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.feature-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.feature-card h3 {
    color: var(--primary-color);
}

/* ========================= */
/* LISTS */
/* ========================= */
.suitability-list,
.approach-list,
.tips-list,
.awareness-tips ul {
    list-style: none;
    margin: 1.5rem 0;
}

.suitability-list li,
.approach-list li,
.tips-list li,
.awareness-tips ul li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    color: var(--text-light);
}

.suitability-list li::before,
.approach-list li::before,
.tips-list li::before,
.awareness-tips ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ========================= */
/* STEPS SECTION */
/* ========================= */
.steps {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.step {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--accent-color);
}

.step h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* ========================= */
/* REQUIREMENTS & INFO BOXES */
/* ========================= */
.requirements,
.communication-box,
.warning-box,
.official-source-box,
.info-box,
.cookies-box,
.use-box,
.third-party-box,
.update-box,
.consent-box,
.agreement-box,
.use-box,
.content-box,
.links-box,
.limitation-box,
.changes-box,
.acceptance-box,
.responsible-box {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--primary-color);
    margin: 2rem 0;
}

.warning-box,
.important-note-section {
    border-left-color: var(--warning-color);
}

.warning-box h3,
.important-note-section h3 {
    color: var(--warning-color);
}

.requirements {
    text-align: center;
    border-left-color: var(--success-color);
}

.requirements h3 {
    color: var(--success-color);
}

.requirements p {
    margin-bottom: 1.5rem;
    font-weight: 600;
}

/* ========================= */
/* SESSION & SESSION GRID */
/* ========================= */
.session-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.session-item {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.session-item h3 {
    color: var(--primary-color);
}

.session-note {
    text-align: center;
    font-style: italic;
    color: var(--text-light);
}

/* ========================= */
/* FAQ SECTION */
/* ========================= */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

/* ========================= */
/* VERDICT SECTION */
/* ========================= */
.verdict {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.verdict h2 {
    color: white;
}

.verdict p {
    color: rgba(255, 255, 255, 0.95);
}

/* ========================= */
/* OFFER GRID */
/* ========================= */
.offer-grid,
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.offer-card,
.why-item {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.offer-card:hover,
.why-item:hover {
    transform: translateY(-5px);
}

.offer-card h3,
.why-item h3 {
    color: var(--primary-color);
}

/* ========================= */
/* CTA SECTION */
/* ========================= */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
}

/* ========================= */
/* IMPORTANT NOTE */
/* ========================= */
.important-note {
    background-color: #fef3c7;
    padding: 1rem;
    border-radius: 0.375rem;
    border-left: 4px solid var(--warning-color);
    color: #78350f;
}

/* ========================= */
/* FOOTER */
/* ========================= */
footer {
    background-color: var(--text-dark);
    color: white;
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-section p {
    color: #d1d5db;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #4b5563;
    padding-top: 2rem;
}

.scroll-top {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    margin-left: 1rem;
}

.scroll-top:hover {
    color: #ea580c;
}

/* ========================= */
/* HERO BANNER & LOGO IMAGES */
/* ========================= */
.hero-banner-image {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.page-logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 1.5rem;
    display: inline-block;
}

/* ========================= */
/* GAMES GRID */
/* ========================= */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.game-card {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--accent-color);
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.game-image {
    width: 100%;
    max-width: 160px;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 0.375rem;
}

.game-card h3 {
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

/* ========================= */
/* RESPONSIVE DESIGN */
/* ========================= */
@media (max-width: 768px) {
    .navbar .container {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .nav-links {
        gap: 0.8rem;
        margin: 0 0.5rem;
        font-size: 0.85rem;
        flex-wrap: wrap;
        order: 3;
        width: 100%;
    }

    .logo-section {
        order: 1;
    }

    .download-btn-mobile {
        display: block;
        order: 2;
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }

    .hero-content h2 {
        font-size: 1.75rem;
    }

    .hero-subtext {
        font-size: 1rem;
    }

    .hero-banner-image {
        max-width: 90%;
        margin: 0 auto 1.5rem;
    }

    .page-hero h1 {
        font-size: 1.75rem;
    }

    .page-logo {
        max-width: 100px;
    }

    section {
        padding: 2rem 0;
    }

    section h2 {
        font-size: 1.5rem;
    }

    .features-grid,
    .offer-grid,
    .why-grid,
    .faq-grid,
    .games-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        gap: 1rem;
    }

    .step {
        padding: 1.5rem;
    }

    .session-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .scroll-top {
        margin-left: 0;
    }

    .game-card {
        padding: 1.25rem;
    }

    .game-image {
        max-width: 140px;
    }
}

@media (max-width: 640px) {
    .navbar .container {
        flex-direction: column;
        gap: 0.75rem;
    }

    .logo {
        font-size: 1.25rem;
    }

    .nav-links {
        gap: 0.4rem;
        margin: 0;
        font-size: 0.75rem;
        width: 100%;
        justify-content: center;
    }

    .download-btn-mobile {
        width: 100%;
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .hero-content h2,
    .page-hero h1 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .hero-subtext {
        font-size: 0.95rem;
    }

    .hero-banner-image {
        max-width: 100%;
        margin-bottom: 1rem;
    }

    .page-logo {
        max-width: 90px;
        margin-bottom: 1rem;
    }

    section {
        padding: 1.5rem 0;
    }

    section h2 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    section h3 {
        font-size: 1.1rem;
    }

    .feature-card,
    .offer-card,
    .why-item,
    .game-card {
        padding: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .container {
        padding: 0 1rem;
    }

    .step {
        padding: 1rem;
        margin-bottom: 0.75rem;
    }

    .requirements,
    .communication-box,
    .warning-box,
    .official-source-box {
        padding: 1.25rem;
    }

    .cta-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
    }

    .game-image {
        max-width: 120px;
    }

    .faq-item {
        padding: 1.25rem;
    }

    .session-item {
        padding: 1rem;
    }
}

/* ========================= */
/* ACCESSIBILITY */
/* ========================= */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ========================= */
/* FOCUS STYLES FOR ACCESSIBILITY */
/* ========================= */
a:focus,
button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ========================= */
/* PRINT STYLES */
/* ========================= */
@media print {
    header,
    footer {
        display: none;
    }

    body {
        color: #000;
    }

    a {
        color: #000;
    }

    section {
        page-break-inside: avoid;
    }
}