/*
 * PROJECT: giropower.com
 * DOMAIN: giropower.com
 * GAME: Checkers Master
 *
 * DESIGN:
 * - CSS: BEM
 * - Palette: Art Deco (Black #1a1a2e, Gold #c9a84c, Geometric)
 * - Effect: Pattern Backgrounds + Geometric borders
 * - Fonts: Poiret One (heading) + Didact Gothic (body)
 * - Buttons: 3D Effect with gold gradient
 *
 * Created: 2026
 */

@import url('https://fonts.googleapis.com/css2?family=Poiret+One&family=Didact+Gothic&display=swap');

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
    --art-black: #1a1a2e;
    --art-dark: #12122a;
    --art-darker: #0d0d1f;
    --art-gold: #c9a84c;
    --art-gold-light: #e6c96a;
    --art-gold-dark: #a07c2a;
    --art-ivory: #f5f0e0;
    --art-ivory-dim: #d6cdb0;
    --art-cream: #faf6ec;
    --art-brown: #8b6914;
    --art-panel: #1e1e38;
    --art-panel-light: #252545;
    --art-border: #c9a84c44;
    --art-border-solid: #c9a84c;
    --font-heading: 'Poiret One', sans-serif;
    --font-body: 'Didact Gothic', sans-serif;
    --shadow-gold: 0 4px 24px rgba(201, 168, 76, 0.25);
    --shadow-deep: 0 8px 40px rgba(0, 0, 0, 0.5);
    --transition: all 0.3s ease;
    --radius: 2px;
}

/* ===== 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-color: var(--art-darker);
    color: var(--art-ivory);
    line-height: 1.7;
    font-size: 16px;
}

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

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

ul {
    list-style: none;
}

/* ===== GEOMETRIC PATTERN BACKGROUND ===== */
.pattern-bg {
    background-image:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 20px,
            rgba(201, 168, 76, 0.04) 20px,
            rgba(201, 168, 76, 0.04) 21px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 20px,
            rgba(201, 168, 76, 0.04) 20px,
            rgba(201, 168, 76, 0.04) 21px
        );
}

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

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

p {
    color: var(--art-ivory-dim);
    margin-bottom: 1rem;
}

/* ===== GOLD DIVIDER ===== */
.gold-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
}

.gold-divider__line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--art-gold), transparent);
}

.gold-divider__diamond {
    width: 8px;
    height: 8px;
    background: var(--art-gold);
    transform: rotate(45deg);
    flex-shrink: 0;
}

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

/* ===== SECTION TITLES ===== */
.section__title {
    text-align: center;
    margin-bottom: 0.5rem;
    position: relative;
}

.section__subtitle {
    text-align: center;
    color: var(--art-ivory-dim);
    font-family: var(--font-body);
    font-size: 1rem;
    margin-bottom: 3rem;
    letter-spacing: 0.05em;
}

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

/* ===== DECORATIVE FRAME ===== */
.deco-frame {
    border: 1px solid var(--art-border-solid);
    position: relative;
    padding: 2px;
}

.deco-frame::before,
.deco-frame::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-color: var(--art-gold);
    border-style: solid;
}

.deco-frame::before {
    top: -2px;
    left: -2px;
    border-width: 2px 0 0 2px;
}

.deco-frame::after {
    bottom: -2px;
    right: -2px;
    border-width: 0 2px 2px 0;
}

/* ===== HEADER ===== */
.header {
    background: var(--art-dark);
    border-bottom: 1px solid var(--art-border-solid);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-deep);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    letter-spacing: 0.15em;
    color: var(--art-gold);
    text-transform: uppercase;
    position: relative;
    white-space: nowrap;
}

.logo::after {
    content: '';
    display: block;
    height: 1px;
    background: var(--art-gold);
    margin-top: 2px;
}

/* ===== NAVIGATION ===== */
.nav__list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav__item {}

.nav__link {
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--art-ivory-dim);
    padding: 0.5rem 0.9rem;
    border: 1px solid transparent;
    transition: var(--transition);
    display: block;
}

.nav__link:hover,
.nav__link--active {
    color: var(--art-gold);
    border-color: var(--art-border);
    background: rgba(201, 168, 76, 0.06);
}

/* ===== HAMBURGER ===== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger__line {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--art-gold);
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    background: var(--art-dark);
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 40px,
            rgba(201, 168, 76, 0.03) 40px,
            rgba(201, 168, 76, 0.03) 41px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 40px,
            rgba(201, 168, 76, 0.03) 40px,
            rgba(201, 168, 76, 0.03) 41px
        );
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

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

.hero__badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--art-gold);
    border: 1px solid var(--art-gold);
    padding: 0.3rem 1rem;
    margin-bottom: 1.5rem;
}

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

.hero__title span {
    color: var(--art-ivory);
}

.hero__description {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    color: var(--art-ivory-dim);
    max-width: 500px;
}

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

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

.hero__stat-value {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--art-gold);
    display: block;
}

.hero__stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--art-ivory-dim);
}

/* ===== GAME PREVIEW ===== */
.hero__game-preview {
    position: relative;
}

