/*
 * PROJECT: adaption-ausweg.de
 * DOMAIN: adaption-ausweg.de
 * GAME: Ninja Veggie Slice
 *
 * DESIGN:
 * - CSS: BEM
 * - Palette: Океанический (синий, зеленый, золотой, морские волны)
 * - Effect: Gradient Mesh
 * - Fonts: Playfair Display + Source Sans 3
 * - Buttons: Gradient
 *
 * Created: 2025
 */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Source+Sans+3:wght@300;400;600;700&display=swap');

/* ========================
   CSS VARIABLES
======================== */
:root {
    --ocean-deep: #0a2342;
    --ocean-mid: #1a4a7a;
    --ocean-bright: #1e6fa8;
    --wave-teal: #0d9488;
    --wave-light: #2dd4bf;
    --sea-foam: #a7f3d0;
    --gold-coin: #d4a017;
    --gold-light: #f5c842;
    --gold-pale: #fef3c7;
    --blade-green: #16a34a;
    --veggie-orange: #ea580c;
    --white: #ffffff;
    --off-white: #f0f7ff;
    --text-dark: #0f2a45;
    --text-mid: #334d66;
    --text-light: #6b8fa8;
    --border-light: #c8dff0;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Source Sans 3', Arial, sans-serif;

    --shadow-sm: 0 2px 8px rgba(10, 35, 66, 0.12);
    --shadow-md: 0 6px 24px rgba(10, 35, 66, 0.18);
    --shadow-lg: 0 12px 48px rgba(10, 35, 66, 0.24);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;

    --transition: 0.3s ease;
}

/* ========================
   RESET & BASE
======================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--off-white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

ul {
    list-style: none;
}

/* ========================
   TYPOGRAPHY
======================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.25;
    color: var(--ocean-deep);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 3vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }

p { margin-bottom: 1rem; color: var(--text-mid); }
p:last-child { margin-bottom: 0; }

/* ========================
   MANDATORY UTILITY RULES
======================== */
.article-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.article-card,
.offer-card,
.card {
    position: relative;
}

.stars { color: #ffc107; }

/* ========================
   LAYOUT UTILITIES
======================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

.section--light {
    background-color: var(--white);
}

.section--ocean {
    background: linear-gradient(135deg, var(--ocean-deep) 0%, var(--ocean-mid) 60%, var(--wave-teal) 100%);
    color: var(--white);
}

.section--teal {
    background: linear-gradient(135deg, var(--wave-teal) 0%, var(--ocean-bright) 100%);
    color: var(--white);
}

.section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.section__header h2 {
    margin-bottom: 0.75rem;
}

.section__header p {
    font-size: 1.1rem;
    max-width: 640px;
    margin: 0 auto;
}

.section--ocean .section__header h2,
.section--teal .section__header h2 {
    color: var(--white);
}

.section--ocean .section__header p,
.section--teal .section__header p {
    color: rgba(255,255,255,0.85);
}

/* ========================
   MESH BACKGROUND EFFECT
======================== */
.mesh-bg {
    background:
        radial-gradient(ellipse at 20% 30%, rgba(13, 148, 136, 0.35) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 10%, rgba(30, 111, 168, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(212, 160, 23, 0.2) 0%, transparent 45%),
        radial-gradient(ellipse at 10% 80%, rgba(45, 212, 191, 0.25) 0%, transparent 50%),
        var(--ocean-deep);
}

/* ========================
   HEADER
======================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 35, 66, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(45, 212, 191, 0.2);
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 2rem;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gold-light);
    letter-spacing: 0.02em;
    white-space: nowrap;
    flex-shrink: 0;
}

.logo span {
    color: var(--wave-light);
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav__item a {
    display: block;
    padding: 0.5rem 0.9rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255,255,255,0.82);
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
    font-family: var(--font-body);
}

.nav__item a:hover,
.nav__item a.active {
    color: var(--wave-light);
    background: rgba(45, 212, 191, 0.1);
}

.nav__cta a {
    background: linear-gradient(135deg, var(--gold-coin), var(--gold-light));
    color: var(--ocean-deep) !important;
    padding: 0.5rem 1.2rem !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
}

.nav__cta a:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-coin)) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(212, 160, 23, 0.4);
}

/* Hamburger */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ========================
   HERO
======================== */
.hero {
    padding: 6rem 0 5rem;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 25% 40%, rgba(13, 148, 136, 0.4) 0%, transparent 55%),
        radial-gradient(ellipse at 75% 20%, rgba(45, 212, 191, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 55% 75%, rgba(212, 160, 23, 0.15) 0%, transparent 45%);
    pointer-events: none;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(45, 212, 191, 0.15);
    border: 1px solid rgba(45, 212, 191, 0.4);
    color: var(--wave-light);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: var(--font-body);
}

.hero__title {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero__title em {
    font-style: normal;
    color: var(--gold-light);
}

.hero__subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.hero__stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.12);
}

.hero__stat {
    text-align: center;
}

.hero__stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--gold-light);
}

