/*
 * PROJECT: gloverexposio
 * DOMAIN: gloverexposio.com
 * GAME: Super Ninja Adventure
 *
 * DESIGN:
 * - CSS: BEM
 * - Palette: Premium/Luxury (Dark #1a1a2e, Gold #d4af37, Playfair Display/Montserrat)
 * - Effect: Gradient Mesh + Neon Glow accents
 * - Fonts: Playfair Display (heading) + Montserrat (body)
 * - Buttons: Gradient with 3D Effect
 *
 * Created: 2026
 */

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

/* =====================
   CSS CUSTOM PROPERTIES
   ===================== */
:root {
    --ninja-dark: #1a1a2e;
    --ninja-deep: #16213e;
    --ninja-mid: #0f3460;
    --ninja-gold: #d4af37;
    --ninja-gold-light: #f0d060;
    --ninja-gold-dark: #a8860a;
    --ninja-silver: #c0c0c0;
    --ninja-red: #c0392b;
    --ninja-red-bright: #e74c3c;
    --ninja-white: #f5f0e8;
    --ninja-gray: #888888;
    --ninja-gray-light: #2a2a4a;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;

    --shadow-gold: 0 0 20px rgba(212, 175, 55, 0.4);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-text: 0 2px 8px rgba(0, 0, 0, 0.8);

    --border-gold: 1px solid rgba(212, 175, 55, 0.3);
    --radius: 4px;
    --radius-lg: 8px;

    --transition: all 0.3s ease;
    --transition-slow: all 0.6s ease;

    --header-height: 70px;
}

/* =====================
   RESET & BASE
   ===================== */
*, *::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(--ninja-dark);
    color: var(--ninja-white);
    line-height: 1.7;
    min-height: 100vh;
}

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

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

a:hover {
    color: var(--ninja-gold-light);
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.3;
    color: var(--ninja-white);
}

p {
    margin-bottom: 1rem;
}

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

.section {
    padding: 5rem 0;
}

.section--dark {
    background-color: var(--ninja-deep);
}

.section--mid {
    background-color: var(--ninja-mid);
}

.text-gold {
    color: var(--ninja-gold);
}

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

.stars {
    color: #ffc107;
}

/* =====================
   CARD BASE (mandatory)
   ===================== */
.article-card,
.offer-card,
.card {
    position: relative;
}

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

/* =====================
   COOKIE CONSENT
   ===================== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(13, 13, 31, 0.98);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(12px);
    padding: 1.25rem 0;
}

.cookie-consent__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-consent__text {
    color: var(--ninja-silver);
    font-size: 0.88rem;
    margin-bottom: 0;
    flex: 1;
    min-width: 280px;
}

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

.cookie-consent__btn {
    flex-shrink: 0;
    padding: 0.6rem 1.5rem;
}

/* =====================
   SECTION HEADINGS
   ===================== */
.section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.section__title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--ninja-white);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section__title::after {
    content: '';
    display: block;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--ninja-gold), transparent);
    margin: 0.5rem auto 0;
}

