/*
 * PROJECT: dontteltaker.com
 * DOMAIN: dontteltaker.com
 * GAME: Ninja Veggie Slice
 *
 * DESIGN:
 * - CSS: BEM
 * - Palette: Futurism (dark #0b0c10, cyan #66fcf1, accent electric)
 * - Effect: Neon Glow
 * - Fonts: Chakra Petch (heading) + Titillium Web (body)
 * - Buttons: Neon Border
 *
 * Created: January 2026
 */

@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@400;600;700&family=Titillium+Web:wght@300;400;600&display=swap');

:root {
    --bg-dark: #0b0c10;
    --bg-card: #1a1b22;
    --bg-surface: #12131a;
    --neon-cyan: #66fcf1;
    --neon-cyan-dim: rgba(102, 252, 241, 0.15);
    --neon-cyan-glow: rgba(102, 252, 241, 0.4);
    --electric-green: #45a29e;
    --slash-orange: #ff6b35;
    --slash-orange-glow: rgba(255, 107, 53, 0.4);
    --blade-silver: #c5c6c7;
    --text-primary: #e0e0e0;
    --text-muted: #8a8b8e;
    --text-heading: #ffffff;
    --border-glow: rgba(102, 252, 241, 0.3);
    --font-heading: 'Chakra Petch', sans-serif;
    --font-body: 'Titillium Web', sans-serif;
    --transition: 0.3s ease;
    --radius: 4px;
    --header-height: 70px;
}

*, *::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-dark);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 16px;
}

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

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

a:hover {
    color: #ffffff;
}

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

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;
}

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

.section {
    padding: 80px 0;
}

.section--dark {
    background-color: var(--bg-surface);
}

.section__header {
    text-align: center;
    margin-bottom: 50px;
}

.section__title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: var(--text-heading);
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.section__title::after {
    content: '';
    display: block;
    width: 60%;
    height: 2px;
    background: var(--neon-cyan);
    margin: 10px auto 0;
    box-shadow: 0 0 8px var(--neon-cyan);
}

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

/* ========================
   COOKIE CONSENT
   ======================== */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 400px;
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius);
    padding: 20px 24px;
    z-index: 9999;
    box-shadow: 0 0 20px rgba(0,0,0,0.5), 0 0 12px var(--neon-cyan-glow);
}

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

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

.cookie-consent__text a {
    color: var(--neon-cyan);
}

