/*
 * PROJECT: odyseymakro.com
 * DOMAIN: odyseymakro.com
 * GAME: Ninja Veggie Slice
 *
 * DESIGN:
 * - CSS: BEM
 * - Palette: Хром и неон (Chrome & Neon)
 * - Effect: Neon Glow
 * - Fonts: Michroma (heading) + Rajdhani (body)
 * - Buttons: Neon Border
 *
 * Created: January 2026
 */

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

/* ===== CSS VARIABLES ===== */
:root {
    --chrome-silver: #c0c0c0;
    --electric-cyan: #00e5ff;
    --neon-green: #39ff14;
    --metal-dark: #1a1a2e;
    --metal-mid: #16213e;
    --metal-surface: #0f3460;
    --chrome-light: #e8e8e8;
    --neon-pink: #ff006e;
    --electric-blue: #0077ff;
    --blade-silver: #a8b2c0;
    --bg-primary: #0d1117;
    --bg-secondary: #161b22;
    --bg-card: #1c2333;
    --text-primary: #e6edf3;
    --text-secondary: #8b949e;
    --text-chrome: #c0c0c0;
    --border-glow: rgba(0, 229, 255, 0.3);
    --shadow-neon: 0 0 10px rgba(0, 229, 255, 0.5), 0 0 20px rgba(0, 229, 255, 0.3), 0 0 40px rgba(0, 229, 255, 0.1);
    --shadow-neon-pink: 0 0 10px rgba(255, 0, 110, 0.5), 0 0 20px rgba(255, 0, 110, 0.3);
    --shadow-neon-green: 0 0 10px rgba(57, 255, 20, 0.5), 0 0 20px rgba(57, 255, 20, 0.3);
    --font-heading: 'Michroma', monospace;
    --font-body: 'Rajdhani', sans-serif;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
    --header-height: 70px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden !important;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden !important;
}

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

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

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

ul {
    list-style: none;
}

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

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

.stars {
    color: #ffc107;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
    line-height: 1.2;
}

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

p {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

.section {
    padding: 5rem 0;
}

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

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

.section__title {
    color: var(--electric-cyan);
    text-shadow: var(--shadow-neon);
    margin-bottom: 0.75rem;
    position: relative;
    display: inline-block;
}

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

.section__subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-family: var(--font-body);
    font-weight: 400;
}

/* ===== HEADER ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-glow);
    height: var(--header-height);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--electric-cyan);
    text-shadow: var(--shadow-neon);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.logo:hover {
    color: var(--chrome-silver);
    text-shadow: 0 0 10px rgba(192, 192, 192, 0.6);
}

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

.site-nav__link {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
    padding-bottom: 2px;
}

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

.site-nav__link:hover,
.site-nav__link--active {
    color: var(--electric-cyan);
}

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

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

.site-header__menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--electric-cyan);
    transition: var(--transition);
    box-shadow: 0 0 6px var(--electric-cyan);
}

.site-header__menu-toggle.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.site-header__menu-toggle.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

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

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0, 229, 255, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(57, 255, 20, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(255, 0, 110, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 229, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 229, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

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

.hero__badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--neon-green);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border: 1px solid var(--neon-green);
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-neon-green);
}

.hero__title {
    color: var(--chrome-silver);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(192, 192, 192, 0.3);
}

.hero__title span {
    color: var(--electric-cyan);
    text-shadow: var(--shadow-neon);
    display: block;
}

.hero__desc {
    color: var(--text-secondary);
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.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 rgba(192, 192, 192, 0.1);
}

.hero__stat {
    text-align: center;
}

.hero__stat-value {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--electric-cyan);
    text-shadow: var(--shadow-neon);
    display: block;
}

.hero__stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero__visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

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

.hero__game-frame {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: var(--shadow-neon), inset 0 0 30px rgba(0, 229, 255, 0.05);
    position: relative;
}

.hero__game-icon {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(0, 229, 255, 0.5));
    border-radius: var(--radius-md);
}

.hero__game-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 229, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero__game-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-play,
.btn--primary {
    background: transparent;
    border-color: var(--electric-cyan);
    color: var(--electric-cyan);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.3), inset 0 0 10px rgba(0, 229, 255, 0.05);
    text-shadow: 0 0 8px rgba(0, 229, 255, 0.5);
}

.btn-play:hover,
.btn--primary:hover {
    background: var(--electric-cyan);
    color: var(--bg-primary);
    box-shadow: var(--shadow-neon);
    text-shadow: none;
    transform: translateY(-2px);
}

.btn--secondary {
    background: transparent;
    border-color: var(--chrome-silver);
    color: var(--chrome-silver);
    box-shadow: 0 0 10px rgba(192, 192, 192, 0.2);
}

.btn--secondary:hover {
    background: var(--chrome-silver);
    color: var(--bg-primary);
    box-shadow: 0 0 20px rgba(192, 192, 192, 0.4);
    transform: translateY(-2px);
}

.btn--neon-green {
    background: transparent;
    border-color: var(--neon-green);
    color: var(--neon-green);
    box-shadow: var(--shadow-neon-green);
}

.btn--neon-green:hover {
    background: var(--neon-green);
    color: var(--bg-primary);
    transform: translateY(-2px);
}

.btn--sm {
    font-size: 0.85rem;
    padding: 0.5rem 1.2rem;
}

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

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 229, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

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

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

.feature-card__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.5));
}

.feature-card__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--electric-cyan);
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
}

.feature-card__desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ===== GAME SECTION ===== */
.game-section {
    background: var(--bg-secondary);
    padding: 5rem 0;
}

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

