/*
 * PROJECT: stikerbandung.com
 * DOMAIN: stikerbandung.com
 * GAME: Super Ninja Adventure
 *
 * DESIGN:
 * - CSS: BEM
 * - Palette: Holographic (Переливчатые #a855f7→#ec4899→#06b6d4)
 * - Effect: Glassmorphism + Animated Gradients
 * - Fonts: Sora (heading) + Figtree (body)
 * - Buttons: Gradient + Glow Effect
 *
 * 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-dark: #0d0a1a;
    --bg-mid: #130f2a;
    --bg-card: rgba(168, 85, 247, 0.08);
    --bg-glass: rgba(255, 255, 255, 0.05);
    --text-primary: #f0e6ff;
    --text-secondary: #c4b5e0;
    --text-muted: #8b7ab0;
    --border-glass: rgba(168, 85, 247, 0.25);
    --border-glow: rgba(6, 182, 212, 0.4);
    --font-heading: 'Sora', sans-serif;
    --font-body: 'Figtree', sans-serif;
    --gradient-main: linear-gradient(135deg, #a855f7, #ec4899, #06b6d4);
    --gradient-alt: linear-gradient(135deg, #06b6d4, #a855f7, #ec4899);
    --gradient-dark: linear-gradient(135deg, rgba(168,85,247,0.15), rgba(236,72,153,0.1), rgba(6,182,212,0.15));
    --shadow-glow: 0 0 30px rgba(168, 85, 247, 0.3);
    --shadow-pink: 0 0 20px rgba(236, 72, 153, 0.3);
    --shadow-cyan: 0 0 20px rgba(6, 182, 212, 0.3);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --header-height: 70px;
}

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

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

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    background-image:
        radial-gradient(ellipse at 20% 20%, rgba(168, 85, 247, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(236, 72, 153, 0.06) 0%, transparent 60%);
    background-attachment: fixed;
}

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

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }

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

a { color: var(--holo-cyan); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--holo-purple); }

img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

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

.section {
    padding: 5rem 0;
}

.section--alt {
    background: rgba(255,255,255,0.02);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}

.text-gradient {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stars { color: #ffc107; }

/* ===== ANIMATED BACKGROUND MESH ===== */
@keyframes meshFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -20px) scale(1.05); }
    66% { transform: translate(-15px, 15px) scale(0.97); }
}

.mesh-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.mesh-bg__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: meshFloat 12s ease-in-out infinite;
}

.mesh-bg__blob--1 {
    width: 600px; height: 600px;
    background: var(--holo-purple);
    top: -200px; left: -100px;
    animation-delay: 0s;
}

.mesh-bg__blob--2 {
    width: 400px; height: 400px;
    background: var(--holo-cyan);
    bottom: -100px; right: -100px;
    animation-delay: -4s;
}

.mesh-bg__blob--3 {
    width: 300px; height: 300px;
    background: var(--holo-pink);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -8s;
}

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

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

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    text-decoration: none;
}

.logo:hover {
    opacity: 0.85;
}

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

.nav__item {}

.nav__link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding: 0.5rem 0.9rem;
    border-radius: var(--radius-sm);
    transition: color 0.3s, background 0.3s;
    text-decoration: none;
}

.nav__link:hover,
.nav__link--active {
    color: var(--text-primary);
    background: rgba(168, 85, 247, 0.15);
}

.header__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-main);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.55rem 1.25rem;
    border-radius: var(--radius-xl);
    text-decoration: none;
    box-shadow: var(--shadow-glow);
    transition: opacity 0.3s, transform 0.3s, box-shadow 0.3s;
    flex-shrink: 0;
}

.header__cta:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.5);
    color: #fff;
}

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

.burger__line {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.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 {
    padding: 6rem 0 5rem;
    position: relative;
    overflow: hidden;
}

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

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(168, 85, 247, 0.15);
    border: 1px solid rgba(168, 85, 247, 0.35);
    color: var(--holo-purple);
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-heading);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-xl);
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero__title {
    margin-bottom: 1.25rem;
}

.hero__description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

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

.hero__stats {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-glass);
}

.hero__stat {}

.hero__stat-number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.6rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero__stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.hero__game-card {
    position: relative;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-glow), 0 20px 60px rgba(0,0,0,0.4);
    width: 100%;
    max-width: 380px;
}

.hero__game-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    background: var(--gradient-dark);
    z-index: -1;
}

.hero__game-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow-glow);
    border: 2px solid var(--border-glow);
}

.hero__game-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__game-genre {
    font-size: 0.85rem;
    color: var(--holo-cyan);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.hero__game-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 1.25rem;
}

.hero__game-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* ===== BUTTONS ===== */
.btn-play {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--gradient-main);
    background-size: 200% 200%;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-xl);
    text-decoration: none;
    box-shadow: var(--shadow-glow), 0 4px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s, opacity 0.3s;
    animation: gradientShift 4s ease infinite;
    border: none;
    cursor: pointer;
}