.hero__stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.6);
    font-weight: 600;
}

/* Hero visual */
.hero__visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.hero__game-frame {
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(45, 212, 191, 0.3);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    box-shadow:
        0 0 40px rgba(45, 212, 191, 0.15),
        0 20px 60px rgba(0,0,0,0.4);
    width: 100%;
    max-width: 420px;
}

.hero__game-icon {
    width: 180px;
    height: 180px;
    margin: 0 auto 1.5rem;
    border-radius: var(--radius-md);
    object-fit: cover;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.hero__game-meta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.75);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.12);
}

/* ========================
   BUTTONS
======================== */
.btn-play,
.btn--primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--gold-coin) 0%, var(--gold-light) 50%, var(--veggie-orange) 100%);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    padding: 0.85rem 2.2rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 4px 20px rgba(212, 160, 23, 0.4);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.btn-play:hover,
.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(212, 160, 23, 0.6);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--veggie-orange) 100%);
}

.btn--secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    padding: 0.85rem 2.2rem;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all var(--transition);
}

.btn--secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--wave-light);
    color: var(--wave-light);
}

.btn--teal {
    background: linear-gradient(135deg, var(--wave-teal), var(--wave-light));
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    padding: 0.75rem 1.8rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition);
    text-shadow: none;
    box-shadow: 0 4px 16px rgba(13, 148, 136, 0.3);
}

.btn--teal:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(13, 148, 136, 0.5);
}

.btn--sm {
    font-size: 0.9rem;
    padding: 0.55rem 1.4rem;
}

/* ========================
   FEATURES SECTION
======================== */
.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--wave-teal);
}

.feature-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--wave-teal), var(--ocean-bright));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.feature-card__title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--ocean-deep);
}

.feature-card__text {
    font-size: 0.95rem;
    color: var(--text-mid);
    margin: 0;
}

/* ========================
   GAME PREVIEW SECTION
======================== */
.game-preview {
    background: var(--white);
}

.game-preview__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.game-preview__image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.game-preview__image-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.3), rgba(10, 35, 66, 0.2));
    z-index: 1;
    pointer-events: none;
}

.game-preview__img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    background: linear-gradient(135deg, var(--ocean-mid), var(--wave-teal));
}

.game-preview__placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--ocean-mid) 0%, var(--wave-teal) 60%, var(--blade-green) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.game-preview__placeholder::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(45,212,191,0.2) 0%, transparent 60%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(0.8); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 1; }
}

.game-preview__icon-large {
    font-size: 5rem;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.game-preview__placeholder-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.game-preview__content h2 {
    margin-bottom: 1rem;
}

.game-preview__content p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.game-preview__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.game-preview__list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.98rem;
    color: var(--text-mid);
    font-weight: 600;
}

.game-preview__list li::before {
    content: '⚔';
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ========================
   HOW TO PLAY (Homepage snippet)
======================== */
.how-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    counter-reset: steps;
}

.how-step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    position: relative;
    transition: all var(--transition);
}

.how-step:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(45, 212, 191, 0.4);
    transform: translateY(-3px);
}

.how-step__number {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--gold-coin), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--ocean-deep);
    box-shadow: 0 4px 16px rgba(212, 160, 23, 0.4);
}

.how-step__emoji {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    display: block;
}