/* ========================
   HEADER
   ======================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(11, 12, 16, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-glow);
    padding: 0 20px;
    height: var(--header-height);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    height: var(--header-height);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--neon-cyan);
    text-decoration: none;
    letter-spacing: 1px;
    text-shadow: 0 0 10px var(--neon-cyan-glow), 0 0 20px var(--neon-cyan-glow);
    transition: text-shadow var(--transition);
}

.logo:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 16px var(--neon-cyan), 0 0 30px var(--neon-cyan-glow);
}

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

.nav__link {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-primary);
    text-decoration: none;
    position: relative;
    transition: color var(--transition);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--neon-cyan);
    box-shadow: 0 0 6px var(--neon-cyan);
    transition: width var(--transition);
}

.nav__link:hover {
    color: var(--neon-cyan);
}

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

.nav__link--active {
    color: var(--neon-cyan);
}

.nav__link--active::after {
    width: 100%;
}

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

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

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

.nav__toggle.is-active span:nth-child(2) {
    opacity: 0;
}

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

/* ========================
   HERO
   ======================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    position: relative;
    overflow: hidden;
    background: var(--bg-dark);
}

.hero__bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(102, 252, 241, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(102, 252, 241, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.hero__bg-glow {
    position: absolute;
    top: 20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(102, 252, 241, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero__bg-glow-2 {
    position: absolute;
    bottom: 10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero__badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--neon-cyan);
    border: 1px solid var(--neon-cyan);
    padding: 4px 14px;
    margin-bottom: 20px;
    box-shadow: 0 0 8px var(--neon-cyan-glow);
}

.hero__title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero__title-accent {
    color: var(--neon-cyan);
    text-shadow: 0 0 12px var(--neon-cyan-glow);
}

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

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

.hero__meta {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(102, 252, 241, 0.15);
}

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

.hero__meta-value {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--neon-cyan);
    display: block;
    text-shadow: 0 0 10px var(--neon-cyan-glow);
}

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

.hero__visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.hero__game-preview {
    position: relative;
    width: 100%;
    max-width: 460px;
}

.hero__game-frame {
    border: 1px solid var(--border-glow);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-card);
    box-shadow: 0 0 20px var(--neon-cyan-glow), 0 0 60px rgba(102, 252, 241, 0.08);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__game-icon {
    width: 140px;
    height: 140px;
    object-fit: contain;
    filter: drop-shadow(0 0 16px var(--neon-cyan-glow));
}

.hero__game-label {
    text-align: center;
}

.hero__game-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--blade-silver);
    letter-spacing: 1px;
}

/* ========================
   BUTTONS
   ======================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    border: none;
}

.btn-play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 36px;
    border-radius: var(--radius);
    cursor: pointer;
    background: transparent;
    color: var(--neon-cyan);
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 0 10px var(--neon-cyan-glow), inset 0 0 10px transparent;
    transition: all var(--transition);
}

.btn-play:hover {
    background: var(--neon-cyan);
    color: var(--bg-dark);
    box-shadow: 0 0 20px var(--neon-cyan), 0 0 40px var(--neon-cyan-glow);
}

.btn--primary {
    background: var(--neon-cyan);
    color: var(--bg-dark);
    font-weight: 700;
    box-shadow: 0 0 16px var(--neon-cyan-glow);
}

.btn--primary:hover {
    background: #ffffff;
    color: var(--bg-dark);
    box-shadow: 0 0 24px var(--neon-cyan), 0 0 40px var(--neon-cyan-glow);
}

.btn--outline {
    background: transparent;
    color: var(--neon-cyan);
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 0 8px var(--neon-cyan-glow);
}

.btn--outline:hover {
    background: var(--neon-cyan-dim);
    color: #ffffff;
    box-shadow: 0 0 16px var(--neon-cyan-glow);
}

.btn--orange {
    background: transparent;
    color: var(--slash-orange);
    border: 2px solid var(--slash-orange);
    box-shadow: 0 0 8px var(--slash-orange-glow);
}

.btn--orange:hover {
    background: var(--slash-orange);
    color: #ffffff;
    box-shadow: 0 0 20px var(--slash-orange), 0 0 40px var(--slash-orange-glow);
}

.btn--sm {
    padding: 10px 22px;
    font-size: 0.78rem;
}

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

.feature-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: all var(--transition);
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.feature-card:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px var(--neon-cyan-glow);
    transform: translateY(-4px);
}

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

.feature-card__icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.feature-card__title {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: var(--neon-cyan);
}

.feature-card__text {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ========================
   HOW TO PLAY (HOME)
   ======================== */
.steps__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step-card {
    position: relative;
    text-align: center;
    padding: 32px 20px;
    background: var(--bg-card);
    border: 1px solid rgba(102, 252, 241, 0.12);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.step-card:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 16px var(--neon-cyan-glow);
}

.step-card__number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--neon-cyan);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 12px;
    text-shadow: 0 0 20px var(--neon-cyan);
}

.step-card__title {
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: var(--text-heading);
}

.step-card__text {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* ========================
   ARTICLE CARDS (BLOG)
   ======================== */
.articles__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.article-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}

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

.article-card__image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-card) 100%);
}

.article-card__image-placeholder {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, var(--bg-surface) 0%, #1e2030 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    border-bottom: 1px solid var(--border-glow);
}

.article-card__content {
    padding: 24px;
}

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

.article-card__category {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--neon-cyan);
    border: 1px solid var(--neon-cyan);
    padding: 2px 10px;
}

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

.article-card__title {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--text-heading);
    transition: color var(--transition);
}

.article-card__excerpt {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 18px;
}

.article-card__link {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--neon-cyan);
    z-index: 2;
    position: relative;
}

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

.article-card__overlay:hover ~ .article-card__content .article-card__title,
.article-card:hover .article-card__title {
    color: var(--neon-cyan);
}

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

.faq__item {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq__item.is-open {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 12px var(--neon-cyan-glow);
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-heading);
    text-align: left;
    gap: 16px;
    transition: color var(--transition);
}

.faq__question:hover {
    color: var(--neon-cyan);
}

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

.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 ease;
    padding: 0 24px;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

.faq__item.is-open .faq__answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

/* ========================
   CONTACT FORM
   ======================== */
.contact {
    max-width: 640px;
    margin: 0 auto;
}

