/*
 * PROJECT: gardertopboh.com
 * DOMAIN: gardertopboh.com
 * GAME: Tennis Dash
 *
 * DESIGN:
 * - CSS: BEM
 * - Palette: Sports / Champion
 * - Effect: Gradient Mesh + Animated Gradients
 * - Fonts: Outfit (heading) + Rubik (body)
 * - Buttons: Gradient + 3D Effect
 *
 * Created: 2026
 */

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

:root {
    --champion-gold: #ffd700;
    --trophy-orange: #ff6b00;
    --field-green: #26a96c;
    --energy-violet: #7c3aed;
    --court-blue: #0ea5e9;
    --dark-bg: #1a0a2e;
    --darker-bg: #0d0520;
    --card-bg: rgba(255, 255, 255, 0.06);
    --card-border: rgba(255, 255, 255, 0.12);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.75);
    --text-muted: rgba(255, 255, 255, 0.5);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Rubik', sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-orange: 0 0 30px rgba(255, 107, 0, 0.35);
    --shadow-violet: 0 0 30px rgba(124, 58, 237, 0.35);
    --shadow-gold: 0 0 30px rgba(255, 215, 0, 0.3);
    --transition: 0.3s ease;
    --header-height: 72px;
}

/* ===== RESET ===== */
*, *::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: var(--darker-bg);
    color: var(--text-primary);
    line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
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; }

/* ===== MESH BACKGROUND ===== */
.mesh-bg {
    background:
        radial-gradient(ellipse at 20% 20%, rgba(124, 58, 237, 0.4) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 10%, rgba(255, 107, 0, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(38, 169, 108, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 10% 70%, rgba(14, 165, 233, 0.2) 0%, transparent 50%),
        var(--darker-bg);
}

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

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

/* ===== HEADER ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(13, 5, 32, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--card-border);
    padding: 0;
}

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

.logo {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.6rem;
    background: linear-gradient(135deg, var(--trophy-orange), var(--champion-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

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

.nav__link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav__link:hover,
.nav__link--active {
    color: var(--trophy-orange);
    background: rgba(255, 107, 0, 0.1);
}

.nav__cta {
    background: linear-gradient(135deg, var(--trophy-orange), #ff9500) !important;
    color: #fff !important;
    padding: 10px 22px !important;
    border-radius: var(--radius-sm) !important;
    font-weight: 700 !important;
    box-shadow: var(--shadow-orange);
    transition: var(--transition) !important;
}

.nav__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.5);
    background: linear-gradient(135deg, #ff9500, var(--trophy-orange)) !important;
}

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

.header__burger span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

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

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(124, 58, 237, 0.5) 0%, transparent 60%),
        radial-gradient(ellipse at 75% 30%, rgba(255, 107, 0, 0.4) 0%, transparent 55%),
        radial-gradient(ellipse at 50% 90%, rgba(38, 169, 108, 0.25) 0%, transparent 50%);
    z-index: 0;
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 0, 0.15);
    border: 1px solid rgba(255, 107, 0, 0.4);
    color: var(--trophy-orange);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero__title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.hero__title span {
    background: linear-gradient(135deg, var(--trophy-orange), var(--champion-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.btn-play {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--trophy-orange) 0%, #ff9500 50%, var(--champion-gold) 100%);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    padding: 16px 36px;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 32px rgba(255, 107, 0, 0.5), 0 2px 8px rgba(0,0,0,0.3);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-play::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn-play:hover::before { left: 100%; }
.btn-play:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 107, 0, 0.65), 0 4px 12px rgba(0,0,0,0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 32px;
    border-radius: var(--radius-md);
    border: 2px solid var(--card-border);
    transition: var(--transition);
}

.btn-secondary:hover {
    border-color: var(--energy-violet);
    color: var(--energy-violet);
    background: rgba(124, 58, 237, 0.1);
}

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

.hero__game-card {
    position: relative;
    width: 380px;
    max-width: 100%;
}

.hero__game-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--radius-xl) + 2px);
    background: linear-gradient(135deg, var(--trophy-orange), var(--energy-violet), var(--champion-gold));
    z-index: 0;
}

.hero__game-inner {
    position: relative;
    z-index: 1;
    background: var(--dark-bg);
    border-radius: var(--radius-xl);
    overflow: hidden;
    padding: 24px;
    text-align: center;
}

.hero__game-icon {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin: 0 auto 16px;
    box-shadow: var(--shadow-orange);
}

.hero__game-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--trophy-orange), var(--champion-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__game-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 16px;
}

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

.hero__meta-value {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--champion-gold);
}

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

/* ===== FEATURES ===== */
.features {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--trophy-orange);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.section-title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--trophy-orange), var(--champion-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

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

.feature-card:hover {
    border-color: rgba(255, 107, 0, 0.4);
    background: rgba(255, 107, 0, 0.06);
    transform: translateY(-4px);
    box-shadow: var(--shadow-orange);
}

.feature-card__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--trophy-orange), var(--energy-violet));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

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

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