.how-step__title {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.how-step__text {
    color: rgba(255,255,255,0.75);
    font-size: 0.92rem;
    margin: 0;
}

/* ========================
   ARTICLE CARDS
======================== */
.articles__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.article-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    position: relative;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--wave-teal);
}

.article-card__thumb {
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
    overflow: hidden;
    background: linear-gradient(135deg, var(--ocean-mid), var(--wave-teal));
    position: relative;
}

.article-card__thumb-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    transition: transform var(--transition);
}

.article-card:hover .article-card__thumb-inner {
    transform: scale(1.1);
}

.article-card__body {
    padding: 1.5rem;
}

.article-card__category {
    display: inline-block;
    background: linear-gradient(135deg, var(--wave-teal), var(--ocean-bright));
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.2rem 0.7rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

.article-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ocean-deep);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    transition: color var(--transition);
}

.article-card:hover .article-card__title {
    color: var(--wave-teal);
}

.article-card__excerpt {
    font-size: 0.92rem;
    color: var(--text-mid);
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-clamp: 3;
    overflow: hidden;
}

.article-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    color: var(--text-light);
    border-top: 1px solid var(--border-light);
    padding-top: 0.75rem;
}

.article-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* ========================
   FAQ
======================== */
.faq__list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item.is-open {
    border-color: var(--wave-teal);
    box-shadow: var(--shadow-sm);
}

.faq-item__question {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--ocean-deep);
    text-align: left;
    gap: 1rem;
    transition: color var(--transition);
}

.faq-item__question:hover {
    color: var(--wave-teal);
}

.faq-item__icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--wave-teal), var(--ocean-bright));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    flex-shrink: 0;
    font-weight: 700;
    transition: transform var(--transition);
}

.faq-item.is-open .faq-item__icon {
    transform: rotate(45deg);
}

.faq-item__answer {
    display: none;
    padding: 0 1.5rem 1.25rem;
    font-size: 0.97rem;
    color: var(--text-mid);
    line-height: 1.8;
}

.faq-item.is-open .faq-item__answer {
    display: block;
}

/* ========================
   CTA BANNER
======================== */
.cta-banner {
    text-align: center;
    padding: 5rem 0;
}

.cta-banner__inner {
    background:
        radial-gradient(ellipse at 30% 50%, rgba(13, 148, 136, 0.35) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(212, 160, 23, 0.2) 0%, transparent 60%),
        var(--ocean-deep);
    border-radius: var(--radius-xl);
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
}

.cta-banner__deco {
    position: absolute;
    font-size: 8rem;
    opacity: 0.07;
    pointer-events: none;
}

.cta-banner__deco--left {
    left: -1rem;
    top: 50%;
    transform: translateY(-50%) rotate(-15deg);
}

.cta-banner__deco--right {
    right: -1rem;
    top: 50%;
    transform: translateY(-50%) rotate(15deg);
}

.cta-banner h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-banner p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto 2.5rem;
}

/* ========================
   FOOTER
======================== */
.site-footer {
    background: linear-gradient(180deg, var(--ocean-deep) 0%, #061520 100%);
    color: rgba(255,255,255,0.75);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(45, 212, 191, 0.15);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand__logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--gold-light);
    display: block;
    margin-bottom: 1rem;
}

.footer-brand__logo span {
    color: var(--wave-light);
}

.footer-brand__desc {
    font-size: 0.93rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.footer-brand__disclaimer {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    line-height: 1.6;
}

.footer-col__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(45, 212, 191, 0.3);
}

.footer-col__links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col__links a {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-col__links a:hover {
    color: var(--wave-light);
}

.site-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.site-footer__copy {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

.site-footer__legal {
    display: flex;
    gap: 1.5rem;
}

.site-footer__legal a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    transition: color var(--transition);
}

.site-footer__legal a:hover {
    color: var(--wave-light);
}

/* ========================
   COOKIE CONSENT
======================== */
.cookie-consent {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    background: var(--ocean-deep);
    border: 1px solid rgba(45, 212, 191, 0.3);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.75rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: var(--shadow-lg);
    max-width: 680px;
    width: calc(100% - 3rem);
}

.cookie-consent p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin: 0;
    flex: 1;
}

.cookie-consent a {
    color: var(--wave-light);
    font-weight: 600;
}