.game-frame {
    position: relative;
    background: var(--art-panel);
    border: 1px solid var(--art-gold);
    padding: 1.5rem;
    box-shadow: var(--shadow-gold), inset 0 0 40px rgba(0,0,0,0.3);
}

.game-frame::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    pointer-events: none;
}

.game-frame__corners::before,
.game-frame__corners::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
}

.game-icon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
}

.game-icon-wrapper img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(201, 168, 76, 0.4));
}

.game-frame__label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--art-gold);
    text-align: center;
}

/* ===== BUTTONS ===== */
.btn-play {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--art-darker);
    background: linear-gradient(135deg, var(--art-gold-light) 0%, var(--art-gold) 50%, var(--art-gold-dark) 100%);
    padding: 0.85rem 2.5rem;
    border: none;
    cursor: pointer;
    position: relative;
    box-shadow: 0 4px 0 var(--art-brown), 0 6px 20px rgba(201, 168, 76, 0.3);
    transition: var(--transition);
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.btn-play:hover {
    background: linear-gradient(135deg, #f0d880 0%, var(--art-gold-light) 50%, var(--art-gold) 100%);
    box-shadow: 0 6px 0 var(--art-brown), 0 8px 30px rgba(201, 168, 76, 0.5);
    transform: translateY(-2px);
    color: var(--art-darker);
}

.btn-play:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 var(--art-brown), 0 4px 15px rgba(201, 168, 76, 0.2);
}

.btn-secondary {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--art-gold);
    background: transparent;
    padding: 0.85rem 2rem;
    border: 1px solid var(--art-gold);
    cursor: pointer;
    transition: var(--transition);
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.btn-secondary:hover {
    background: rgba(201, 168, 76, 0.1);
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.2);
}

.btn-outline {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--art-gold);
    background: transparent;
    padding: 0.6rem 1.5rem;
    border: 1px solid var(--art-gold);
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline:hover {
    background: rgba(201, 168, 76, 0.1);
    color: var(--art-gold-light);
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 5rem 0;
    background: var(--art-darker);
    position: relative;
}

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

.feature-card {
    position: relative;
    background: var(--art-panel);
    border: 1px solid var(--art-border);
    padding: 2rem;
    transition: var(--transition);
}

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

.feature-card:hover {
    border-color: var(--art-gold);
    background: var(--art-panel-light);
    box-shadow: var(--shadow-gold);
    transform: translateY(-4px);
}

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

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

.feature-card__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--art-gold);
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
}

.feature-card__text {
    font-size: 0.9rem;
    color: var(--art-ivory-dim);
    line-height: 1.6;
    margin: 0;
}

/* ===== HOW TO PLAY PREVIEW ===== */
.how-to-section {
    padding: 5rem 0;
    background: var(--art-dark);
    background-image:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 30px,
            rgba(201, 168, 76, 0.02) 30px,
            rgba(201, 168, 76, 0.02) 31px
        );
}

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

.step-card {
    position: relative;
    background: var(--art-panel);
    border: 1px solid var(--art-border);
    padding: 1.75rem 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.step-card:hover {
    border-color: var(--art-gold);
    box-shadow: var(--shadow-gold);
}

.step-card__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid var(--art-gold);
    background: rgba(201, 168, 76, 0.1);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--art-gold);
    margin: 0 auto 1rem;
    transform: rotate(45deg);
}

.step-card__number span {
    transform: rotate(-45deg);
    display: block;
}

.step-card__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--art-gold);
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.step-card__text {
    font-size: 0.875rem;
    color: var(--art-ivory-dim);
    line-height: 1.6;
    margin: 0;
}

/* ===== ARTICLE CARDS ===== */
.blog-preview {
    padding: 5rem 0;
    background: var(--art-darker);
}

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

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

.article-card:hover {
    border-color: var(--art-gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-4px);
}

.article-card__image {
    height: 180px;
    background: var(--art-panel-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    border-bottom: 1px solid var(--art-border);
    position: relative;
    overflow: hidden;
}

.article-card__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.4));
}

.article-card__content {
    padding: 1.5rem;
}

.article-card__category {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--art-gold);
    border: 1px solid var(--art-border-solid);
    padding: 0.2rem 0.6rem;
    margin-bottom: 0.75rem;
}

.article-card__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--art-ivory);
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.article-card__excerpt {
    font-size: 0.875rem;
    color: var(--art-ivory-dim);
    line-height: 1.6;
    margin: 0;
}

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

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 5rem 0;
    background: var(--art-dark);
}

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