.game-showcase__content .section__title {
    text-align: left;
}

.game-showcase__content .section__title::after {
    margin-left: 0;
}

.game-showcase__desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.game-showcase__tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.tag {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.tag--cyan {
    background: rgba(0, 229, 255, 0.1);
    color: var(--electric-cyan);
    border: 1px solid rgba(0, 229, 255, 0.3);
}

.tag--green {
    background: rgba(57, 255, 20, 0.1);
    color: var(--neon-green);
    border: 1px solid rgba(57, 255, 20, 0.3);
}

.tag--pink {
    background: rgba(255, 0, 110, 0.1);
    color: var(--neon-pink);
    border: 1px solid rgba(255, 0, 110, 0.3);
}

.tag--silver {
    background: rgba(192, 192, 192, 0.1);
    color: var(--chrome-silver);
    border: 1px solid rgba(192, 192, 192, 0.3);
}

.game-showcase__visual {
    display: flex;
    justify-content: center;
}

.game-card-large {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-neon);
    max-width: 380px;
    width: 100%;
}

.game-card-large__image {
    width: 140px;
    height: 140px;
    object-fit: contain;
    margin: 0 auto 1.5rem;
    filter: drop-shadow(0 0 20px rgba(0, 229, 255, 0.4));
    border-radius: var(--radius-md);
}

.game-card-large__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--chrome-silver);
    margin-bottom: 0.5rem;
}

.game-card-large__desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.game-card-large__rating {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

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

.article-card {
    background: var(--bg-card);
    border: 1px solid rgba(192, 192, 192, 0.1);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.article-card:hover {
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.1);
    transform: translateY(-4px);
}

.article-card__header {
    padding: 1.5rem 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.article-card__category {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--electric-cyan);
    background: rgba(0, 229, 255, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-sm);
}

.article-card__date {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-left: auto;
}

.article-card__content {
    padding: 1rem 1.5rem 1.5rem;
}

.article-card__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--chrome-silver);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    letter-spacing: 0.03em;
    transition: color 0.3s ease;
}

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

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

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

.article-card__footer {
    padding: 0 1.5rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.article-card__read-more {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--electric-cyan);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* ===== HOW TO PLAY SECTION ===== */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    counter-reset: steps;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 229, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    border-color: rgba(0, 229, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.1);
    transform: translateY(-4px);
}

.step-card__number {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: rgba(0, 229, 255, 0.15);
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    line-height: 1;
}

.step-card__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.4));
}

.step-card__title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--electric-cyan);
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
}

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