.form__group {
    margin-bottom: 20px;
}

.form__label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--blade-silver);
    margin-bottom: 8px;
}

.form__input,
.form__textarea,
.form__select {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius);
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
    -webkit-appearance: none;
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 10px var(--neon-cyan-glow);
}

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

.form__input::placeholder,
.form__textarea::placeholder {
    color: var(--text-muted);
}

.form__submit {
    width: 100%;
}

.form__success {
    display: none;
    text-align: center;
    padding: 24px;
    background: rgba(102, 252, 241, 0.08);
    border: 1px solid var(--neon-cyan);
    border-radius: var(--radius);
    color: var(--neon-cyan);
    font-family: var(--font-heading);
    font-weight: 600;
    margin-top: 20px;
    box-shadow: 0 0 16px var(--neon-cyan-glow);
}

/* ========================
   CTA SECTION
   ======================== */
.cta {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-surface) 50%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(102, 252, 241, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.cta__title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta__subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}

/* ========================
   FOOTER
   ======================== */
.site-footer {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-glow);
    padding: 60px 0 0;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand__logo {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan-glow);
    display: inline-block;
    margin-bottom: 14px;
}

.footer-brand__text {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 16px;
}

.footer-col__title {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--neon-cyan);
    margin-bottom: 18px;
}

.footer-col__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col__list a {
    font-size: 0.88rem;
    color: var(--text-muted);
    transition: color var(--transition);
}

.footer-col__list a:hover {
    color: var(--neon-cyan);
}

.site-footer__bottom {
    border-top: 1px solid rgba(102, 252, 241, 0.1);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

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

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

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

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

/* ========================
   PAGE HERO (inner pages)
   ======================== */
.page-hero {
    padding: 120px 0 60px;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-glow);
    position: relative;
    overflow: hidden;
}

.page-hero__grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(102, 252, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(102, 252, 241, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.page-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-hero__title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 14px;
}

.page-hero__title span {
    color: var(--neon-cyan);
    text-shadow: 0 0 12px var(--neon-cyan-glow);
}

.page-hero__subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
}

/* ========================
   BREADCRUMB
   ======================== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

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

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

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

.breadcrumb__current {
    color: var(--neon-cyan);
}

/* ========================
   ARTICLE SINGLE
   ======================== */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    align-items: start;
}

.article-content {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius);
    padding: 48px;
}

.article-content h2 {
    font-size: 1.5rem;
    color: var(--neon-cyan);
    margin: 32px 0 14px;
}

.article-content h3 {
    font-size: 1.15rem;
    color: var(--text-heading);
    margin: 24px 0 10px;
}

.article-content p {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 0.97rem;
    line-height: 1.75;
}

.article-content ul,
.article-content ol {
    margin: 16px 0;
    padding-left: 24px;
}

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

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

.article-content li {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 8px;
    line-height: 1.6;
}

.article-content strong {
    color: var(--text-heading);
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-glow);
    flex-wrap: wrap;
}

.article-meta__category {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--neon-cyan);
    border: 1px solid var(--neon-cyan);
    padding: 3px 12px;
}

.article-meta__date,
.article-meta__read {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.article-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 20px;
}

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

.sidebar-widget {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius);
    padding: 24px;
}

.sidebar-widget__title {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--neon-cyan);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-glow);
}

.sidebar-widget__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sidebar-article {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-article__title {
    font-size: 0.88rem;
    color: var(--text-primary);
    transition: color var(--transition);
}

.sidebar-article__title:hover {
    color: var(--neon-cyan);
}

.sidebar-article__date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ========================
   ABOUT PAGE
   ======================== */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 1.5rem;
    color: var(--neon-cyan);
    margin: 32px 0 14px;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 0.97rem;
    line-height: 1.75;
}

.about-content ul {
    list-style: none;
    margin: 16px 0;
}

.about-content ul li {
    color: var(--text-muted);
    font-size: 0.95rem;
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.about-content ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--neon-cyan);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin: 40px 0;
}

.about-stat {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    transition: all var(--transition);
}

.about-stat:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 16px var(--neon-cyan-glow);
}

.about-stat__value {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan-glow);
    display: block;
}

.about-stat__label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 6px;
}

/* ========================
   HOW TO PLAY PAGE
   ======================== */
.htp-content {
    max-width: 860px;
    margin: 0 auto;
}

