/*
 * PROJECT: realtypapa.com
 * DOMAIN: realtypapa.com
 * GAME: Checkers Master
 *
 * DESIGN:
 * - CSS: BEM
 * - Palette: Holographic (a855f7 → ec4899 → 06b6d4)
 * - Effect: Glassmorphism + Animated Gradients
 * - Fonts: Sora (heading) + Figtree (body)
 * - Buttons: Gradient
 *
 * Created: January 2026
 */

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

:root {
    --holo-purple: #a855f7;
    --holo-pink: #ec4899;
    --holo-cyan: #06b6d4;
    --holo-violet: #7c3aed;
    --holo-indigo: #4f46e5;
    --holo-teal: #0891b2;
    --bg-deep: #0d0d1a;
    --bg-mid: #12122a;
    --bg-card: rgba(168, 85, 247, 0.07);
    --bg-glass: rgba(255, 255, 255, 0.06);
    --text-primary: #f0e8ff;
    --text-secondary: #c4b5e8;
    --text-muted: #8b7aa8;
    --border-glass: rgba(168, 85, 247, 0.25);
    --border-cyan: rgba(6, 182, 212, 0.3);
    --shadow-purple: 0 0 30px rgba(168, 85, 247, 0.3);
    --shadow-cyan: 0 0 20px rgba(6, 182, 212, 0.25);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --font-heading: 'Sora', sans-serif;
    --font-body: 'Figtree', sans-serif;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 10%, rgba(168, 85, 247, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(6, 182, 212, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 60% 30%, rgba(236, 72, 153, 0.1) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.25;
    color: var(--text-primary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== STARS ===== */
.stars {
    color: #ffc107;
}

/* ===== MANDATORY CARD RULES ===== */
.article-card,
.offer-card,
.card {
    position: relative;
}

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

/* ===== ANIMATED GRADIENT BG ===== */
@keyframes holo-shift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes float-up {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

@keyframes glow-pulse {
    0%   { opacity: 0.5; }
    50%  { opacity: 1; }
    100% { opacity: 0.5; }
}

@keyframes shimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* ===== HEADER ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(13, 13, 26, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 24px;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--holo-purple), var(--holo-pink), var(--holo-cyan));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
    letter-spacing: -0.02em;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav__link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav__link:hover,
.nav__link--active {
    color: var(--text-primary);
    background: var(--bg-glass);
}

.header__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--holo-purple), var(--holo-pink));
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    white-space: nowrap;
}

.header__cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-purple);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.burger__line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.burger.is-active .burger__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger.is-active .burger__line:nth-child(2) {
    opacity: 0;
}

.burger.is-active .burger__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    padding: 100px 0 80px;
    overflow: hidden;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(168, 85, 247, 0.15);
    border: 1px solid var(--border-glass);
    color: var(--holo-purple);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--holo-purple);
    animation: glow-pulse 2s ease infinite;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero__title-gradient {
    background: linear-gradient(135deg, var(--holo-purple), var(--holo-pink), var(--holo-cyan));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 5s linear infinite;
}

.hero__desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 480px;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-play {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--holo-purple), var(--holo-pink));
    background-size: 200% auto;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 32px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(168, 85, 247, 0.4);
    animation: holo-shift 4s ease infinite;
}

.btn-play:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(168, 85, 247, 0.6);
}

.btn-play__icon {
    font-size: 1.2rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 15px 28px;
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.btn-secondary:hover {
    background: rgba(168, 85, 247, 0.15);
    border-color: var(--holo-purple);
    transform: translateY(-2px);
}

.hero__stats {
    display: flex;
    gap: 32px;
    margin-top: 40px;
}

.hero__stat {
    text-align: center;
}

.hero__stat-value {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.75rem;
    background: linear-gradient(135deg, var(--holo-cyan), var(--holo-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
}

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

.hero__game-card {
    position: relative;
    width: 100%;
    max-width: 420px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(20px);
    overflow: hidden;
    animation: float-up 6s ease infinite;
    padding: 24px;
}

.hero__game-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, var(--holo-purple), var(--holo-pink), var(--holo-cyan), var(--holo-purple));
    background-size: 300% 300%;
    border-radius: inherit;
    z-index: -1;
    animation: holo-shift 4s ease infinite;
}

.hero__game-card-inner {
    position: relative;
    z-index: 1;
    background: var(--bg-mid);
    border-radius: calc(var(--radius-xl) - 4px);
    padding: 24px;
}

.hero__game-icon {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-lg);
    margin: 0 auto 20px;
    box-shadow: var(--shadow-purple);
}

