/* ============================================
   ThisIsSpoke.com - site81-de
   CSS ARCHITECTURE: Atomic (utility-first composition)
   PALETTE: Vintage (vintage-cream, rusty-orange, old-brown, sepia-tan, aged-gold, worn-gray)
   EFFECT: Pattern backgrounds
   TYPOGRAPHY: Merriweather + Source Sans Pro
   BUTTONS: Outline Morph
   ============================================ */

:root {
    --vintage-cream: #fffdd0;
    --rusty-orange: #cd5c5c;
    --old-brown: #8b4513;
    --sepia-tan: #deb887;
    --aged-gold: #b8860b;
    --worn-gray: #696969;
    --spoke-font-heading: 'Merriweather', serif;
    --spoke-font-body: 'Source Sans Pro', sans-serif;
    --header-height: 70px;
    --spoke-max: 1140px;
    --spoke-radius: 10px;
}

@media (max-width: 600px) {
    :root { --header-height: 60px; }
}

*,
*::before,
*::after {
    box-sizing: border-box;
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden !important;
}

body {
    font-family: var(--spoke-font-body);
    color: var(--sepia-tan);
    background-color: #1a1510;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 35px,
        rgba(184, 134, 11, 0.03) 35px,
        rgba(184, 134, 11, 0.03) 70px
    );
    margin: 0;
    padding: 0;
    overflow-x: hidden !important;
    width: 100% !important;
    min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: 0.3s ease; }
ul, ol { list-style: none; margin: 0; padding: 0; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* Atomic utilities */
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.w-full { width: 100%; }
.max-w { max-width: var(--spoke-max); }
.px-4 { padding-left: 1.5rem; padding-right: 1.5rem; }
.gap-2 { gap: 2rem; }
.gap-1 { gap: 1rem; }

/* Layout wrap */
.spoke-wrap {
    width: 100%;
    max-width: var(--spoke-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header – no Start button, visual separation between logo and nav */
.spoke-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 21, 16, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--aged-gold);
    z-index: 1000;
}

.spoke-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--spoke-max);
    margin: 0 auto;
    height: var(--header-height);
    padding: 0 1.5rem;
    gap: 2.5rem;
}

.spoke-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--spoke-font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--vintage-cream);
    flex-shrink: 0;
}

.spoke-logo__badge {
    background: #2e7d32;
    color: #fff;
    padding: 0.25rem 0.5rem;
    font-size: 0.65rem;
    border-radius: 6px;
    font-weight: 700;
}

.spoke-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.spoke-nav__list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    align-items: center;
}

.spoke-nav__link {
    color: var(--sepia-tan);
    font-weight: 600;
    font-size: 0.95rem;
}

.spoke-nav__link:hover { color: var(--aged-gold); }

.spoke-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: transparent;
    padding: 4px;
    color: var(--vintage-cream);
}

.spoke-burger span {
    display: block;
    width: 100%;
    height: 3px;
    background: currentColor;
    border-radius: 2px;
    transition: 0.3s ease;
}

.spoke-burger.is-active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.spoke-burger.is-active span:nth-child(2) { opacity: 0; }
.spoke-burger.is-active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
    .spoke-burger { display: flex; }
    .spoke-nav__list {
        position: fixed;
        top: calc(var(--header-height) - 1px);
        left: 0;
        right: 0;
        background: rgba(26, 21, 16, 0.98);
        border-bottom: 2px solid var(--aged-gold);
        flex-direction: column;
        padding: 1rem;
        gap: 0.5rem;
        max-height: calc(100vh - var(--header-height));
        overflow-y: auto;
        display: none;
    }
    .spoke-nav__list.is-open { display: flex; }
}

/* Buttons – Outline Morph */
.spoke-btn {
    display: inline-block;
    padding: 0.65rem 1.35rem;
    font-family: var(--spoke-font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--spoke-radius);
    transition: 0.3s ease;
    text-align: center;
    background: transparent;
    border: 2px solid var(--aged-gold);
    color: var(--aged-gold);
    position: relative;
    z-index: 1;
}