.btn-play:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 0 50px rgba(168, 85, 247, 0.6), var(--shadow-pink), 0 8px 30px rgba(0,0,0,0.4);
    color: #fff;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: transparent;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.8rem 1.8rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-glass);
    text-decoration: none;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
    backdrop-filter: blur(10px);
}

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

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--holo-cyan);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.7rem 1.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--holo-cyan);
    text-decoration: none;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    position: relative;
    z-index: 2;
}

.btn-outline:hover {
    background: rgba(6, 182, 212, 0.1);
    box-shadow: var(--shadow-cyan);
    color: var(--holo-cyan);
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header__tag {
    display: inline-block;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    color: var(--holo-cyan);
    font-size: 0.78rem;
    font-weight: 600;
    font-family: var(--font-heading);
    padding: 0.3rem 0.9rem;
    border-radius: var(--radius-xl);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header__title {
    margin-bottom: 1rem;
}

.section-header__desc {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* ===== GLASS CARD ===== */
.glass-card {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    position: relative;
}

.glass-card:hover {
    transform: translateY(-4px);
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: var(--shadow-glow);
}

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

.feature-card {
    position: relative;
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-main);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(168, 85, 247, 0.35);
    box-shadow: var(--shadow-glow);
}

.feature-card:hover::before {
    opacity: 1;
}

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

.feature-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
}

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

/* ===== HOW TO PLAY QUICK ===== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    counter-reset: steps;
}

.step-card {
    position: relative;
    text-align: center;
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.step-card__number {
    width: 52px;
    height: 52px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    color: #fff;
    margin: 0 auto 1.25rem;
    box-shadow: var(--shadow-glow);
}

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

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

/* ===== ARTICLES / BLOG ===== */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

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

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(168, 85, 247, 0.4);
}

.article-card__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--gradient-dark);
}

.article-card__image-placeholder {
    width: 100%;
    height: 200px;
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.article-card__content {
    padding: 1.5rem;
}

.article-card__tag {
    display: inline-block;
    background: rgba(168, 85, 247, 0.15);
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: var(--holo-purple);
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font-heading);
    padding: 0.25rem 0.7rem;
    border-radius: var(--radius-xl);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    font-family: var(--font-heading);
    line-height: 1.35;
}

.article-card__excerpt {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.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(--bg-glass);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq__item.is-open {
    border-color: rgba(168, 85, 247, 0.4);
}

.faq__question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.25rem 1.5rem;
    text-align: left;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: color 0.3s;
}

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

.faq__icon {
    font-size: 1.2rem;
    transition: transform 0.3s;
    color: var(--holo-cyan);
    flex-shrink: 0;
}

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

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
}

.faq__answer-inner {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq__item.is-open .faq__answer {
    max-height: 500px;
}

/* ===== RATINGS / REVIEWS ===== */
.ratings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.rating-card {
    position: relative;
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.rating-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.rating-card__stars {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.rating-card__text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-style: italic;
}

.rating-card__author {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--holo-cyan);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
    z-index: 0;
}

.cta-section__content {
    position: relative;
    z-index: 1;
}

.cta-section__title {
    margin-bottom: 1rem;
}

.cta-section__desc {
    max-width: 500px;
    margin: 0 auto 2rem;
    font-size: 1.05rem;
}

/* ===== CONTROLS TABLE ===== */
.controls-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.controls-table th,
.controls-table td {
    padding: 0.9rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--border-glass);
    font-size: 0.95rem;
}

.controls-table th {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--holo-cyan);
    background: rgba(6, 182, 212, 0.05);
}

.controls-table td {
    color: var(--text-secondary);
}

.controls-table tr:hover td {
    background: rgba(168, 85, 247, 0.05);
}

/* ===== TIPS LIST ===== */
.tips-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tips-list__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    transition: border-color 0.3s;
}

.tips-list__item:hover {
    border-color: rgba(168, 85, 247, 0.35);
}

.tips-list__icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.tips-list__text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

.tips-list__text strong {
    color: var(--text-primary);
    font-family: var(--font-heading);
}

/* ===== ARTICLE PAGE ===== */
.article-hero {
    padding: 4rem 0 3rem;
    border-bottom: 1px solid var(--border-glass);
}

.article-hero__tag {
    display: inline-block;
    background: rgba(168, 85, 247, 0.15);
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: var(--holo-purple);
    font-size: 0.78rem;
    font-weight: 600;
    font-family: var(--font-heading);
    padding: 0.3rem 0.9rem;
    border-radius: var(--radius-xl);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-hero__title {
    margin-bottom: 1rem;
    max-width: 800px;
}

.article-hero__meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.article-hero__meta span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.article-body {
    padding: 3.5rem 0 5rem;
}

.article-body__layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    align-items: start;
}

.article-content h2 {
    font-size: 1.6rem;
    margin: 2.25rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-glass);
}

.article-content h3 {
    font-size: 1.2rem;
    margin: 1.75rem 0 0.75rem;
    color: var(--holo-cyan);
}

.article-content p {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
}

.article-content ul,
.article-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}

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

.article-content li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-size: 0.97rem;
}

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