.faq-item {
    background: var(--art-panel);
    border: 1px solid var(--art-border);
    transition: var(--transition);
}

.faq-item.is-open {
    border-color: var(--art-gold);
}

.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.05em;
    color: var(--art-ivory);
    gap: 1rem;
    user-select: none;
}

.faq-item__question:hover {
    color: var(--art-gold);
}

.faq-item__icon {
    color: var(--art-gold);
    font-size: 1.2rem;
    font-style: normal;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    line-height: 1;
}

.faq-item.is-open .faq-item__icon {
    transform: rotate(45deg);
}

.faq-item__answer {
    display: none;
    padding: 0 1.5rem 1.25rem;
    font-size: 0.9rem;
    color: var(--art-ivory-dim);
    line-height: 1.7;
    border-top: 1px solid var(--art-border);
}

.faq-item.is-open .faq-item__answer {
    display: block;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--art-dark);
    border-top: 1px solid var(--art-border-solid);
    padding: 3rem 0 1.5rem;
}

.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer__brand {}

.footer__logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    letter-spacing: 0.15em;
    color: var(--art-gold);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
}

.footer__tagline {
    font-size: 0.875rem;
    color: var(--art-ivory-dim);
    line-height: 1.6;
    margin: 0;
}

.footer__heading {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--art-gold);
    margin-bottom: 1.25rem;
}

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

.footer__nav-link {
    font-size: 0.875rem;
    color: var(--art-ivory-dim);
    transition: var(--transition);
}

.footer__nav-link:hover {
    color: var(--art-gold);
    padding-left: 4px;
}

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

.footer__copy {
    font-size: 0.8rem;
    color: rgba(201, 168, 76, 0.5);
    margin: 0;
}

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

.footer__legal-link {
    font-size: 0.8rem;
    color: rgba(201, 168, 76, 0.5);
    transition: var(--transition);
}

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

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    background: var(--art-dark);
    padding: 3rem 0;
    border-bottom: 1px solid var(--art-border-solid);
    text-align: center;
    position: relative;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: var(--art-gold);
}

.page-hero__label {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--art-gold);
    border: 1px solid var(--art-border-solid);
    padding: 0.25rem 0.75rem;
    margin-bottom: 1rem;
}

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

.page-hero__subtitle {
    color: var(--art-ivory-dim);
    font-size: 1rem;
    margin: 0;
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--art-border);
    background: var(--art-darker);
}

.breadcrumbs__list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
}

.breadcrumbs__item {
    color: var(--art-ivory-dim);
}

.breadcrumbs__separator {
    color: var(--art-gold);
}

.breadcrumbs__link {
    color: var(--art-ivory-dim);
    transition: var(--transition);
}

.breadcrumbs__link:hover {
    color: var(--art-gold);
}

.breadcrumbs__current {
    color: var(--art-gold);
}

/* ===== ABOUT PAGE ===== */
.about-content {
    padding: 5rem 0;
    background: var(--art-darker);
}

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

.about-text h2 {
    margin-bottom: 1rem;
}

.about-text h3 {
    font-size: 1.3rem;
    margin: 2rem 0 0.75rem;
}

.about-text p {
    font-size: 0.95rem;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.value-item {
    background: var(--art-panel);
    border: 1px solid var(--art-border);
    border-left: 3px solid var(--art-gold);
    padding: 1.25rem;
}

.value-item__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--art-gold);
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.value-item__text {
    font-size: 0.875rem;
    color: var(--art-ivory-dim);
    margin: 0;
    line-height: 1.6;
}

/* ===== HOW TO PLAY PAGE ===== */
.how-to-page {
    padding: 5rem 0;
    background: var(--art-darker);
}

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

.how-to-content h2 {
    margin-bottom: 1.5rem;
}

.how-to-content h3 {
    font-size: 1.3rem;
    color: var(--art-gold);
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--art-border);
}

.how-to-content p {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.numbered-list {
    counter-reset: item;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.numbered-list__item {
    counter-increment: item;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    font-size: 0.95rem;
    color: var(--art-ivory-dim);
}

.numbered-list__item::before {
    content: counter(item);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid var(--art-gold);
    color: var(--art-gold);
    font-family: var(--font-heading);
    font-size: 0.875rem;
    flex-shrink: 0;
}

.bullet-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.bullet-list__item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.95rem;
    color: var(--art-ivory-dim);
}

.bullet-list__item::before {
    content: '◆';
    color: var(--art-gold);
    font-size: 0.6rem;
    margin-top: 0.35rem;
    flex-shrink: 0;
}

.how-to-sidebar {}

.sidebar-card {
    background: var(--art-panel);
    border: 1px solid var(--art-border-solid);
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.sidebar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--art-gold);
}