/* ===== HOW TO PLAY (homepage snippet) ===== */
.how-snippet {
    padding: 80px 0;
    position: relative;
}

.how-snippet__inner {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(255, 107, 0, 0.1));
    border: 1px solid var(--card-border);
    border-radius: var(--radius-xl);
    padding: 56px 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.steps__list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-item__num {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--trophy-orange), var(--champion-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1rem;
    color: #fff;
    box-shadow: var(--shadow-orange);
}

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

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

.controls-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.controls-card__title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--champion-gold);
}

.control-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.control-row:last-child { border-bottom: none; }

.control-key {
    background: linear-gradient(135deg, rgba(255,107,0,0.2), rgba(124,58,237,0.2));
    border: 1px solid rgba(255,107,0,0.3);
    border-radius: 8px;
    padding: 6px 14px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--champion-gold);
    min-width: 80px;
    text-align: center;
}

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

/* ===== STATS ===== */
.stats {
    padding: 60px 0;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--card-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.stat-item {
    background: var(--dark-bg);
    padding: 40px 24px;
    text-align: center;
}

.stat-item__value {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 2.4rem;
    background: linear-gradient(135deg, var(--trophy-orange), var(--champion-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-item__label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== BLOG CARDS ===== */
.blog-section {
    padding: 80px 0;
}

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

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

.article-card:hover {
    transform: translateY(-6px);
    border-color: rgba(124, 58, 237, 0.4);
    box-shadow: var(--shadow-violet);
}

.article-card__img {
    height: 200px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(255, 107, 0, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    border-bottom: 1px solid var(--card-border);
    overflow: hidden;
}

.article-card__content {
    padding: 24px;
    position: relative;
    z-index: 0;
}

.article-card__tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--trophy-orange);
    background: rgba(255, 107, 0, 0.12);
    border-radius: 100px;
    padding: 4px 12px;
    margin-bottom: 12px;
}

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

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

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

.article-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.8rem;
}

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

/* ===== FAQ ===== */
.faq-section { padding: 80px 0; }

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

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.is-open { border-color: rgba(255, 107, 0, 0.4); }

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

.faq-item__question:hover { color: var(--trophy-orange); }

.faq-item__icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 107, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--trophy-orange);
    transition: var(--transition);
}

.faq-item.is-open .faq-item__icon { transform: rotate(45deg); background: rgba(255,107,0,0.25); }

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 24px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-item.is-open .faq-item__answer {
    max-height: 300px;
    padding-bottom: 20px;
}

/* ===== CTA ===== */
.cta-section {
    padding: 80px 0;
}

.cta-block {
    background: linear-gradient(135deg, var(--energy-violet) 0%, rgba(124,58,237,0.7) 40%, rgba(255,107,0,0.6) 100%);
    border-radius: var(--radius-xl);
    padding: 72px 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255, 215, 0, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 30%, rgba(255, 107, 0, 0.25) 0%, transparent 50%);
    z-index: 0;
}

.cta-block > * { position: relative; z-index: 1; }

.cta-block__title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.cta-block__desc {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    margin-bottom: 36px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== PAGE HERO ===== */
.page-hero {
    padding: 72px 0 56px;
    text-align: center;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(124, 58, 237, 0.4) 0%, transparent 65%),
        radial-gradient(ellipse at 80% 80%, rgba(255, 107, 0, 0.2) 0%, transparent 50%);
    z-index: 0;
}

.page-hero__inner { position: relative; z-index: 1; }

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

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

/* ===== ARTICLE PAGE ===== */
.article-page {
    padding: 60px 0 80px;
}

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

.article-body h1, .article-body h2, .article-body h3 {
    font-family: var(--font-heading);
    font-weight: 800;
    margin-bottom: 16px;
    margin-top: 32px;
    line-height: 1.2;
}

.article-body h1 { font-size: 2rem; margin-top: 0; }
.article-body h2 { font-size: 1.5rem; color: var(--champion-gold); }
.article-body h3 { font-size: 1.2rem; color: var(--trophy-orange); }

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

.article-body ul, .article-body ol {
    margin: 0 0 20px 24px;
    color: var(--text-secondary);
    line-height: 1.8;
}

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

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

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

.article-body .tip-box {
    background: rgba(255, 107, 0, 0.1);
    border-left: 4px solid var(--trophy-orange);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 16px 20px;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

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

.article-meta__tag {
    background: rgba(255, 107, 0, 0.15);
    color: var(--trophy-orange);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
}

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

/* ===== SIDEBAR ===== */
.sidebar__widget {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    margin-bottom: 28px;
}

.sidebar__widget-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--champion-gold);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--card-border);
}

.sidebar-game-play {
    text-align: center;
}

.sidebar-game-play img {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    margin: 0 auto 12px;
    box-shadow: var(--shadow-orange);
}

.sidebar-game-play .btn-play {
    width: 100%;
    justify-content: center;
    font-size: 0.95rem;
    padding: 12px 20px;
}