.section__subtitle {
    color: var(--ninja-silver);
    font-size: 1.05rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

/* =====================
   HEADER / NAVIGATION
   ===================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

.site-header--scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--ninja-gold);
    letter-spacing: 1px;
    text-shadow: var(--shadow-gold);
    transition: var(--transition);
}

.logo:hover {
    color: var(--ninja-gold-light);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.7);
}

.nav {
    display: flex;
    align-items: center;
}

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

.nav__link {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ninja-white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.3rem 0;
    position: relative;
    transition: var(--transition);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--ninja-gold);
    transition: var(--transition);
}

.nav__link:hover {
    color: var(--ninja-gold);
}

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

.nav__link--active {
    color: var(--ninja-gold);
}

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

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

.nav__toggle-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ninja-gold);
    transition: var(--transition);
}

.nav__toggle.is-active .nav__toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.nav__toggle.is-active .nav__toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* =====================
   HERO SECTION
   ===================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--header-height);
    background:
        radial-gradient(ellipse at 20% 50%, rgba(192, 57, 43, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(15, 52, 96, 0.4) 0%, transparent 60%),
        linear-gradient(135deg, var(--ninja-dark) 0%, var(--ninja-deep) 50%, #0a0a1e 100%);
}

.hero__bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 40px,
            rgba(212, 175, 55, 0.02) 40px,
            rgba(212, 175, 55, 0.02) 41px
        );
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--ninja-gold);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.4rem 1rem;
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: var(--shadow-text);
}

.hero__title-accent {
    color: var(--ninja-gold);
    display: block;
}

.hero__description {
    font-size: 1.1rem;
    color: var(--ninja-silver);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-weight: 300;
}

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

.hero__meta {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: var(--border-gold);
}

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

.hero__meta-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ninja-gold);
}

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

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

.hero__game-card {
    position: relative;
    background: rgba(22, 33, 62, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card), var(--shadow-gold);
    width: 100%;
    max-width: 480px;
}

.hero__game-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.hero__game-icon {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.hero__game-info {
    padding: 1.5rem;
}

.hero__game-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--ninja-gold);
    margin-bottom: 0.5rem;
}

.hero__game-desc {
    font-size: 0.9rem;
    color: var(--ninja-silver);
    margin-bottom: 1rem;
}

.hero__game-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.hero__tag {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--ninja-gold);
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.1);
    transform: translateY(100%);
    transition: var(--transition);
}

.btn:hover::before {
    transform: translateY(0);
}

.btn-play,
.btn--primary {
    background: linear-gradient(135deg, var(--ninja-gold-dark) 0%, var(--ninja-gold) 50%, var(--ninja-gold-light) 100%);
    color: var(--ninja-dark);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4), inset 0 1px 0 rgba(255,255,255,0.2);
    text-shadow: none;
}

.btn-play:hover,
.btn--primary:hover {
    box-shadow: 0 8px 28px rgba(212, 175, 55, 0.6), inset 0 1px 0 rgba(255,255,255,0.2);
    transform: translateY(-2px);
    color: var(--ninja-dark);
}

.btn--secondary {
    background: transparent;
    color: var(--ninja-gold);
    border: 1px solid rgba(212, 175, 55, 0.5);
}

.btn--secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--ninja-gold);
    color: var(--ninja-gold);
    transform: translateY(-2px);
}

.btn--lg {
    padding: 1.1rem 2.5rem;
    font-size: 0.95rem;
}

/* =====================
   FEATURES SECTION
   ===================== */
.features {
    background: var(--ninja-deep);
}

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

.feature-card {
    position: relative;
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
    overflow: hidden;
}

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

.feature-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card), 0 0 20px rgba(212, 175, 55, 0.1);
}

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

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

.feature-card__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--ninja-gold);
    margin-bottom: 0.75rem;
}

.feature-card__desc {
    color: var(--ninja-silver);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* =====================
   GAME PREVIEW SECTION
   ===================== */
.game-preview {
    background: var(--ninja-dark);
    position: relative;
    overflow: hidden;
}

.game-preview::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(192, 57, 43, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(212, 175, 55, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

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

.game-preview__screenshot {
    position: relative;
}

.game-preview__frame {
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card), var(--shadow-gold);
}

.game-preview__img {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--ninja-deep), var(--ninja-mid));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}

.game-preview__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
    border-radius: var(--radius-lg);
    pointer-events: none;
}

.game-preview__title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.game-preview__text {
    color: var(--ninja-silver);
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    line-height: 1.8;
}

.game-preview__controls {
    margin: 2rem 0;
}

.game-preview__controls-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--ninja-gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.controls-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.controls-list__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--ninja-silver);
}

.controls-list__key {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 28px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 3px;
    color: var(--ninja-gold);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0 6px;
    font-family: var(--font-body);
}

/* =====================
   STATS SECTION
   ===================== */
.stats {
    background: linear-gradient(135deg, var(--ninja-mid), var(--ninja-deep));
    border-top: var(--border-gold);
    border-bottom: var(--border-gold);
    padding: 3rem 0;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item__value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--ninja-gold);
    display: block;
    text-shadow: var(--shadow-gold);
}

.stat-item__label {
    font-size: 0.8rem;
    color: var(--ninja-silver);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.25rem;
}

/* =====================
   BLOG / ARTICLES SECTION
   ===================== */
.blog {
    background: var(--ninja-dark);
}

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

.article-card {
    position: relative;
    background: rgba(22, 33, 62, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.article-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card), 0 0 20px rgba(212, 175, 55, 0.1);
}

.article-card__image {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--ninja-mid), var(--ninja-deep));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

.article-card__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(22, 33, 62, 0.8));
}

.article-card__content {
    padding: 1.5rem;
}

.article-card__category {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--ninja-gold);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.2rem 0.6rem;
    border-radius: 2px;
    margin-bottom: 0.75rem;
}

.article-card__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ninja-white);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    transition: var(--transition);
}

.article-card:hover .article-card__title {
    color: var(--ninja-gold);
}