/* ========================
   PAGE HERO (Inner Pages)
======================== */
.page-hero {
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(13, 148, 136, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, rgba(45, 212, 191, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero__inner {
    position: relative;
    z-index: 1;
}

.page-hero__breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
}

.page-hero__breadcrumb a {
    color: var(--wave-light);
}

.page-hero__breadcrumb span {
    color: rgba(255,255,255,0.3);
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.page-hero p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    max-width: 680px;
    margin: 0 auto;
}

/* ========================
   HOW TO PLAY PAGE
======================== */
.htp-section {
    padding: 5rem 0;
    background: var(--white);
}

.htp-content {
    max-width: 880px;
    margin: 0 auto;
}

.htp-block {
    margin-bottom: 3.5rem;
}

.htp-block__title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-light);
}

.htp-block__title-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--wave-teal), var(--ocean-bright));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.htp-block p {
    font-size: 1.02rem;
    line-height: 1.85;
}

.htp-block ul, .htp-block ol {
    padding-left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.75;
}

.htp-block ul li {
    list-style: disc;
}

.htp-block ol li {
    list-style: decimal;
}

.htp-controls {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.htp-control {
    background: var(--off-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
    transition: all var(--transition);
}

.htp-control:hover {
    border-color: var(--wave-teal);
    box-shadow: var(--shadow-sm);
}

.htp-control__icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    display: block;
}

.htp-control__label {
    font-weight: 700;
    color: var(--ocean-deep);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.htp-control__desc {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.tip-card {
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.06), rgba(30, 111, 168, 0.06));
    border: 1px solid rgba(13, 148, 136, 0.2);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: all var(--transition);
}

.tip-card:hover {
    transform: translateY(-2px);
    border-color: var(--wave-teal);
    box-shadow: var(--shadow-sm);
}

.tip-card__number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--wave-teal);
    opacity: 0.5;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.tip-card__title {
    font-size: 1rem;
    margin-bottom: 0.4rem;
    color: var(--ocean-deep);
}

.tip-card__text {
    font-size: 0.9rem;
    color: var(--text-mid);
    margin: 0;
}

/* ========================
   ABOUT PAGE
======================== */
.about-section {
    background: var(--white);
    padding: 5rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.about-grid--reverse {
    grid-template-columns: 1fr 1fr;
}

.about-visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--ocean-mid) 0%, var(--wave-teal) 100%);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    position: relative;
}

.about-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(45,212,191,0.2) 0%, transparent 70%);
}

.about-content p {
    font-size: 1.03rem;
    line-height: 1.85;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--off-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}

.value-item__icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.value-item__label {
    font-weight: 700;
    color: var(--ocean-deep);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.value-item__text {
    font-size: 0.88rem;
    color: var(--text-mid);
    margin: 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.team-card {
    background: var(--off-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all var(--transition);
}

.team-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--wave-teal);
}

.team-card__avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--wave-teal), var(--ocean-bright));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 16px rgba(13, 148, 136, 0.3);
}

.team-card__name {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--ocean-deep);
}

.team-card__role {
    font-size: 0.85rem;
    color: var(--wave-teal);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
}

.team-card__bio {
    font-size: 0.9rem;
    color: var(--text-mid);
    margin: 0;
    line-height: 1.7;
}

/* ========================
   BLOG PAGE
======================== */
.blog-section {
    padding: 5rem 0;
    background: var(--off-white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

/* ========================
   ARTICLE PAGE
======================== */
.article-page {
    background: var(--white);
    padding: 5rem 0;
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.article-main {
    min-width: 0;
}

.article-main__header {
    margin-bottom: 2rem;
}

.article-main__meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.88rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.article-main__meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.article-main__cover {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--ocean-mid) 0%, var(--wave-teal) 60%, var(--blade-green) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    margin-bottom: 2.5rem;
    overflow: hidden;
}

.article-body {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-mid);
}

.article-body h2 {
    font-size: 1.6rem;
    margin: 2.5rem 0 1rem;
    color: var(--ocean-deep);
}

.article-body h3 {
    font-size: 1.25rem;
    margin: 2rem 0 0.75rem;
    color: var(--ocean-deep);
}

.article-body p {
    margin-bottom: 1.25rem;
}

.article-body ul, .article-body ol {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.article-body ul li { list-style: disc; }
.article-body ol li { list-style: decimal; }

.article-body strong {
    color: var(--ocean-deep);
    font-weight: 700;
}

.article-body .highlight-box {
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.07), rgba(30, 111, 168, 0.07));
    border-left: 4px solid var(--wave-teal);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
}

