/*
 * PROJECT: angelabella.com
 * DOMAIN: angelabella.com
 * GAME: Stick Jump
 * 
 * DESIGN:
 * - CSS: BEM
 * - Palette: Ретро-90 (бирюзовый #00cec9, розовый #fd79a8)
 * - Effect: Pattern Backgrounds + Neon Glow
 * - Fonts: Silkscreen (heading) + Geologica (body)
 * - Buttons: 3D Effect
 * 
 * Created: 2025
 */

@import url('https://fonts.googleapis.com/css2?family=Silkscreen:wght@400;700&family=Geologica:wght@300;400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
    --retro-teal: #00cec9;
    --retro-pink: #fd79a8;
    --retro-purple: #6c5ce7;
    --retro-yellow: #fdcb6e;
    --retro-dark: #1a1a2e;
    --retro-darker: #0f0f1a;
    --retro-mid: #16213e;
    --retro-light: #e8e8f0;
    --retro-white: #ffffff;
    --retro-gray: #a0a0b8;

    --font-heading: 'Silkscreen', monospace;
    --font-body: 'Geologica', sans-serif;

    --shadow-teal: 0 0 10px rgba(0, 206, 201, 0.6), 0 0 20px rgba(0, 206, 201, 0.3);
    --shadow-pink: 0 0 10px rgba(253, 121, 168, 0.6), 0 0 20px rgba(253, 121, 168, 0.3);
    --shadow-purple: 0 0 10px rgba(108, 92, 231, 0.6), 0 0 20px rgba(108, 92, 231, 0.3);

    --border-radius: 4px;
    --border-radius-lg: 8px;
    --transition: all 0.3s ease;
    --max-width: 1200px;
    --header-height: 70px;
}

/* ===== RESET ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
}

html, body {
    overflow-x: hidden !important;
}

body {
    font-family: var(--font-body);
    background-color: var(--retro-darker);
    color: var(--retro-light);
    line-height: 1.6;
    min-height: 100vh;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 40px,
            rgba(0, 206, 201, 0.04) 40px,
            rgba(0, 206, 201, 0.04) 41px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 40px,
            rgba(253, 121, 168, 0.04) 40px,
            rgba(253, 121, 168, 0.04) 41px
        );
}

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

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

a:hover {
    color: var(--retro-pink);
}

ul {
    list-style: none;
}

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

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

.stars {
    color: #ffc107;
}

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

h1 { font-size: clamp(1.8rem, 4vw, 3rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p {
    font-size: 1rem;
    color: var(--retro-gray);
    line-height: 1.7;
}

/* ===== LAYOUT ===== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

.section--alt {
    background-color: var(--retro-mid);
    background-image:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 20px,
            rgba(0, 206, 201, 0.03) 20px,
            rgba(0, 206, 201, 0.03) 21px
        );
}

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

.section__title {
    color: var(--retro-teal);
    text-shadow: var(--shadow-teal);
    margin-bottom: 1rem;
}

.section__subtitle {
    font-size: 1.05rem;
    color: var(--retro-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== HEADER ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(15, 15, 26, 0.95);
    border-bottom: 2px solid var(--retro-teal);
    backdrop-filter: blur(10px);
    height: var(--header-height);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    max-width: var(--max-width);
    margin: 0 auto;
    height: 100%;
    position: relative;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--retro-teal);
    text-shadow: var(--shadow-teal);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo:hover {
    color: var(--retro-pink);
    text-shadow: var(--shadow-pink);
}

/* ===== NAV ===== */
.site-nav__list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.site-nav__link {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--retro-light);
    position: relative;
    padding-bottom: 4px;
}

.site-nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--retro-pink);
    transition: width 0.3s ease;
}

.site-nav__link:hover {
    color: var(--retro-pink);
}

.site-nav__link:hover::after {
    width: 100%;
}

.site-nav__link--active {
    color: var(--retro-teal);
}

.site-nav__link--active::after {
    width: 100%;
    background: var(--retro-teal);
}

/* ===== HAMBURGER ===== */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle__bar {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--retro-teal);
    transition: var(--transition);
}