.htp-section {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius);
    padding: 40px;
    margin-bottom: 28px;
}

.htp-section h2 {
    font-size: 1.3rem;
    color: var(--neon-cyan);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-glow);
}

.htp-section p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 14px;
}

.htp-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 20px;
}

.htp-control {
    background: var(--bg-surface);
    border: 1px solid rgba(102, 252, 241, 0.12);
    border-radius: var(--radius);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.htp-control__key {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--neon-cyan);
    background: rgba(102, 252, 241, 0.1);
    border: 1px solid var(--neon-cyan);
    padding: 4px 10px;
    border-radius: 2px;
    white-space: nowrap;
    min-width: 90px;
    text-align: center;
}

.htp-control__desc {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.htp-tips {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.htp-tip {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--bg-surface);
    border-left: 3px solid var(--neon-cyan);
    padding: 14px 18px;
    border-radius: 0 var(--radius) var(--radius) 0;
}

.htp-tip__icon {
    color: var(--neon-cyan);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

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

/* ========================
   BLOG PAGE
   ======================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

/* ========================
   LEGAL PAGES
   ======================== */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 20px 60px;
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--neon-cyan);
    margin: 36px 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-glow);
}

.legal-content h1 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    margin-bottom: 8px;
}

.legal-content .legal-updated {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 32px;
}

.legal-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.78;
    margin-bottom: 14px;
}

.legal-content ul {
    list-style: none;
    margin: 14px 0 20px 0;
}

.legal-content ul li {
    color: var(--text-muted);
    font-size: 0.93rem;
    padding: 6px 0 6px 20px;
    position: relative;
    line-height: 1.65;
}

.legal-content ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--neon-cyan);
}

.legal-content a {
    color: var(--neon-cyan);
}

/* ========================
   PLAY PAGE
   ======================== */
.play-section {
    padding: 100px 0 60px;
}

.play-section__inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.play-frame-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--bg-card);
    border: 1px solid var(--neon-cyan);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 0 30px var(--neon-cyan-glow), 0 0 80px rgba(102, 252, 241, 0.06);
    margin-bottom: 28px;
}

.play-frame-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.play-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.play-meta__title {
    font-size: 1.3rem;
}

.play-meta__info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.play-meta__tag {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    border: 1px solid rgba(102, 252, 241, 0.2);
    padding: 4px 12px;
    border-radius: var(--radius);
}

/* ========================
   CONTACT PAGE
   ======================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info__item {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: border-color var(--transition);
}

.contact-info__item:hover {
    border-color: var(--neon-cyan);
}

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

.contact-info__title {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--neon-cyan);
    margin-bottom: 6px;
}

.contact-info__text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========================
   PAGINATION
   ======================== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
}

.pagination__btn {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 10px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius);
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.pagination__btn:hover,
.pagination__btn--active {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow: 0 0 8px var(--neon-cyan-glow);
}

/* ========================
   UTILITY
   ======================== */
.text-center { text-align: center; }
.text-cyan { color: var(--neon-cyan); }
.mt-8 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }

.neon-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    border: none;
    margin: 40px 0;
    box-shadow: 0 0 8px var(--neon-cyan);
}

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 1024px) {
    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .hero__description {
        max-width: 100%;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__meta {
        justify-content: center;
    }

    .hero__visual {
        order: -1;
    }

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

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

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

    .article-sidebar {
        position: static;
    }

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

@media (max-width: 768px) {
    .nav__list {
        display: none;
        position: fixed;
        top: calc(var(--header-height) - 1px);
        left: 0;
        right: 0;
        background: rgba(11, 12, 16, 0.98);
        flex-direction: column;
        padding: 24px 20px;
        gap: 8px;
        border-bottom: 1px solid var(--border-glow);
    }

    .nav__list.is-open {
        display: flex;
    }

    .nav__link {
        padding: 12px 0;
        font-size: 1rem;
    }

    .nav__toggle {
        display: flex;
    }

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

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

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

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

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

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

    .site-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .section {
        padding: 60px 0;
    }

    .article-content {
        padding: 28px 20px;
    }

    .htp-section {
        padding: 28px 20px;
    }

    .hero__game-frame {
        aspect-ratio: 16/9;
    }

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

@media (max-width: 480px) {
    .hero__meta {
        gap: 16px;
    }

    .play-frame-wrapper {
        aspect-ratio: 1/1;
    }
}