.article-sidebar {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-widget {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.sidebar-widget__title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--holo-cyan);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sidebar-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

/* ===== PAGE HERO ===== */
.page-hero {
    padding: 5rem 0 3.5rem;
    text-align: center;
    border-bottom: 1px solid var(--border-glass);
}

.page-hero__title {
    margin-bottom: 1rem;
}

.page-hero__desc {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border-glass);
}

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

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

.breadcrumb__sep {
    color: var(--text-muted);
    opacity: 0.5;
}

/* ===== CONTENT PAGE ===== */
.content-page {
    padding: 4rem 0 5rem;
}

.content-page h2 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--holo-purple);
}

.content-page h3 {
    font-size: 1.15rem;
    margin: 1.5rem 0 0.75rem;
    color: var(--holo-cyan);
}

.content-page p {
    margin-bottom: 1.1rem;
    font-size: 0.97rem;
}

.content-page ul,
.content-page ol {
    padding-left: 1.5rem;
    margin-bottom: 1.1rem;
}

.content-page ul { list-style: disc; }
.content-page ol { list-style: decimal; }

.content-page li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* ===== CONTACT FORM ===== */
.contact-section {
    padding: 4rem 0 5rem;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
}

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

.contact-info__label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--holo-cyan);
    margin-bottom: 0.25rem;
    display: block;
}

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

.contact-form {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 0.8rem 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}

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

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

.form-success {
    display: none;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    color: var(--holo-cyan);
    font-size: 0.95rem;
    margin-top: 1rem;
}

/* ===== ABOUT PAGE ===== */
.about-section {
    padding: 4rem 0 5rem;
}

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

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

.about-values__item {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    text-align: center;
    transition: border-color 0.3s;
}

.about-values__item:hover {
    border-color: rgba(168, 85, 247, 0.4);
}

.about-values__icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.75rem;
}

.about-values__title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
}

.about-values__text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

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

.team-card {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.team-card__avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.25rem;
    box-shadow: var(--shadow-glow);
}

.team-card__name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
}

.team-card__role {
    font-size: 0.85rem;
    color: var(--holo-cyan);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.team-card__bio {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ===== HOW TO PLAY PAGE ===== */
.htp-section {
    padding: 4rem 0 5rem;
}

.htp-section__grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.htp-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.htp-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.htp-step:hover {
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: var(--shadow-glow);
}

.htp-step__num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    color: #fff;
    flex-shrink: 0;
    box-shadow: var(--shadow-glow);
}

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

.htp-step__text {
    font-size: 0.93rem;
    color: var(--text-secondary);
    margin: 0;
}

.htp-sidebar {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    max-width: 420px;
    z-index: 9999;
    background: rgba(13, 10, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5), var(--shadow-glow);
}

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

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

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

.cookie-consent__btn {
    align-self: flex-end;
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

/* ===== FOOTER ===== */
.footer {
    background: rgba(0,0,0,0.3);
    border-top: 1px solid var(--border-glass);
    padding: 4rem 0 2rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-glass);
}

.footer__brand {}

.footer__logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1rem;
}

.footer__desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

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

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

.footer__link {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.footer__legal {
    display: flex;
    gap: 1.25rem;
}

.footer__legal a {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

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

/* ===== GAME EMBED ===== */
.game-embed {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-glow), 0 20px 60px rgba(0,0,0,0.4);
    margin: 2rem 0;
}

.game-embed__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-glass);
    background: rgba(168, 85, 247, 0.05);
}

.game-embed__title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.game-embed__frame {
    width: 100%;
    height: 560px;
    border: none;
    display: block;
}

/* ===== 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; }
    .hero__inner { gap: 2.5rem; }
    .article-body__layout { grid-template-columns: 1fr; }
    .htp-section__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav { display: none; }
    .nav.is-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: calc(var(--header-height) - 1px);
        left: 0;
        right: 0;
        background: rgba(13,10,26,0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border-glass);
        padding: 1.5rem;
        z-index: 999;
    }
    .nav__list { flex-direction: column; align-items: stretch; width: 100%; }
    .nav__link { display: block; padding: 0.75rem 1rem; }
    .burger { display: flex; }
    .header__cta { display: none; }
    .hero__inner { grid-template-columns: 1fr; text-align: center; }
    .hero__actions { justify-content: center; }
    .hero__stats { justify-content: center; }
    .hero__visual { display: none; }
    .features__grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .articles-grid { grid-template-columns: 1fr; }
    .ratings-grid { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; }
    .contact-section__grid { grid-template-columns: 1fr; }
    .about-section__grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .about-values { grid-template-columns: 1fr; }
    .hero__stats { flex-wrap: wrap; gap: 1rem; }
    .game-embed__frame { height: 380px; }
    .htp-sidebar { position: static; }
    .footer__bottom { flex-direction: column; text-align: center; }
    .cookie-consent {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .section { padding: 3.5rem 0; }
    .hero { padding: 3.5rem 0; }
    .btn-play { font-size: 0.95rem; padding: 0.75rem 1.5rem; }
    .game-embed__frame { height: 300px; }
    .page-hero { padding: 3.5rem 0 2.5rem; }
    .htp-step { flex-direction: column; align-items: center; text-align: center; }
}