/* ===== FAQ ===== */
.faq {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    border: 1px solid rgba(0, 229, 255, 0.15);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq__item.is-open {
    border-color: rgba(0, 229, 255, 0.4);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.1);
}

.faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    background: var(--bg-card);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--chrome-silver);
    letter-spacing: 0.03em;
    gap: 1rem;
    transition: color 0.3s ease;
}

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

.faq__item.is-open .faq__question {
    color: var(--electric-cyan);
}

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

.faq__item.is-open .faq__chevron {
    transform: rotate(180deg);
}

.faq__answer {
    background: var(--bg-secondary);
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq__answer.is-open {
    padding: 1.25rem 1.5rem;
    max-height: 500px;
}

.faq__answer p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.7;
}

/* ===== CONTROLS INFO ===== */
.controls-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.control-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-card);
    border: 1px solid rgba(0, 229, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    transition: var(--transition);
}

.control-item:hover {
    border-color: rgba(0, 229, 255, 0.4);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.1);
}

.control-item__key {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--electric-cyan);
    text-shadow: var(--shadow-neon);
    width: 50px;
    text-align: center;
    flex-shrink: 0;
}

.control-item__desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.control-item__label {
    font-weight: 700;
    color: var(--chrome-silver);
    display: block;
    margin-bottom: 0.2rem;
}

/* ===== TIPS SECTION ===== */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.tip-card {
    background: var(--bg-card);
    border-left: 3px solid var(--electric-cyan);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 1.5rem;
    box-shadow: -2px 0 20px rgba(0, 229, 255, 0.1);
    transition: var(--transition);
}

.tip-card:hover {
    transform: translateX(4px);
    box-shadow: -4px 0 30px rgba(0, 229, 255, 0.2);
}

.tip-card__title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--electric-cyan);
    margin-bottom: 0.5rem;
}

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

/* ===== CONTACT FORM ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-info__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--electric-cyan);
    margin-bottom: 1.5rem;
}

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

.contact-info__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.contact-info__icon {
    font-size: 1.3rem;
    color: var(--electric-cyan);
    width: 30px;
    flex-shrink: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--chrome-silver);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.form-group input,
.form-group textarea,
.form-group select {
    background: var(--bg-card);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--electric-cyan);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
}

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

.form-success {
    display: none;
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--neon-green);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-neon-green);
}

.form-success p {
    color: var(--neon-green);
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

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

.about-visual {
    display: flex;
    justify-content: center;
}

.about-badge {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    max-width: 320px;
    box-shadow: var(--shadow-neon);
}

.about-badge__icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 15px rgba(0, 229, 255, 0.5));
}

.about-badge__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--electric-cyan);
    margin-bottom: 0.5rem;
}

.about-badge__desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.about-content__title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--chrome-silver);
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

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

.team-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 229, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    border-color: rgba(0, 229, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.1);
    transform: translateY(-4px);
}

.team-card__avatar {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.4));
}

.team-card__name {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--chrome-silver);
    margin-bottom: 0.3rem;
}

.team-card__role {
    font-size: 0.8rem;
    color: var(--electric-cyan);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ===== ARTICLE PAGE ===== */
.article-header {
    background: var(--bg-secondary);
    padding: 4rem 0 3rem;
    border-bottom: 1px solid rgba(0, 229, 255, 0.1);
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.article-meta__category {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--electric-cyan);
    background: rgba(0, 229, 255, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-sm);
}

.article-meta__date,
.article-meta__author {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.article-header__title {
    color: var(--chrome-silver);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(192, 192, 192, 0.2);
}

.article-header__intro {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 800px;
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 0;
}

.article-body h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--electric-cyan);
    margin: 2.5rem 0 1rem;
    text-shadow: var(--shadow-neon);
}

.article-body h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--chrome-silver);
    margin: 2rem 0 0.75rem;
}

.article-body p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

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

.article-body li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    list-style: disc;
}

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

.article-body strong {
    color: var(--chrome-silver);
}

.article-body .highlight-box {
    background: var(--bg-card);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-left: 3px solid var(--electric-cyan);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 1.5rem;
    margin: 2rem 0;
    box-shadow: -2px 0 20px rgba(0, 229, 255, 0.1);
}

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