.nav-toggle.is-active .nav-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-active .nav-toggle__bar:nth-child(2) {
    opacity: 0;
}
.nav-toggle.is-active .nav-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.85rem 2rem;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    text-align: center;
}

.btn-play {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    border-radius: var(--border-radius);
    background: var(--retro-teal);
    color: var(--retro-darker);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 6px 0 #007c79, var(--shadow-teal);
    position: relative;
    top: 0;
}

.btn-play:hover {
    top: 3px;
    box-shadow: 0 3px 0 #007c79, var(--shadow-teal);
    color: var(--retro-darker);
}

.btn-play:active {
    top: 6px;
    box-shadow: 0 0 0 #007c79;
}

.btn--primary {
    background: var(--retro-teal);
    color: var(--retro-darker);
    box-shadow: 0 6px 0 #007c79, var(--shadow-teal);
    top: 0;
}

.btn--primary:hover {
    top: 3px;
    box-shadow: 0 3px 0 #007c79, var(--shadow-teal);
    color: var(--retro-darker);
}

.btn--secondary {
    background: transparent;
    color: var(--retro-pink);
    border: 2px solid var(--retro-pink);
    box-shadow: 0 6px 0 #a3005a;
    top: 0;
}

.btn--secondary:hover {
    top: 3px;
    box-shadow: 0 3px 0 #a3005a;
    color: var(--retro-pink);
    background: rgba(253, 121, 168, 0.1);
}

/* ===== HERO ===== */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--retro-darker) 0%, var(--retro-dark) 50%, var(--retro-mid) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0, 206, 201, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(253, 121, 168, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--retro-teal), var(--retro-pink), var(--retro-purple), var(--retro-teal));
    background-size: 200% 100%;
    animation: scanline 3s linear infinite;
}

@keyframes scanline {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2rem 1.5rem;
    position: relative;
    z-index: 1;
}

.hero__label {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--retro-pink);
    margin-bottom: 1rem;
    display: block;
}

.hero__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero__title span {
    color: var(--retro-teal);
    text-shadow: var(--shadow-teal);
}

.hero__description {
    font-size: 1.1rem;
    color: var(--retro-gray);
    margin-bottom: 2rem;
    max-width: 480px;
}

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

.hero__meta {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.hero__meta-item {
    text-align: center;
}

.hero__meta-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--retro-teal);
    text-shadow: var(--shadow-teal);
}

.hero__meta-label {
    font-size: 0.75rem;
    color: var(--retro-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__game-frame {
    position: relative;
    border: 3px solid var(--retro-teal);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-teal), inset 0 0 30px rgba(0, 206, 201, 0.1);
    background: var(--retro-dark);
    padding: 2rem;
    text-align: center;
    width: 100%;
    max-width: 420px;
}

.hero__game-icon {
    width: 140px;
    height: 140px;
    margin: 0 auto 1.5rem;
    border-radius: var(--border-radius-lg);
    border: 2px solid rgba(253, 121, 168, 0.4);
    box-shadow: var(--shadow-pink);
    object-fit: cover;
}

.hero__game-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--retro-teal);
    margin-bottom: 0.5rem;
}

.hero__game-desc {
    font-size: 0.85rem;
    color: var(--retro-gray);
    margin-bottom: 1.5rem;
}

.hero__corner {
    position: absolute;
    width: 16px;
    height: 16px;
    border-color: var(--retro-pink);
    border-style: solid;
}

.hero__corner--tl {
    top: 8px;
    left: 8px;
    border-width: 2px 0 0 2px;
}

.hero__corner--tr {
    top: 8px;
    right: 8px;
    border-width: 2px 2px 0 0;
}

.hero__corner--bl {
    bottom: 8px;
    left: 8px;
    border-width: 0 0 2px 2px;
}

.hero__corner--br {
    bottom: 8px;
    right: 8px;
    border-width: 0 2px 2px 0;
}

/* ===== FEATURES ===== */
.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--retro-dark);
    border: 1px solid rgba(0, 206, 201, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--retro-teal), var(--retro-pink));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    border-color: rgba(0, 206, 201, 0.5);
    box-shadow: var(--shadow-teal);
    transform: translateY(-4px);
}

.feature-card__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card__title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--retro-teal);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-card__text {
    font-size: 0.9rem;
    color: var(--retro-gray);
    line-height: 1.6;
}