/* Sidebar */
.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: var(--off-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.sidebar-widget__header {
    background: linear-gradient(135deg, var(--ocean-deep), var(--ocean-mid));
    padding: 1rem 1.25rem;
}

.sidebar-widget__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    font-family: var(--font-heading);
    margin: 0;
}

.sidebar-widget__body {
    padding: 1.25rem;
}

.sidebar-play {
    text-align: center;
}

.sidebar-play__icon {
    font-size: 3rem;
    margin-bottom: 0.75rem;
    display: block;
}

.sidebar-play p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.related-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-mid);
    transition: color var(--transition);
}

.related-item:hover {
    color: var(--wave-teal);
}

.related-item__emoji {
    font-size: 1.4rem;
    flex-shrink: 0;
}

/* ========================
   CONTACT PAGE
======================== */
.contact-section {
    background: var(--white);
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: var(--off-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}

.contact-info__icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--wave-teal), var(--ocean-bright));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-info__label {
    font-weight: 700;
    color: var(--ocean-deep);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.25rem;
}

.contact-info__value {
    color: var(--text-mid);
    font-size: 0.97rem;
    margin: 0;
}

.contact-form {
    background: var(--off-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ocean-deep);
    margin-bottom: 0.4rem;
    font-family: var(--font-body);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: var(--white);
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 0.97rem;
    color: var(--text-dark);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--wave-teal);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.12);
}

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

.form-success {
    display: none;
    background: rgba(13, 148, 136, 0.1);
    border: 1px solid var(--wave-teal);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    text-align: center;
    color: var(--wave-teal);
    font-weight: 700;
    margin-top: 1rem;
}

/* ========================
   PRIVACY / TERMS
======================== */
.legal-section {
    background: var(--white);
    padding: 5rem 0;
}

.legal-content {
    max-width: 820px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
    color: var(--ocean-deep);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-light);
}

.legal-content h3 {
    font-size: 1.15rem;
    margin: 1.75rem 0 0.75rem;
    color: var(--ocean-deep);
}

.legal-content p {
    font-size: 0.98rem;
    line-height: 1.85;
    margin-bottom: 1rem;
}

.legal-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.97rem;
    color: var(--text-mid);
}

.legal-content ul li { list-style: disc; }

.legal-content a {
    color: var(--wave-teal);
    font-weight: 600;
}

.legal-content a:hover {
    color: var(--ocean-bright);
}

/* ========================
   WAVE DIVIDER
======================== */
.wave-divider {
    line-height: 0;
    overflow: hidden;
}

.wave-divider svg {
    display: block;
    width: 100%;
}

/* ========================
   RESPONSIVE
======================== */
@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__visual {
        order: -1;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__stats {
        justify-content: center;
    }

    .game-preview__inner {
        grid-template-columns: 1fr;
    }

    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }

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

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

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--ocean-deep);
        border-bottom: 1px solid rgba(45,212,191,0.2);
        padding: 1rem 1.5rem;
    }

    .nav.is-open {
        display: block;
    }

    .nav__list {
        flex-direction: column;
        align-items: stretch;
    }

    .nav__item a {
        padding: 0.75rem 1rem;
    }

    .nav__toggle {
        display: flex;
    }

    .site-header {
        position: relative;
    }

    .section {
        padding: 3.5rem 0;
    }

    .cta-banner__inner {
        padding: 3rem 1.5rem;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .how-steps {
        grid-template-columns: 1fr 1fr;
    }

    .hero__stats {
        gap: 1.5rem;
    }

    .cookie-consent {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 0;
        min-height: auto;
    }

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

    .how-steps {
        grid-template-columns: 1fr;
    }

    .site-footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .site-footer__legal {
        justify-content: center;
    }

    .contact-form {
        padding: 1.5rem;
    }
}