.spoke-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--aged-gold);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.spoke-btn:hover { color: #1a1510; }
.spoke-btn:hover::before { transform: scaleX(1); }

.spoke-btn--primary {
    border-color: var(--aged-gold);
    color: var(--aged-gold);
}

.spoke-btn--secondary {
    border-color: var(--rusty-orange);
    color: var(--rusty-orange);
}

.spoke-btn--secondary::before { background: var(--rusty-orange); }
.spoke-btn--large { padding: 0.75rem 1.75rem; font-size: 1.05rem; }

.is-hidden { display: none !important; }

/* Modals */
.spoke-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 1rem;
}

.spoke-modal-content {
    background: linear-gradient(180deg, #2a2520 0%, #1a1510 100%);
    border: 2px solid var(--aged-gold);
    border-radius: var(--spoke-radius);
    padding: 2rem;
    max-width: 420px;
    width: 100%;
}

.spoke-modal-title { font-family: var(--spoke-font-heading); margin: 0 0 1rem; font-size: 1.25rem; color: var(--vintage-cream); }
.spoke-modal-text { margin: 0 0 0.5rem; font-size: 0.95rem; color: var(--sepia-tan); }
.spoke-modal-buttons { display: flex; gap: 0.75rem; margin-top: 1.25rem; flex-wrap: wrap; }

.spoke-cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 350px;
    background: linear-gradient(135deg, #2a2520 0%, #1a1510 100%);
    border: 2px solid var(--aged-gold);
    border-radius: 15px;
    padding: 1.5rem;
    z-index: 1500;
    color: var(--sepia-tan);
}

.spoke-cookie-banner p { margin: 0 0 0.75rem; font-size: 0.9rem; }
.spoke-cookie-banner a { color: var(--aged-gold); text-decoration: underline; }

@media (max-width: 480px) {
    .spoke-cookie-banner { left: 10px; right: 10px; bottom: 10px; max-width: none; }
}

/* Hero */
.spoke-hero {
    padding-top: 120px;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    background: linear-gradient(160deg, #0d0a08 0%, #1a1510 50%, #252018 100%);
    background-attachment: scroll;
    border-bottom: 1px solid rgba(184, 134, 11, 0.3);
}

.spoke-hero__inner {
    width: 100%;
    max-width: var(--spoke-max);
    margin: 0 auto;
    padding: 3rem 1.5rem;
    text-align: center;
}

.spoke-hero__title {
    font-family: var(--spoke-font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--vintage-cream);
    margin: 0 0 1rem;
    line-height: 1.3;
}

.spoke-hero__title-accent { color: var(--aged-gold); }
.spoke-hero__subtitle {
    font-size: 1.05rem;
    color: var(--sepia-tan);
    max-width: 560px;
    margin: 0 auto 1.5rem;
    line-height: 1.5;
}

.spoke-hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

@media (max-width: 768px) {
    .spoke-hero { padding-top: 100px; }
    .spoke-hero__inner { padding: 2rem 1rem; }
}

/* Section */
.spoke-section { padding: 3rem 0; }
.spoke-section__head { margin-bottom: 2rem; text-align: center; }
.spoke-section__title {
    font-family: var(--spoke-font-heading);
    font-size: 1.75rem;
    color: var(--vintage-cream);
    margin: 0 0 0.5rem;
}
.spoke-section__subtitle { margin: 0; color: var(--sepia-tan); font-size: 1rem; }

/* Games grid */
.spoke-games-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    max-width: 1200px;
    margin: 0 auto;
}

.spoke-game-card {
    flex: 0 0 auto;
    width: clamp(280px, 25vw, 350px);
    max-width: 350px;
    min-width: 280px;
    background: rgba(42, 37, 30, 0.9);
    border: 2px solid var(--aged-gold);
    border-radius: var(--spoke-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
}

.spoke-game-card:hover {
    box-shadow: 0 0 20px rgba(184, 134, 11, 0.3);
}

.spoke-game-card__img-wrap {
    aspect-ratio: 5/3;
    min-height: 160px;
    overflow: hidden;
    background: #1a1510;
}

.spoke-game-card__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.spoke-game-card__body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.spoke-game-card__title { font-family: var(--spoke-font-heading); font-size: 1.2rem; margin: 0 0 0.5rem; color: var(--vintage-cream); }
.spoke-game-card__desc { font-size: 0.9rem; color: var(--sepia-tan); margin: 0 0 0.75rem; line-height: 1.4; flex: 1; }
.spoke-game-card__rating { font-size: 0.85rem; color: var(--aged-gold); margin: 0 0 1rem; }
.spoke-game-card .spoke-btn { margin-top: auto; }

@media (max-width: 768px) {
    .spoke-games-grid { flex-direction: column; align-items: center; }
    .spoke-game-card { width: 100%; max-width: 400px; }
}

/* Benefits */
.spoke-benefits-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: var(--spoke-max);
    margin: 0 auto;
}

.spoke-benefit-box {
    flex: 1 1 260px;
    max-width: 320px;
    background: rgba(42, 37, 30, 0.6);
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: var(--spoke-radius);
    padding: 1.5rem;
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.spoke-benefit-box:hover { box-shadow: 0 0 20px rgba(184, 134, 11, 0.25); }
.spoke-benefit-box__icon { font-size: 2rem; margin-bottom: 0.5rem; }
.spoke-benefit-box__title { font-family: var(--spoke-font-heading); font-size: 1.1rem; color: var(--vintage-cream); margin: 0 0 0.5rem; }
.spoke-benefit-box__text { font-size: 0.9rem; color: var(--sepia-tan); margin: 0; line-height: 1.4; }

/* FAQ */
.spoke-faq-list { max-width: 640px; margin: 0 auto; }
.spoke-faq-item {
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: var(--spoke-radius);
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.spoke-faq-q {
    width: 100%;
    padding: 1rem 1.25rem;
    text-align: left;
    font-family: var(--spoke-font-body);
    font-weight: 600;
    font-size: 1rem;
    color: var(--vintage-cream);
    background: rgba(42, 37, 30, 0.5);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.spoke-faq-q:hover { background: rgba(184, 134, 11, 0.1); }
.spoke-faq-icon { font-size: 1.25rem; color: var(--aged-gold); transition: transform 0.3s; }
.spoke-faq-item.is-open .spoke-faq-icon { transform: rotate(45deg); }
.spoke-faq-a { padding: 0 1.25rem 1rem; display: none; }
.spoke-faq-item.is-open .spoke-faq-a { display: block; }
.spoke-faq-a p { margin: 0; font-size: 0.95rem; color: var(--sepia-tan); line-height: 1.5; }

/* Disclaimer – full info, zentriert auf der Seite */
.spoke-disclaimer {
    padding: 2.5rem 0;
    background: rgba(0, 0, 0, 0.4);
    border-top: 2px solid var(--aged-gold);
    text-align: center;
}

.spoke-disclaimer .spoke-wrap {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.spoke-disclaimer__title {
    font-family: var(--spoke-font-heading);
    font-size: 1.2rem;
    color: var(--aged-gold);
    margin: 0 0 1rem;
}

.spoke-disclaimer__text { font-size: 0.9rem; color: var(--sepia-tan); margin: 0 0 0.5rem; line-height: 1.5; }
.spoke-disclaimer__company { font-size: 0.85rem; color: var(--sepia-tan); margin: 1rem 0; line-height: 1.5; }
.spoke-disclaimer__text a { color: var(--aged-gold); text-decoration: underline; }
.spoke-disclaimer__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
    justify-content: center;
}

.spoke-disclaimer__badges span {
    background: rgba(184, 134, 11, 0.2);
    border: 1px solid var(--aged-gold);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--vintage-cream);
}

/* Ячейки агрегаторов – единый вид: одинаковый размер, фон, отступы */
.spoke-disclaimer__logos {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: stretch;
    justify-content: center;
    margin-top: 1rem;
}

.spoke-disclaimer__logos a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    height: 44px;
    padding: 10px 14px;
    background: rgba(255, 253, 208, 0.95);
    border-radius: 10px;
    border: 1px solid rgba(184, 134, 11, 0.35);
    transition: 0.3s ease;
}

.spoke-disclaimer-logo {
    height: 32px;
    max-width: 120px;
    width: auto;
    object-fit: contain;
}

.spoke-disclaimer__logos a:hover {
    box-shadow: 0 0 12px rgba(184, 134, 11, 0.4);
    border-color: var(--aged-gold);
}

/* Footer */
.spoke-footer {
    padding: 2.5rem 0 1.5rem;
    background: #0d0a08;
    border-top: 1px solid rgba(184, 134, 11, 0.2);
}

.spoke-footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: var(--spoke-max);
    margin-left: auto;
    margin-right: auto;
    padding: 0 1.5rem;
}

.spoke-footer__col { text-align: center; }
.spoke-footer__col h3 {
    font-family: var(--spoke-font-heading);
    font-size: 1rem;
    color: var(--aged-gold);
    margin: 0 0 0.75rem;
}

.spoke-footer__list { padding: 0; }
.spoke-footer__list li { margin-bottom: 0.4rem; }
.spoke-footer__list a { color: var(--sepia-tan); }
.spoke-footer__list a:hover { color: var(--aged-gold); }
.spoke-footer__col p { font-size: 0.9rem; color: var(--sepia-tan); margin: 0 0 0.5rem; line-height: 1.5; }
.spoke-footer__copyright {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(184, 134, 11, 0.2);
    max-width: var(--spoke-max);
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.spoke-footer__copyright p { font-size: 0.85rem; color: var(--sepia-tan); margin: 0 0 0.25rem; }

.body-no-scroll { overflow: hidden !important; }

/* Page content – centered for Blog, Anleitungen, Bewertungen */
.spoke-page-content { padding: 5rem 0 3rem; min-height: 50vh; }
.spoke-article-body { max-width: 720px; margin: 0 auto; }
.spoke-article-body h2 { font-family: var(--spoke-font-heading); color: var(--vintage-cream); margin: 1.5rem 0 0.5rem; font-size: 1.25rem; }
.spoke-article-body p { margin: 0 0 1rem; line-height: 1.6; }
.spoke-article-body a { color: var(--aged-gold); text-decoration: underline; }
.spoke-article-body ul { padding-left: 1.5rem; margin: 0 0 1rem; }
.spoke-article-body li { margin-bottom: 0.35rem; }

/* Centered layout for blog, guides, reviews – titles, description and content centered */
.spoke-page-content--center .spoke-wrap { text-align: center; }
.spoke-page-content--center .spoke-section__head { text-align: center; }
.spoke-page-content--center .spoke-article-body { margin-left: auto; margin-right: auto; text-align: center; }
.spoke-page-content--center .spoke-article-body .spoke-account-tabs,
.spoke-page-content--center .spoke-article-body form { text-align: left; }
.spoke-page-content--center .spoke-benefits-row { justify-content: center; }

/* Account tabs */
.spoke-account-tabs { max-width: 520px; margin: 0 auto 1.5rem; }
.spoke-account-tabs__nav { display: flex; gap: 0.5rem; margin-bottom: 1.25rem; justify-content: center; flex-wrap: wrap; }
.spoke-account-tabs__btn {
    padding: 0.6rem 1.2rem;
    font-family: var(--spoke-font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--sepia-tan);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(184,134,11,0.3);
    border-radius: var(--spoke-radius);
    cursor: pointer;
    transition: 0.3s ease;
}
.spoke-account-tabs__btn:hover { color: var(--aged-gold); border-color: var(--aged-gold); }
.spoke-account-tabs__btn.is-active { background: rgba(184,134,11,0.2); color: var(--aged-gold); border-color: var(--aged-gold); }
.spoke-account-tabs__panel { display: none; text-align: left; }
.spoke-account-tabs__panel.is-visible { display: block; }
.spoke-form-group { margin-bottom: 1rem; }
.spoke-account-tabs .spoke-form-group { margin-bottom: 1rem; }
.spoke-contact-info { margin-bottom: 1.5rem; padding: 1rem; background: rgba(255,255,255,0.04); border-radius: var(--spoke-radius); text-align: left; }
.spoke-account-tabs label { display: block; margin-bottom: 0.35rem; color: var(--sepia-tan); font-size: 0.9rem; }
.spoke-account-tabs input[type="text"],
.spoke-account-tabs input[type="email"],
.spoke-account-tabs input[type="password"],
.spoke-account-tabs textarea {
    width: 100%; padding: 0.6rem; box-sizing: border-box;
    background: #2a2520; border: 1px solid rgba(184,134,11,0.3); border-radius: 8px;
    color: var(--vintage-cream); font-family: var(--spoke-font-body);
}
.spoke-account-tabs input[type="checkbox"] { margin-right: 0.5rem; }