/* ===== HOW TO PLAY PREVIEW ===== */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.step-card {
    position: relative;
    background: var(--retro-dark);
    border: 1px solid rgba(253, 121, 168, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.step-card:hover {
    border-color: rgba(253, 121, 168, 0.6);
    box-shadow: var(--shadow-pink);
    transform: translateY(-4px);
}

.step-card__number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--retro-pink);
    text-shadow: var(--shadow-pink);
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.step-card__title {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--retro-teal);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step-card__text {
    font-size: 0.9rem;
    color: var(--retro-gray);
}

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

.article-card {
    background: var(--retro-dark);
    border: 1px solid rgba(108, 92, 231, 0.2);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.article-card:hover {
    border-color: rgba(108, 92, 231, 0.6);
    box-shadow: var(--shadow-purple);
    transform: translateY(-4px);
}

.article-card__image {
    height: 180px;
    background: linear-gradient(135deg, var(--retro-dark) 0%, var(--retro-mid) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    border-bottom: 1px solid rgba(108, 92, 231, 0.2);
    position: relative;
    overflow: hidden;
}

.article-card__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 3px,
        rgba(0, 0, 0, 0.2) 3px,
        rgba(0, 0, 0, 0.2) 4px
    );
}

.article-card__content {
    padding: 1.5rem;
}

.article-card__category {
    font-family: var(--font-heading);
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--retro-pink);
    margin-bottom: 0.5rem;
    display: block;
}

.article-card__title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--retro-white);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-card__excerpt {
    font-size: 0.875rem;
    color: var(--retro-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.article-card__meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--retro-gray);
}

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

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

.faq__item {
    background: var(--retro-dark);
    border: 1px solid rgba(0, 206, 201, 0.2);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq__item.is-open {
    border-color: var(--retro-teal);
    box-shadow: var(--shadow-teal);
}

.faq__question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--retro-white);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: left;
    gap: 1rem;
}

.faq__question:hover {
    color: var(--retro-teal);
}

.faq__icon {
    flex-shrink: 0;
    font-size: 1.2rem;
    color: var(--retro-teal);
    transition: transform 0.3s ease;
    font-style: normal;
}

.faq__item.is-open .faq__icon {
    transform: rotate(45deg);
}

.faq__answer {
    display: none;
    padding: 0 1.5rem 1.25rem;
    color: var(--retro-gray);
    font-size: 0.9rem;
    line-height: 1.7;
    border-top: 1px solid rgba(0, 206, 201, 0.1);
}

.faq__item.is-open .faq__answer {
    display: block;
}