.article-card__excerpt {
    color: var(--ninja-silver);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

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

/* =====================
   FAQ SECTION
   ===================== */
.faq {
    background: var(--ninja-deep);
}

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

.faq__item {
    background: rgba(26, 26, 46, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq__item.is-open {
    border-color: rgba(212, 175, 55, 0.4);
}

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

.faq__question:hover {
    color: var(--ninja-gold);
}

.faq__item.is-open .faq__question {
    color: var(--ninja-gold);
}

.faq__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    color: var(--ninja-gold);
    font-size: 1rem;
    line-height: 1;
    transition: var(--transition);
}

.faq__item.is-open .faq__icon {
    transform: rotate(45deg);
    background: rgba(212, 175, 55, 0.1);
}

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

.faq__answer-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--ninja-silver);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* =====================
   CTA SECTION
   ===================== */
.cta {
    background:
        radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%),
        linear-gradient(135deg, var(--ninja-deep), var(--ninja-dark));
    border-top: var(--border-gold);
    text-align: center;
    padding: 5rem 0;
}

.cta__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.cta__subtitle {
    color: var(--ninja-silver);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* =====================
   FOOTER
   ===================== */
.site-footer {
    background: #0d0d1f;
    border-top: var(--border-gold);
    padding: 4rem 0 2rem;
}

.footer__top {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.footer__brand-desc {
    color: var(--ninja-silver);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 1rem;
    font-weight: 300;
}

.footer__heading {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--ninja-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.25rem;
}

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

.footer__link {
    color: var(--ninja-silver);
    font-size: 0.88rem;
    font-weight: 400;
    transition: var(--transition);
}

.footer__link:hover {
    color: var(--ninja-gold);
    padding-left: 4px;
}

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

.footer__copyright {
    color: var(--ninja-gray);
    font-size: 0.82rem;
}

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

.footer__legal-link {
    color: var(--ninja-gray);
    font-size: 0.82rem;
    transition: var(--transition);
}

.footer__legal-link:hover {
    color: var(--ninja-gold);
}

/* =====================
   PAGE HEADER (inner pages)
   ===================== */
.page-header {
    padding: 8rem 0 4rem;
    background:
        radial-gradient(ellipse at 50% 100%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
        linear-gradient(135deg, var(--ninja-dark), var(--ninja-deep));
    border-bottom: var(--border-gold);
    text-align: center;
}

.page-header__title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    margin-bottom: 1rem;
}

.page-header__subtitle {
    color: var(--ninja-silver);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 0.82rem;
}

.breadcrumb__item {
    color: var(--ninja-gray);
}

.breadcrumb__sep {
    color: var(--ninja-gold-dark);
}

.breadcrumb__item--active {
    color: var(--ninja-gold);
}

/* =====================
   HOW TO PLAY PAGE
   ===================== */
.how-to-play {
    background: var(--ninja-dark);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.step-card {
    position: relative;
    background: rgba(22, 33, 62, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.step-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.step-card__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ninja-gold-dark), var(--ninja-gold));
    color: var(--ninja-dark);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 900;
    margin-bottom: 1.25rem;
}

.step-card__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--ninja-gold);
    margin-bottom: 0.75rem;
}

.step-card__desc {
    color: var(--ninja-silver);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.tips-section {
    background: rgba(22, 33, 62, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin-top: 3rem;
}

.tips-section__title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--ninja-gold);
    margin-bottom: 1.5rem;
}

.tips-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.tips-list__item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 1rem;
    background: rgba(26, 26, 46, 0.5);
    border-radius: var(--radius);
    border-left: 3px solid var(--ninja-gold);
}

.tips-list__icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.tips-list__text {
    color: var(--ninja-silver);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* =====================
   ABOUT PAGE
   ===================== */
.about-content {
    background: var(--ninja-dark);
}

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

.about-text p {
    color: var(--ninja-silver);
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    line-height: 1.8;
}

.about-text h3 {
    font-family: var(--font-heading);
    color: var(--ninja-gold);
    margin: 2rem 0 1rem;
    font-size: 1.3rem;
}

.about-visual {
    position: relative;
}

.about-card {
    background: rgba(22, 33, 62, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-card), var(--shadow-gold);
}

.about-card__icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.about-card__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--ninja-gold);
    margin-bottom: 1rem;
}

