﻿/* ============================================================
   World Teaser Page — Blindside Chess
   ============================================================ */

.world-page {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 2rem 5rem;
}

/* ═══ HERO ═══ */
.world-hero {
    margin-bottom: 3.5rem;
}

.world-hero__image-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid rgba(213, 166, 66, 0.25);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(213, 166, 66, 0.08);
}

.world-hero__image {
    width: 100%;
    display: block;
}

.world-hero__image-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, #050506, transparent);
    pointer-events: none;
}

.world-hero__badge {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(213, 166, 66, 0.5);
    background: rgba(5, 5, 6, 0.8);
    backdrop-filter: blur(8px);
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ffe8a0;
    box-shadow: 0 0 20px rgba(213, 166, 66, 0.2);
}

.world-hero__text {
    text-align: center;
}

.world-hero__eyebrow {
    display: inline-flex;
    padding: 0.35rem 0.7rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    border: 1px solid rgba(213, 166, 66, 0.28);
    background: rgba(213, 166, 66, 0.08);
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ffe8a0;
}

.world-hero__text h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 900;
    color: #ffe8a0;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(213, 166, 66, 0.15);
}

    .world-hero__text h1 em {
        font-style: normal;
        background: linear-gradient(135deg, #ffe8a0, #d5a642);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

.world-hero__mission {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(247, 234, 208, 0.6);
    max-width: 54ch;
    margin: 0 auto;
}

/* ═══ SECTIONS ═══ */
.world-section {
    margin-bottom: 3.5rem;
}

.world-section__title {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #d5a642;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.world-section__title-icon {
    font-size: 0.85rem;
}

.world-section__title-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(213, 166, 66, 0.35), transparent);
}

/* ═══ VISION PILLARS ═══ */
.world-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.world-pillar {
    padding: 1.5rem 1.3rem;
    border: 1px solid rgba(213, 166, 66, 0.18);
    border-radius: 12px;
    background: rgba(14, 13, 11, 0.85);
    transition: border-color 200ms ease;
}

    .world-pillar:hover {
        border-color: rgba(213, 166, 66, 0.35);
    }

.world-pillar__icon {
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
}

.world-pillar h3 {
    font-family: 'Cinzel', serif;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    color: #ffe8a0;
    margin-bottom: 0.5rem;
}

.world-pillar p {
    color: rgba(247, 234, 208, 0.5);
    font-size: 0.85rem;
    line-height: 1.55;
}

/* ═══ TIMELINE (How it Works) ═══ */
.world-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    padding-left: 2.5rem;
}

    .world-timeline::before {
        content: '';
        position: absolute;
        left: 14px;
        top: 8px;
        bottom: 8px;
        width: 2px;
        background: linear-gradient(180deg, rgba(213, 166, 66, 0.5), rgba(213, 166, 66, 0.1));
    }

.world-timeline__item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 1.2rem 0;
    position: relative;
}

.world-timeline__num {
    position: absolute;
    left: -2.5rem;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 2px solid #d5a642;
    background: #050506;
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    font-weight: 900;
    color: #d5a642;
    z-index: 1;
}

.world-timeline__content h4 {
    font-family: 'Cinzel', serif;
    font-size: 0.88rem;
    font-weight: 900;
    color: #ffe8a0;
    letter-spacing: 0.03em;
    margin-bottom: 0.35rem;
}

.world-timeline__content p {
    color: rgba(247, 234, 208, 0.52);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ═══ TERRAIN SHOWCASE ═══ */
.world-terrain-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
    border: 1px solid rgba(213, 166, 66, 0.22);
    border-radius: 16px;
    background: rgba(14, 13, 11, 0.85);
    overflow: hidden;
}

.world-terrain__image-wrap {
    position: relative;
    overflow: hidden;
}

.world-terrain__image {
    width: 100%;
    display: block;
}

.world-terrain__info {
    padding: 1.75rem 1.75rem 1.75rem 0;
}

.world-terrain__faction-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.7rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    border: 1px solid rgba(213, 166, 66, 0.35);
    background: rgba(213, 166, 66, 0.08);
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffe8a0;
}

.world-terrain__info h3 {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 900;
    color: #ffe8a0;
    line-height: 1.3;
    margin-bottom: 0.85rem;
}