/* ===== CTA ===== */
.cta {
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--retro-dark) 0%, var(--retro-mid) 100%);
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(0, 206, 201, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta__inner {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.cta__title {
    color: var(--retro-teal);
    text-shadow: var(--shadow-teal);
    margin-bottom: 1rem;
}

.cta__text {
    font-size: 1.05rem;
    color: var(--retro-gray);
    margin-bottom: 2.5rem;
}

/* ===== FOOTER ===== */
.site-footer {
    background-color: var(--retro-darker);
    border-top: 2px solid rgba(0, 206, 201, 0.3);
    padding: 4rem 0 2rem;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    margin-bottom: 3rem;
}

.site-footer__brand .logo {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: block;
}

.site-footer__tagline {
    font-size: 0.875rem;
    color: var(--retro-gray);
    margin-bottom: 1.5rem;
    max-width: 280px;
}

.site-footer__heading {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--retro-teal);
    margin-bottom: 1rem;
}

.site-footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.site-footer__link {
    font-size: 0.875rem;
    color: var(--retro-gray);
}

.site-footer__link:hover {
    color: var(--retro-pink);
}

.site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.site-footer__copy {
    font-size: 0.8rem;
    color: var(--retro-gray);
}

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

.site-footer__legal a {
    font-size: 0.8rem;
    color: var(--retro-gray);
}

.site-footer__legal a:hover {
    color: var(--retro-teal);
}

/* ===== PAGE HERO ===== */
.page-hero {
    background: linear-gradient(135deg, var(--retro-darker) 0%, var(--retro-dark) 100%);
    border-bottom: 2px solid rgba(0, 206, 201, 0.3);
    padding: 5rem 0 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(0, 206, 201, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(253, 121, 168, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.page-hero__inner {
    position: relative;
    z-index: 1;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.page-hero__title {
    color: var(--retro-teal);
    text-shadow: var(--shadow-teal);
    margin-bottom: 1rem;
}

.page-hero__subtitle {
    font-size: 1.1rem;
    color: var(--retro-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== ARTICLE PAGE ===== */
.article-layout {
    max-width: 820px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.article-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.article-header__category {
    font-family: var(--font-heading);
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--retro-pink);
    margin-bottom: 1rem;
    display: block;
}

.article-header__title {
    color: var(--retro-teal);
    text-shadow: var(--shadow-teal);
    margin-bottom: 1.5rem;
}

.article-header__meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 0.8rem;
    color: var(--retro-gray);
    flex-wrap: wrap;
}

.article-body {
    line-height: 1.8;
}

.article-body h2 {
    font-size: 1.3rem;
    color: var(--retro-teal);
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 206, 201, 0.2);
}

.article-body h3 {
    font-size: 1rem;
    color: var(--retro-pink);
    margin: 2rem 0 0.75rem;
}

.article-body p {
    margin-bottom: 1.25rem;
    font-size: 1rem;
    color: var(--retro-gray);
}

.article-body ul,
.article-body ol {
    margin: 1rem 0 1.5rem 1.5rem;
    color: var(--retro-gray);
}

.article-body li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

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

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

.article-body strong {
    color: var(--retro-white);
}

.article-body .highlight-box {
    background: var(--retro-dark);
    border-left: 4px solid var(--retro-teal);
    padding: 1.25rem 1.5rem;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    margin: 2rem 0;
}

.article-body .highlight-box p {
    margin: 0;
    color: var(--retro-light);
}

/* ===== ABOUT PAGE ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-visual {
    background: var(--retro-dark);
    border: 2px solid rgba(0, 206, 201, 0.3);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-teal);
    position: relative;
}

.about-visual__icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

.about-visual__label {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--retro-teal);
}

.about-content__title {
    color: var(--retro-teal);
    text-shadow: var(--shadow-teal);
    margin-bottom: 1.5rem;
}

.about-content p {
    margin-bottom: 1.25rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.about-stat {
    text-align: center;
    background: var(--retro-dark);
    border: 1px solid rgba(253, 121, 168, 0.2);
    border-radius: var(--border-radius);
    padding: 1.5rem 1rem;
}

.about-stat__value {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--retro-pink);
    text-shadow: var(--shadow-pink);
    display: block;
}

.about-stat__label {
    font-size: 0.75rem;
    color: var(--retro-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== HOW TO PLAY PAGE ===== */
.how-to-play__content {
    max-width: 900px;
    margin: 0 auto;
}

.how-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    align-items: start;
    background: var(--retro-dark);
    border: 1px solid rgba(0, 206, 201, 0.15);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    position: relative;
}

.how-step:hover {
    border-color: rgba(0, 206, 201, 0.5);
    box-shadow: var(--shadow-teal);
}

.how-step__number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--retro-teal);
    text-shadow: var(--shadow-teal);
    text-align: center;
    line-height: 1;
}

.how-step__title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--retro-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.how-step__text {
    font-size: 0.95rem;
    color: var(--retro-gray);
    line-height: 1.7;
}

.controls-box {
    background: var(--retro-dark);
    border: 2px solid var(--retro-pink);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    margin: 3rem 0;
    text-align: center;
    box-shadow: var(--shadow-pink);
    position: relative;
}

.controls-box__title {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--retro-pink);
    margin-bottom: 1rem;
}

.controls-box__key {
    display: inline-block;
    background: var(--retro-mid);
    border: 2px solid var(--retro-teal);
    border-radius: var(--border-radius);
    padding: 0.5rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--retro-teal);
    text-shadow: var(--shadow-teal);
    box-shadow: 0 4px 0 #007c79;
    margin: 0.25rem;
}

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

.tip-card {
    background: var(--retro-dark);
    border: 1px solid rgba(108, 92, 231, 0.2);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    transition: var(--transition);
    position: relative;
}