.about-card__text {
    color: var(--ninja-silver);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.team-section {
    background: var(--ninja-deep);
    padding: 5rem 0;
}

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

.team-card {
    position: relative;
    background: rgba(26, 26, 46, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.team-card__avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ninja-gold-dark), var(--ninja-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.25rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.team-card__name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--ninja-white);
    margin-bottom: 0.25rem;
}

.team-card__role {
    color: var(--ninja-gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.team-card__bio {
    color: var(--ninja-silver);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* =====================
   BLOG PAGE
   ===================== */
.blog-page {
    background: var(--ninja-dark);
    padding: 5rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.blog-main-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.blog-card {
    position: relative;
    background: rgba(22, 33, 62, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    gap: 0;
    flex-direction: column;
    transition: var(--transition);
}

.blog-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: var(--shadow-card), 0 0 20px rgba(212, 175, 55, 0.08);
    transform: translateY(-3px);
}

.blog-card__image {
    width: 100%;
    aspect-ratio: 16/8;
    background: linear-gradient(135deg, var(--ninja-mid), var(--ninja-deep));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
}

.blog-card__body {
    padding: 1.75rem;
}

.blog-card__category {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--ninja-gold);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.2rem 0.6rem;
    border-radius: 2px;
    margin-bottom: 1rem;
}

.blog-card__title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--ninja-white);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    transition: var(--transition);
}

.blog-card:hover .blog-card__title {
    color: var(--ninja-gold);
}

.blog-card__excerpt {
    color: var(--ninja-silver);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.blog-card__meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.78rem;
    color: var(--ninja-gray);
}

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

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

.sidebar-widget {
    background: rgba(22, 33, 62, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
}

.sidebar-widget__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--ninja-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

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

.sidebar-list__item a {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: var(--ninja-silver);
    font-size: 0.88rem;
    transition: var(--transition);
}

.sidebar-list__item a:hover {
    color: var(--ninja-gold);
}

.sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.sidebar-tag {
    background: rgba(212, 175, 55, 0.07);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--ninja-silver);
    font-size: 0.78rem;
    padding: 0.3rem 0.7rem;
    border-radius: 2px;
    transition: var(--transition);
}

.sidebar-tag:hover {
    background: rgba(212, 175, 55, 0.15);
    color: var(--ninja-gold);
}

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

.article-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.article-content h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--ninja-gold);
    margin: 2.5rem 0 1rem;
}

.article-content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--ninja-white);
    margin: 2rem 0 0.75rem;
}

.article-content p {
    color: var(--ninja-silver);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
}

.article-content ul, .article-content ol {
    margin: 1rem 0 1.5rem 1.5rem;
    color: var(--ninja-silver);
    font-size: 0.95rem;
    line-height: 1.8;
}

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

.article-content li {
    margin-bottom: 0.4rem;
}

.article-content blockquote {
    border-left: 3px solid var(--ninja-gold);
    padding: 1rem 1.5rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 1.5rem 0;
    color: var(--ninja-silver);
    font-style: italic;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem 0;
    border-top: var(--border-gold);
    border-bottom: var(--border-gold);
    margin-bottom: 2.5rem;
    font-size: 0.85rem;
    color: var(--ninja-gray);
    flex-wrap: wrap;
}

.article-meta__tag {
    background: rgba(212, 175, 55, 0.1);
    color: var(--ninja-gold);
    padding: 0.15rem 0.6rem;
    border-radius: 2px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.contact-info__title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--ninja-gold);
    margin-bottom: 1rem;
}

.contact-info__text {
    color: var(--ninja-silver);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(22, 33, 62, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius);
}

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

.contact-detail__label {
    font-size: 0.75rem;
    color: var(--ninja-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.2rem;
}

.contact-detail__value {
    color: var(--ninja-silver);
    font-size: 0.9rem;
}

.contact-form {
    background: rgba(22, 33, 62, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

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

.form-group label {
    display: block;
    color: var(--ninja-silver);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius);
    color: var(--ninja-white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    padding: 0.8rem 1rem;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--ninja-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--ninja-gray);
}

/* =====================
   LEGAL PAGES (Privacy, Terms)
   ===================== */
.legal-page {
    background: var(--ninja-dark);
    padding: 5rem 0;
}

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

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--ninja-gold);
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.legal-content h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--ninja-white);
    margin: 1.5rem 0 0.75rem;
}

.legal-content p {
    color: var(--ninja-silver);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.legal-content ul {
    list-style: disc;
    margin: 0.75rem 0 1.25rem 1.5rem;
    color: var(--ninja-silver);
    font-size: 0.95rem;
    line-height: 1.8;
}

.legal-content a {
    color: var(--ninja-gold);
    text-decoration: underline;
    text-decoration-color: rgba(212, 175, 55, 0.4);
}

.legal-content a:hover {
    color: var(--ninja-gold-light);
}

/* =====================
   MOBILE MENU
   ===================== */
.nav__list.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: calc(var(--header-height) - 1px);
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.98);
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: var(--border-gold);
    backdrop-filter: blur(12px);
    z-index: 999;
}

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

    .hero__actions {
        justify-content: center;
    }

    .hero__meta {
        justify-content: center;
    }

    .hero__visual {
        order: -1;
    }

    .hero__game-card {
        max-width: 400px;
    }

    .game-preview__layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

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

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

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

    .nav__list {
        display: none;
    }

    .nav__toggle {
        display: flex;
    }

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

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

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

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

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

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

    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 2rem;
    }

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

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

    .hero__meta {
        flex-wrap: wrap;
        gap: 1rem;
    }

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

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

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