.sidebar__recent a {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: var(--transition);
}

.sidebar__recent a:last-child { border-bottom: none; }
.sidebar__recent a:hover span { color: var(--trophy-orange); }

.sidebar__recent-title {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.4;
    transition: var(--transition);
}

.sidebar__recent-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ===== ABOUT PAGE ===== */
.about-content {
    padding: 60px 0 80px;
}

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

.about-text h2 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--champion-gold);
}

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

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

.team-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    border-color: rgba(255,107,0,0.4);
    transform: translateY(-4px);
}

.team-card__avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--trophy-orange), var(--energy-violet));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 16px;
}

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

.team-card__role {
    color: var(--trophy-orange);
    font-size: 0.85rem;
}

/* ===== HOW TO PLAY PAGE ===== */
.how-page {
    padding: 60px 0 80px;
}

.how-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto 60px;
}

.how-step {
    display: flex;
    gap: 28px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: var(--transition);
}

.how-step:hover {
    border-color: rgba(255,107,0,0.4);
    background: rgba(255,107,0,0.05);
}

.how-step__num {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--trophy-orange), var(--champion-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.4rem;
    color: #fff;
    box-shadow: var(--shadow-orange);
}

.how-step__content h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

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

.tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.tip-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-left: 4px solid var(--trophy-orange);
    border-radius: var(--radius-md);
    padding: 20px 24px;
}

.tip-card__label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--trophy-orange);
    margin-bottom: 8px;
}

.tip-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* ===== CONTACT PAGE ===== */
.contact-page {
    padding: 60px 0 80px;
}

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

.contact-form {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-xl);
    padding: 40px;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--trophy-orange);
    background: rgba(255,107,0,0.06);
}

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

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--trophy-orange), var(--champion-gold));
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    padding: 14px 28px;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.contact-info__title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--champion-gold);
}

.contact-info p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.contact-info__item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid var(--card-border);
}

.contact-info__item:last-child { border-bottom: none; }

.contact-info__icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(255,107,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info__label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

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

/* ===== PRIVACY / TERMS ===== */
.legal-page {
    padding: 60px 0 80px;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-xl);
    padding: 48px 56px;
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    margin-top: 36px;
    margin-bottom: 14px;
    color: var(--champion-gold);
}

.legal-content h2:first-child { margin-top: 0; }

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

.legal-content ul {
    margin: 0 0 16px 24px;
    list-style: disc;
    color: var(--text-secondary);
    line-height: 1.8;
}

.legal-content li { margin-bottom: 6px; }

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

/* ===== BLOG PAGE ===== */
.blog-page {
    padding: 60px 0 80px;
}

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

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

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

.footer__brand .logo { font-size: 1.4rem; display: block; margin-bottom: 12px; }

.footer__tagline {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 280px;
}

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

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

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

.footer__links a:hover { color: var(--trophy-orange); }

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

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

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

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

.footer__legal a:hover { color: var(--trophy-orange); }

/* ===== UTILITIES ===== */
.text-center { text-align: center; }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--trophy-orange);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 28px;
    border: 2px solid var(--trophy-orange);
    border-radius: var(--radius-md);
    transition: var(--transition);
    cursor: pointer;
}

.btn-outline:hover {
    background: var(--trophy-orange);
    color: #fff;
    box-shadow: var(--shadow-orange);
}

.form-success {
    display: none;
    background: rgba(38, 169, 108, 0.15);
    border: 1px solid rgba(38, 169, 108, 0.4);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    color: var(--field-green);
    font-family: var(--font-heading);
    font-weight: 600;
    margin-top: 16px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero__inner { grid-template-columns: 1fr; gap: 40px; }
    .hero__visual { order: -1; }
    .features__grid { grid-template-columns: repeat(2, 1fr); }
    .stats__grid { grid-template-columns: repeat(2, 1fr); }
    .how-snippet__inner { grid-template-columns: 1fr; gap: 40px; padding: 40px; }
    .footer__inner { grid-template-columns: 1fr 1fr; }
    .article-page__inner { grid-template-columns: 1fr; }
    .blog-page__grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav { display: none; }
    .nav.is-open { display: block; position: absolute; top: var(--header-height); left: 0; right: 0; background: var(--darker-bg); border-top: 1px solid var(--card-border); padding: 16px; z-index: 99; }
    .nav.is-open .nav__list { flex-direction: column; gap: 4px; }
    .header__burger { display: flex; }
    .header { position: sticky; }
    .hero { padding: 48px 0 60px; }
    .hero__title { font-size: 2rem; }
    .features__grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .stats__grid { grid-template-columns: repeat(2, 1fr); }
    .how-snippet__inner { padding: 28px 20px; }
    .cta-block { padding: 40px 24px; }
    .tips-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .footer__inner { grid-template-columns: 1fr; }
    .footer__bottom { flex-direction: column; text-align: center; }
    .legal-content { padding: 28px 20px; }
}