.tip-card:hover {
    border-color: rgba(108, 92, 231, 0.6);
    box-shadow: var(--shadow-purple);
}

.tip-card__icon {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

.tip-card__title {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    color: var(--retro-purple);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.tip-card__text {
    font-size: 0.875rem;
    color: var(--retro-gray);
    line-height: 1.6;
}

/* ===== CONTACT PAGE ===== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info__title {
    color: var(--retro-teal);
    margin-bottom: 1.5rem;
}

.contact-info__item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.contact-info__icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info__label {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--retro-pink);
    margin-bottom: 0.25rem;
    display: block;
}

.contact-info__value {
    font-size: 0.9rem;
    color: var(--retro-gray);
}

.contact-form {
    background: var(--retro-dark);
    border: 1px solid rgba(0, 206, 201, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
}

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

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--retro-teal);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: var(--retro-darker);
    border: 1px solid rgba(0, 206, 201, 0.3);
    border-radius: var(--border-radius);
    padding: 0.85rem 1rem;
    color: var(--retro-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--retro-teal);
    box-shadow: 0 0 0 2px rgba(0, 206, 201, 0.15);
}

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

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    max-width: 420px;
    background: var(--retro-dark);
    border: 2px solid var(--retro-teal);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: var(--shadow-teal), 0 10px 40px rgba(0, 0, 0, 0.5);
}

.cookie-consent__inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-consent__text {
    font-size: 0.85rem;
    color: var(--retro-gray);
    line-height: 1.6;
}

.cookie-consent__text a {
    color: var(--retro-teal);
}

/* ===== PRIVACY / TERMS ===== */
.legal-layout {
    max-width: 820px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.legal-layout h2 {
    color: var(--retro-teal);
    font-size: 1.1rem;
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 206, 201, 0.2);
}

.legal-layout h3 {
    color: var(--retro-pink);
    font-size: 0.9rem;
    margin: 1.5rem 0 0.75rem;
}

.legal-layout p,
.legal-layout li {
    color: var(--retro-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.legal-layout ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-effective {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--retro-pink);
    margin-bottom: 2rem;
}

/* ===== DECORATIVE ===== */
.pixel-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--retro-teal), var(--retro-pink));
    margin: 1.5rem auto;
    border-radius: 2px;
}

.pixel-divider--left {
    margin-left: 0;
}

.glow-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border: 1px solid var(--retro-teal);
    border-radius: 2px;
    color: var(--retro-teal);
    box-shadow: var(--shadow-teal);
}

.scanlines {
    position: relative;
}

.scanlines::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.15) 2px,
        rgba(0, 0, 0, 0.15) 4px
    );
    pointer-events: none;
    z-index: 2;
}

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

/* ===== BREADCRUMB ===== */
.breadcrumb {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.breadcrumb__item {
    font-size: 0.8rem;
    color: var(--retro-gray);
}

.breadcrumb__item a {
    color: var(--retro-teal);
}

.breadcrumb__sep {
    color: var(--retro-gray);
    font-size: 0.75rem;
}

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

    .hero__description {
        margin: 0 auto 2rem;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__meta {
        justify-content: center;
    }

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

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

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

    .how-step {
        grid-template-columns: 60px 1fr;
        gap: 1rem;
    }

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

@media (max-width: 700px) {
    .site-nav {
        display: none;
        position: absolute;
        top: calc(var(--header-height) - 1px);
        left: 0;
        right: 0;
        background: var(--retro-darker);
        border-bottom: 2px solid var(--retro-teal);
        padding: 1.5rem;
    }

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

    .site-nav__list {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .nav-toggle {
        display: flex;
    }

    .site-header__inner {
        position: relative;
    }

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

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

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

    .how-step__number {
        font-size: 1.5rem;
        text-align: left;
    }

    .hero__meta {
        gap: 1.5rem;
    }

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

    .cookie-consent {
        left: 1rem;
        right: 1rem;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 3rem 0;
    }

    .hero {
        min-height: auto;
        padding: 3rem 0;
    }

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

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

    .hero__actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-play,
    .btn {
        width: 100%;
        text-align: center;
    }
}