.world-terrain__info p {
    color: rgba(247, 234, 208, 0.5);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.world-terrain__coming {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.65rem 0.9rem;
    border-radius: 8px;
    border: 1px dashed rgba(213, 166, 66, 0.2);
    background: rgba(213, 166, 66, 0.04);
    font-size: 0.78rem;
    color: rgba(247, 234, 208, 0.45);
    font-style: italic;
}

.world-terrain__coming-icon {
    font-size: 0.9rem;
}

/* ═══ FEATURES GRID ═══ */
.world-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.world-feature {
    padding: 1.5rem;
    border: 1px solid rgba(213, 166, 66, 0.18);
    border-radius: 12px;
    background: rgba(14, 13, 11, 0.85);
    transition: border-color 200ms ease;
}

    .world-feature:hover {
        border-color: rgba(213, 166, 66, 0.3);
    }

.world-feature__icon {
    font-size: 1.3rem;
    margin-bottom: 0.55rem;
}

.world-feature h4 {
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    font-weight: 900;
    color: #ffe8a0;
    letter-spacing: 0.04em;
    margin-bottom: 0.4rem;
}

.world-feature p {
    color: rgba(247, 234, 208, 0.48);
    font-size: 0.84rem;
    line-height: 1.55;
}

/* ═══ ROADMAP ═══ */
.world-roadmap {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.world-roadmap__phase {
    display: flex;
    gap: 1.2rem;
    padding: 1.5rem 0;
    position: relative;
}

    .world-roadmap__phase + .world-roadmap__phase {
        border-top: 1px solid rgba(213, 166, 66, 0.1);
    }

.world-roadmap__marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 0.25rem;
    flex-shrink: 0;
}

.world-roadmap__dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(213, 166, 66, 0.35);
    background: #050506;
}

.world-roadmap__dot--active {
    border-color: #4ecdc4;
    background: rgba(78, 205, 196, 0.2);
    box-shadow: 0 0 12px rgba(78, 205, 196, 0.3);
}

.world-roadmap__content {
    flex: 1;
}

.world-roadmap__label {
    font-family: 'Cinzel', serif;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(247, 234, 208, 0.4);
    margin-bottom: 0.2rem;
}

.world-roadmap__phase--now .world-roadmap__label {
    color: #4ecdc4;
}

.world-roadmap__content h4 {
    font-family: 'Cinzel', serif;
    font-size: 0.92rem;
    font-weight: 900;
    color: #ffe8a0;
    margin-bottom: 0.35rem;
}

.world-roadmap__content p {
    color: rgba(247, 234, 208, 0.5);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ═══ CTA ═══ */
.world-cta {
    text-align: center;
    padding: 3rem 2rem;
    border: 1px solid rgba(213, 166, 66, 0.28);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(213, 166, 66, 0.06), rgba(213, 166, 66, 0.02));
}

    .world-cta h2 {
        font-family: 'Cinzel', serif;
        font-size: clamp(1.2rem, 3vw, 1.6rem);
        font-weight: 900;
        color: #ffe8a0;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }

    .world-cta > p {
        color: rgba(247, 234, 208, 0.48);
        font-size: 0.92rem;
        line-height: 1.55;
        max-width: 48ch;
        margin: 0 auto 1.5rem;
    }

.world-cta__buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.world-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 160ms ease;
}