.hero__game-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
}

.hero__game-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.hero__game-category {
    background: rgba(6, 182, 212, 0.15);
    color: var(--holo-cyan);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
    border: 1px solid var(--border-cyan);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero__game-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    color: #ffc107;
}

/* ===== SECTION TITLES ===== */
.section__header {
    text-align: center;
    margin-bottom: 56px;
}

.section__eyebrow {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--holo-cyan);
    margin-bottom: 12px;
}

.section__title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.section__subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    backdrop-filter: blur(16px);
    transition: var(--transition);
}

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

.feature-card__icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.feature-card__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-card__text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== HOW TO PLAY SECTION ===== */
.how-to-play {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.steps__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step-card {
    position: relative;
    text-align: center;
    padding: 36px 20px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(16px);
    transition: var(--transition);
}

.step-card:hover {
    border-color: var(--holo-pink);
    transform: translateY(-4px);
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.25);
}

.step-card__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--holo-purple), var(--holo-pink));
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    color: #fff;
    margin: 0 auto 20px;
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.4);
}

.step-card__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.step-card__text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== BLOG SECTION ===== */
.blog-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

.article-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    overflow: hidden;
    backdrop-filter: blur(16px);
    transition: var(--transition);
    position: relative;
}

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

.article-card__image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-mid), rgba(168, 85, 247, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-card__image-placeholder {
    font-size: 4rem;
    opacity: 0.6;
}

.article-card__category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(168, 85, 247, 0.85);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.article-card__content {
    padding: 24px;
}

.article-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.article-card__date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.article-card__read-time {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.article-card__read-time::before {
    content: '•';
    margin-right: 8px;
}

.article-card__title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
    line-height: 1.4;
    transition: var(--transition);
}

.article-card:hover .article-card__title {
    color: var(--holo-cyan);
}

.article-card__excerpt {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.section__cta {
    text-align: center;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.cta-section__inner {
    position: relative;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-xl);
    padding: 72px 48px;
    text-align: center;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.cta-section__inner::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--holo-purple), var(--holo-pink), var(--holo-cyan), var(--holo-violet));
    background-size: 300% 300%;
    border-radius: inherit;
    z-index: -1;
    animation: holo-shift 6s ease infinite;
    opacity: 0.5;
}

.cta-section__title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-section__text {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 36px;
}

/* ===== FAQ SECTION ===== */
.faq {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.faq__list {
    max-width: 720px;
    margin: 0 auto;
}

.faq__item {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    backdrop-filter: blur(16px);
    transition: var(--transition);
}

.faq__item.is-open {
    border-color: var(--holo-purple);
}

.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    gap: 16px;
    user-select: none;
}

.faq__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(168, 85, 247, 0.2);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--holo-purple);
    transition: var(--transition);
    font-style: normal;
}

.faq__item.is-open .faq__icon {
    background: var(--holo-purple);
    color: #fff;
    transform: rotate(45deg);
}

.faq__answer {
    display: none;
    padding: 0 24px 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

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

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
    position: fixed;
    bottom: 24px;
    right: 24px;
    max-width: 420px;
    z-index: 200;
    background: rgba(18, 18, 42, 0.95);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
    padding: 24px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.cookie-consent__inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.cookie-consent__text a {
    color: var(--holo-cyan);
    text-decoration: underline;
}

.cookie-consent__btn {
    align-self: flex-end;
    background: linear-gradient(135deg, var(--holo-purple), var(--holo-pink));
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 10px 24px;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}

.cookie-consent__btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-purple);
}