/* ===== PAGE HERO ===== */
.page-hero {
    background: var(--bg-secondary);
    padding: 4rem 0;
    border-bottom: 1px solid rgba(0, 229, 255, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0, 229, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero__title {
    color: var(--chrome-silver);
    text-shadow: 0 0 20px rgba(192, 192, 192, 0.2);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.page-hero__title span {
    color: var(--electric-cyan);
    text-shadow: var(--shadow-neon);
}

.page-hero__desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.breadcrumb__item {
    color: var(--text-secondary);
}

.breadcrumb__item a {
    color: var(--electric-cyan);
}

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

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

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--electric-cyan);
    margin: 2.5rem 0 1rem;
}

.legal-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
    color: var(--text-secondary);
}

.legal-content li {
    list-style: disc;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid rgba(0, 229, 255, 0.1);
    padding: 3rem 0 1.5rem;
}

.site-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand__logo {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--electric-cyan);
    text-shadow: var(--shadow-neon);
    display: block;
    margin-bottom: 0.75rem;
}

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

.footer-col__title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--chrome-silver);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.footer-col__list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.footer-col__list a:hover {
    color: var(--electric-cyan);
    text-shadow: 0 0 6px rgba(0, 229, 255, 0.4);
}

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

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

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

.site-footer__links a {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

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

/* ===== NEON DIVIDER ===== */
.neon-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--electric-cyan), transparent);
    margin: 2rem 0;
    opacity: 0.5;
}

/* ===== SCOREBOARD / STATS ===== */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.stat-box {
    background: var(--bg-card);
    border: 1px solid rgba(0, 229, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.stat-box:hover {
    border-color: rgba(0, 229, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.1);
}

.stat-box__value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--electric-cyan);
    text-shadow: var(--shadow-neon);
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-box__label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--metal-mid) 100%);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(0, 229, 255, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(57, 255, 20, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.cta-section__title {
    color: var(--chrome-silver);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-section__title span {
    color: var(--electric-cyan);
    text-shadow: var(--shadow-neon);
}

.cta-section__desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.cta-section__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(13, 17, 23, 0.98);
    border-top: 1px solid var(--border-glow);
    padding: 1rem 0;
    z-index: 999;
    backdrop-filter: blur(10px);
}

.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(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
    flex: 1;
    min-width: 200px;
}

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

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 46px;
    height: 46px;
    background: transparent;
    border: 2px solid var(--electric-cyan);
    border-radius: var(--radius-sm);
    color: var(--electric-cyan);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-neon);
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
    z-index: 99;
}

.scroll-top.is-visible {
    opacity: 1;
    pointer-events: all;
}

.scroll-top:hover {
    background: var(--electric-cyan);
    color: var(--bg-primary);
}

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.text-cyan { color: var(--electric-cyan); }
.text-silver { color: var(--chrome-silver); }
.text-muted { color: var(--text-secondary); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

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

@media (max-width: 768px) {
    .site-header__menu-toggle {
        display: flex;
    }

    .site-nav {
        display: none;
        position: absolute;
        top: calc(var(--header-height) - 1px);
        left: 0;
        right: 0;
        background: rgba(13, 17, 23, 0.98);
        border-bottom: 1px solid var(--border-glow);
        padding: 1rem 1.5rem;
        z-index: 99;
    }

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

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

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

    .hero__actions {
        justify-content: center;
    }

    .hero__stats {
        justify-content: center;
    }

    .hero__visual {
        order: -1;
    }

    .game-showcase {
        grid-template-columns: 1fr;
    }

    .game-showcase__content .section__title {
        text-align: center;
    }

    .game-showcase__content .section__title::after {
        margin: 0.5rem auto 0;
    }

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

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

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

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

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

    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.3rem; }

    .section { padding: 3.5rem 0; }

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

@media (max-width: 480px) {
    .site-footer__inner {
        grid-template-columns: 1fr;
    }

    .hero__stats {
        gap: 1.5rem;
    }

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

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