.sidebar-card__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--art-gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.sidebar-tip {
    font-size: 0.875rem;
    color: var(--art-ivory-dim);
    line-height: 1.6;
    padding: 0.75rem;
    border-left: 2px solid var(--art-gold);
    background: rgba(201, 168, 76, 0.05);
    margin-bottom: 0.75rem;
}

.sidebar-tip:last-child {
    margin-bottom: 0;
}

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

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

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

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

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

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

.contact-detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    font-size: 0.9rem;
    color: var(--art-ivory-dim);
}

.contact-detail__icon {
    color: var(--art-gold);
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-form {
    background: var(--art-panel);
    border: 1px solid var(--art-border-solid);
    padding: 2rem;
    position: relative;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--art-gold);
}

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

.form-group label {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--art-gold);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: var(--art-darker);
    border: 1px solid var(--art-border);
    color: var(--art-ivory);
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
    border-radius: 0;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--art-gold);
    background: var(--art-panel-light);
    box-shadow: 0 0 0 2px rgba(201, 168, 76, 0.15);
}

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

/* ===== PRIVACY / TERMS PAGES ===== */
.legal-page {
    padding: 5rem 0;
    background: var(--art-darker);
}

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

.legal-content h2 {
    margin: 2.5rem 0 1rem;
    font-size: 1.5rem;
}

.legal-content h3 {
    margin: 1.75rem 0 0.75rem;
    font-size: 1.1rem;
    color: var(--art-gold-light);
}

.legal-content p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-content ul li {
    font-size: 0.95rem;
    color: var(--art-ivory-dim);
    margin-bottom: 0.5rem;
    list-style: none;
    position: relative;
    padding-left: 1rem;
}

.legal-content ul li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--art-gold);
    font-size: 0.5rem;
    top: 0.45rem;
}

.legal-meta {
    font-size: 0.8rem;
    color: rgba(201, 168, 76, 0.5);
    margin-bottom: 2rem;
    padding: 0.75rem 1rem;
    border-left: 2px solid var(--art-border-solid);
    background: rgba(201, 168, 76, 0.04);
}

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

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

.article-body h2 {
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.article-body h3 {
    margin: 1.75rem 0 0.75rem;
    font-size: 1.1rem;
    color: var(--art-gold-light);
}

.article-body p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.article-body ul {
    margin-bottom: 1.25rem;
}

.article-body ul li {
    font-size: 0.95rem;
    color: var(--art-ivory-dim);
    margin-bottom: 0.5rem;
    padding-left: 1.25rem;
    position: relative;
    list-style: none;
}

.article-body ul li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--art-gold);
    font-size: 0.5rem;
    top: 0.45rem;
}

.article-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.8rem;
    color: var(--art-ivory-dim);
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--art-border);
    flex-wrap: wrap;
}

.article-meta__item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.article-meta__label {
    color: var(--art-gold);
}

.article-sidebar {}

/* ===== STARS ===== */
.stars {
    color: #ffc107;
}

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

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
    background: rgba(201, 168, 76, 0.07);
    border: 1px solid var(--art-border-solid);
    border-left: 3px solid var(--art-gold);
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
}

.highlight-box p {
    margin: 0;
    font-size: 0.95rem;
}

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

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    max-width: 380px;
    background: var(--art-panel);
    border: 1px solid var(--art-border-solid);
    padding: 1.5rem;
    z-index: 300;
    box-shadow: var(--shadow-deep);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 13, 31, 0.97);
    z-index: 200;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.mobile-menu.is-open {
    display: flex;
}

.mobile-menu__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: 1px solid var(--art-gold);
    color: var(--art-gold);
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.mobile-menu__close:hover {
    background: rgba(201, 168, 76, 0.1);
}

.mobile-menu__link {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--art-ivory);
    transition: var(--transition);
}

.mobile-menu__link:hover {
    color: var(--art-gold);
}

/* ===== GAME PAGE ===== */
.game-page {
    padding: 3rem 0 5rem;
    background: var(--art-darker);
}

.game-page__frame-wrapper {
    position: relative;
    background: var(--art-panel);
    border: 1px solid var(--art-border-solid);
    padding: 1rem;
    margin-bottom: 2rem;
}

.game-page__frame-wrapper::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border: 1px solid rgba(201, 168, 76, 0.2);
    pointer-events: none;
    z-index: 0;
}

.game-page__iframe {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
    position: relative;
    z-index: 1;
}

.game-page__controls {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

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

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

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

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

    .how-to-grid {
        grid-template-columns: 1fr;
    }

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

    .footer__brand {
        grid-column: 1 / -1;
    }

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

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 3rem 0;
    }

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

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

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

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

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

    .hero__stats {
        gap: 1.5rem;
    }

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

    .game-page__iframe {
        height: 400px;
    }
}

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

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

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

    .cookie-consent {
        left: 1rem;
        right: 1rem;
        max-width: none;
    }

    .game-page__iframe {
        height: 300px;
    }
}