/* ===== FOOTER ===== */
.footer {
    position: relative;
    z-index: 1;
    background: rgba(13, 13, 26, 0.9);
    border-top: 1px solid var(--border-glass);
    padding: 60px 0 32px;
    backdrop-filter: blur(20px);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer__brand .logo {
    font-size: 1.3rem;
    display: inline-block;
    margin-bottom: 16px;
}

.footer__tagline {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 240px;
}

.footer__col-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--text-primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer__links li {
    margin-bottom: 10px;
}

.footer__links a {
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer__links a:hover {
    color: var(--holo-cyan);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid var(--border-glass);
    gap: 20px;
    flex-wrap: wrap;
}

.footer__copy {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer__legal {
    display: flex;
    gap: 20px;
}

.footer__legal a {
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer__legal a:hover {
    color: var(--holo-purple);
}

/* ===== INNER PAGE HERO ===== */
.page-hero {
    padding: 80px 0 56px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.page-hero__subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
}

/* ===== ABOUT PAGE ===== */
.about-section {
    padding: 60px 0 80px;
    position: relative;
    z-index: 1;
}

.about-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-section__content h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--holo-purple), var(--holo-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-section__content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

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

.about-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-xl);
    padding: 40px;
    backdrop-filter: blur(20px);
    text-align: center;
    width: 100%;
    max-width: 360px;
}

.about-card__icon-wrap {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-lg);
    margin: 0 auto 24px;
    overflow: hidden;
    box-shadow: var(--shadow-purple);
}

.about-card__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}

.about-card__stat {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 16px 12px;
}

.about-card__stat-value {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    background: linear-gradient(135deg, var(--holo-pink), var(--holo-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-card__stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    backdrop-filter: blur(16px);
    transition: var(--transition);
}

.value-card:hover {
    border-color: var(--holo-pink);
    box-shadow: 0 0 24px rgba(236, 72, 153, 0.2);
}

.value-card__emoji {
    font-size: 2.2rem;
    margin-bottom: 16px;
    display: block;
}

.value-card__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.value-card__text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== HOW TO PLAY PAGE ===== */
.htp-section {
    padding: 40px 0 80px;
    position: relative;
    z-index: 1;
}

.htp-intro {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-xl);
    padding: 48px;
    backdrop-filter: blur(20px);
    margin-bottom: 48px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
}

.htp-intro__game-icon {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-lg);
    flex-shrink: 0;
    box-shadow: var(--shadow-purple);
}

.htp-intro__title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.htp-intro__text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.htp-steps {
    margin-bottom: 60px;
}

.htp-steps__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 28px;
    text-align: center;
}

.htp-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: start;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    margin-bottom: 16px;
    backdrop-filter: blur(16px);
    transition: var(--transition);
}

.htp-step:hover {
    border-color: var(--holo-purple);
}

.htp-step__number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--holo-purple), var(--holo-pink));
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(168, 85, 247, 0.35);
}

.htp-step__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.htp-step__text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.htp-controls {
    background: var(--bg-glass);
    border: 1px solid var(--border-cyan);
    border-radius: var(--radius-xl);
    padding: 40px;
    backdrop-filter: blur(16px);
    margin-bottom: 48px;
}

.htp-controls__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
    color: var(--holo-cyan);
}

.htp-controls__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.htp-control-item {
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid var(--border-cyan);
    border-radius: var(--radius-md);
    padding: 20px 16px;
    text-align: center;
    transition: var(--transition);
}

.htp-control-item:hover {
    background: rgba(6, 182, 212, 0.15);
}

.htp-control-item__icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.htp-control-item__label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: var(--holo-cyan);
}

.htp-control-item__desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.htp-tips {
    margin-bottom: 60px;
}

.htp-tips__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

.htp-tips__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.htp-tip {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    backdrop-filter: blur(16px);
    display: flex;
    gap: 16px;
    align-items: start;
    transition: var(--transition);
}

.htp-tip:hover {
    border-color: var(--holo-purple);
}

.htp-tip__num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(168, 85, 247, 0.2);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--holo-purple);
    flex-shrink: 0;
}

.htp-tip__text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== BLOG PAGE ===== */
.blog-page {
    padding: 40px 0 80px;
    position: relative;
    z-index: 1;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* ===== ARTICLE PAGE ===== */
.article-page {
    padding: 40px 0 80px;
    position: relative;
    z-index: 1;
}

.article-page__grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: start;
}

.article-page__main {}

.article-header {
    margin-bottom: 36px;
}

.article-header__category {
    display: inline-block;
    background: rgba(168, 85, 247, 0.15);
    color: var(--holo-purple);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
    border: 1px solid var(--border-glass);
}

.article-header__title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    line-height: 1.25;
}

.article-header__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.article-header__date,
.article-header__read-time,
.article-header__author {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-body {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.85;
}

.article-body h2 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 36px 0 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-glass);
}

.article-body h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 28px 0 12px;
}

.article-body p {
    margin-bottom: 18px;
}

.article-body ul,
.article-body ol {
    padding-left: 24px;
    margin-bottom: 18px;
}

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

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