.world-cta__btn--primary {
    color: #130e08;
    background: radial-gradient(circle at 40% 0%, rgba(255, 255, 255, 0.58), transparent 42%), linear-gradient(135deg, #ffe8a0 0%, #d6a745 45%, #8f5f1d 100%);
    box-shadow: 0 0 22px rgba(213, 166, 66, 0.3);
}

    .world-cta__btn--primary:hover {
        transform: translateY(-1px);
        box-shadow: 0 0 32px rgba(213, 166, 66, 0.45);
    }

.world-cta__btn--secondary {
    color: #ffe8a0;
    border: 1px solid rgba(213, 166, 66, 0.4);
    background: rgba(5, 5, 6, 0.4);
}

    .world-cta__btn--secondary:hover {
        background: rgba(213, 166, 66, 0.1);
    }

.world-newsletter {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(213, 166, 66, 0.12);
}

.world-newsletter__label {
    font-family: 'Cinzel', serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(247, 234, 208, 0.4);
    margin-bottom: 0.5rem;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 480px) {
    .world-page {
        padding: 0 0.85rem 3rem;
    }

    .world-hero {
        margin-bottom: 2rem;
    }

    .world-hero__image-wrap {
        border-radius: 12px;
        margin-bottom: 1.2rem;
    }

    .world-hero__badge {
        top: 0.75rem;
        right: 0.75rem;
        font-size: 0.55rem;
        padding: 0.35rem 0.75rem;
    }

    .world-hero__text h1 {
        font-size: 1.3rem;
    }

    .world-hero__mission {
        font-size: 0.88rem;
        max-width: unset;
    }

    .world-section {
        margin-bottom: 2.5rem;
    }

    .world-section__title {
        font-size: 0.72rem;
    }

    .world-pillars {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .world-pillar {
        padding: 1.1rem;
    }

        .world-pillar h3 {
            font-size: 0.72rem;
        }

        .world-pillar p {
            font-size: 0.78rem;
        }

    .world-timeline {
        padding-left: 2rem;
    }

    .world-timeline__num {
        left: -2rem;
        width: 24px;
        height: 24px;
        font-size: 0.6rem;
    }

    .world-timeline__content h4 {
        font-size: 0.78rem;
    }

    .world-timeline__content p {
        font-size: 0.78rem;
    }

    .world-terrain-showcase {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .world-terrain__info {
        padding: 1.25rem;
    }

        .world-terrain__info h3 {
            font-size: 0.85rem;
        }

        .world-terrain__info p {
            font-size: 0.78rem;
        }

    .world-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .world-feature {
        padding: 1.1rem;
    }

        .world-feature h4 {
            font-size: 0.7rem;
        }

        .world-feature p {
            font-size: 0.78rem;
        }

    .world-roadmap__content h4 {
        font-size: 0.8rem;
    }

    .world-roadmap__content p {
        font-size: 0.78rem;
    }

    .world-cta {
        padding: 1.5rem 1rem;
        border-radius: 12px;
    }

        .world-cta h2 {
            font-size: 1.1rem;
        }

        .world-cta > p {
            font-size: 0.8rem;
            max-width: unset;
        }

    .world-cta__buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .world-cta__btn {
        width: 100%;
        padding: 0.65rem 1rem;
        font-size: 0.62rem;
    }

    .world-newsletter .newsletter-form {
        flex-direction: column;
        gap: 0.5rem;
    }

        .world-newsletter .newsletter-form input {
            border-radius: 999px;
            border-right: 1px solid rgba(213, 166, 66, 0.28);
        }

        .world-newsletter .newsletter-form button {
            border-radius: 999px;
        }
}

.world-teaser-link {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: 1.5rem;
    padding: 0.85rem 1.1rem;
    border-radius: 12px;
    border: 1px solid rgba(213, 166, 66, 0.25);
    background: rgba(213, 166, 66, 0.04);
    text-decoration: none;
    transition: all 160ms ease;
}

    .world-teaser-link:hover {
        border-color: rgba(213, 166, 66, 0.45);
        background: rgba(213, 166, 66, 0.08);
        transform: translateY(-1px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    }

.world-teaser-link__icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.world-teaser-link__text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    flex: 1;
}

    .world-teaser-link__text strong {
        font-family: 'Cinzel', serif;
        font-size: 0.78rem;
        font-weight: 900;
        letter-spacing: 0.04em;
        color: #ffe8a0;
    }

    .world-teaser-link__text span {
        font-size: 0.78rem;
        color: rgba(247, 234, 208, 0.45);
    }

.world-teaser-link__arrow {
    font-size: 1.1rem;
    color: #d5a642;
    flex-shrink: 0;
    transition: transform 160ms ease;
}

.world-teaser-link:hover .world-teaser-link__arrow {
    transform: translateX(3px);
}

@media (max-width: 480px) {
    .world-teaser-link {
        margin-top: 1rem;
        padding: 0.7rem 0.85rem;
        gap: 0.65rem;
    }

    .world-teaser-link__icon {
        font-size: 1.2rem;
    }

    .world-teaser-link__text strong {
        font-size: 0.68rem;
    }

    .world-teaser-link__text span {
        font-size: 0.68rem;
    }
}

.world-teaser-link .feature-card__icon img {
    width: 44px !important;
    height: 44px !important;
}