.article-body li {
    margin-bottom: 8px;
}

.article-body strong {
    color: var(--text-primary);
    font-weight: 600;
}

.article-body blockquote {
    border-left: 3px solid var(--holo-purple);
    padding: 16px 24px;
    background: var(--bg-glass);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 24px 0;
    color: var(--text-primary);
    font-style: italic;
}

.article-sidebar {}

.sidebar-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 28px;
    backdrop-filter: blur(16px);
    margin-bottom: 24px;
    position: sticky;
    top: 100px;
}

.sidebar-card__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-glass);
}

.sidebar-card__play-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: linear-gradient(135deg, var(--holo-purple), var(--holo-pink));
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 14px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    margin-top: 16px;
    text-align: center;
}

.sidebar-card__play-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-purple);
}

.sidebar-related__item {
    display: flex;
    gap: 12px;
    align-items: start;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-glass);
}

.sidebar-related__item:last-child {
    border-bottom: none;
}

.sidebar-related__icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.sidebar-related__link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition);
    line-height: 1.4;
}

.sidebar-related__link:hover {
    color: var(--holo-cyan);
}

.sidebar-related__date {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 40px 0 80px;
    position: relative;
    z-index: 1;
}

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

.contact-info {}

.contact-info__title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-info__text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    backdrop-filter: blur(16px);
}

.contact-item__icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item__label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--holo-cyan);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-item__value {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.contact-form-wrap {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-xl);
    padding: 40px;
    backdrop-filter: blur(20px);
}

.contact-form__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.form-input,
.form-textarea {
    width: 100%;
    background: rgba(168, 85, 247, 0.06);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition);
    outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--holo-purple);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.15);
    background: rgba(168, 85, 247, 0.1);
}

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

.form-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--holo-purple), var(--holo-pink));
    background-size: 200% auto;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    padding: 16px;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    animation: holo-shift 4s ease infinite;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-purple);
}

/* ===== PRIVACY / TERMS PAGE ===== */
.legal-section {
    padding: 40px 0 80px;
    position: relative;
    z-index: 1;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-xl);
    padding: 56px 60px;
    backdrop-filter: blur(20px);
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 36px 0 14px;
    color: var(--holo-purple);
}

.legal-content h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    margin: 24px 0 10px;
    color: var(--text-primary);
}

.legal-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 14px;
    line-height: 1.8;
}

.legal-content ul {
    padding-left: 24px;
    margin-bottom: 16px;
    list-style: disc;
}

.legal-content li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.7;
}

.legal-content a {
    color: var(--holo-cyan);
    text-decoration: underline;
}

.legal-content .legal-updated {
    display: inline-block;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid var(--border-cyan);
    color: var(--holo-cyan);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 32px;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 0.8rem;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
    padding: 20px 0 0;
}

.breadcrumb a {
    color: var(--text-muted);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--holo-cyan);
}

.breadcrumb__sep {
    color: var(--border-glass);
}

.breadcrumb__current {
    color: var(--holo-purple);
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(13, 13, 26, 0.97);
    border-bottom: 1px solid var(--border-glass);
    backdrop-filter: blur(24px);
    z-index: 99;
    padding: 20px 24px;
}

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

.mobile-nav__list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav__link {
    display: block;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.mobile-nav__link:hover {
    color: var(--text-primary);
    background: var(--bg-glass);
}

.mobile-nav__cta {
    margin-top: 12px;
}

.mobile-nav__cta .btn-play {
    width: 100%;
    justify-content: center;
    font-size: 0.9rem;
    padding: 13px 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .features__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

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

    .article-sidebar {
        order: -1;
    }

    .sidebar-card {
        position: static;
    }

    .htp-controls__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .header__cta {
        display: none;
    }

    .burger {
        display: flex;
    }

    .hero__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero__visual {
        order: -1;
    }

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

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

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

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

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

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

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

    .htp-intro {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .htp-tips__grid {
        grid-template-columns: 1fr;
    }

    .htp-controls__grid {
        grid-template-columns: 1fr;
    }

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

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

    .hero__stats {
        justify-content: center;
    }

    .legal-content {
        padding: 36px 24px;
    }

    .cta-section__inner {
        padding: 48px 24px;
    }

    .cookie-consent {
        left: 16px;
        right: 16px;
        bottom: 16px;
        max-width: none;
    }
}