:root {
    --ft-gold: #f5c842;
    --ft-green: #00e676;
    --ft-red: #ff6b6b;
    --ft-bg: #06090f;
    --ft-glass: rgba(255, 255, 255, .045);
    --ft-border: rgba(255, 255, 255, .08);
    --ft-text: #e2e8f0;
    --ft-muted: #8494a7 /* upgraded: 6.24:1 on #0a0d1a — AA (was #64748b = 4.07:1 FAIL) */
}

body,
html {
    background: #06090f !important
}

.site-content {
    padding: 0 !important;
    background: #06090f
}

.ft-hero {
    background: linear-gradient(135deg, #06090f 0%, #0a1a0d 45%, #061220 80%, #06090f 100%);
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 80px 24px 48px
}

.ft-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(0, 230, 118, .07) 0%, transparent 70%), radial-gradient(ellipse 50% 40% at 80% 80%, rgba(245, 200, 66, .05) 0%, transparent 65%)
}

.ft-hero h1 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 900;
    background: linear-gradient(135deg, #00e676, #f5c842, #00e676);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 10px;
    position: relative;
    z-index: 1;
    letter-spacing: -.02em
}

.ft-hero .ft-sub {
    color: #b0bec5; /* 10.15:1 on #06090f — AAA (was #94a3b8) */
    font-size: .95rem;
    position: relative;
    z-index: 1
}

.ft-breadcrumb {
    padding: 12px 0;
    border-bottom: 1px solid var(--ft-border);
    font-size: .8rem;
    color: var(--ft-muted)
}

.ft-breadcrumb a {
    color: var(--ft-green);
    text-decoration: none;
    font-weight: 600
}

.ft-breadcrumb .sep {
    margin: 0 6px;
    opacity: .4
}

.ft-main {
    padding: 40px 0 80px
}

.ft-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 28px;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px
}

@media(max-width:860px) {
    .ft-grid {
        grid-template-columns: 1fr;
        gap: 20px
    }
}

/* Score Card */
.ft-score-card {
    background: var(--ft-glass);
    border: 1px solid var(--ft-border);
    border-radius: 16px;
    padding: 32px;
    backdrop-filter: blur(12px);
    text-align: center
}

.ft-score-ring {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative
}

.ft-score-ring::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: var(--ring-color, #00e676);
    animation: ft-spin 2s linear infinite
}

@keyframes ft-spin {
    to {
        transform: rotate(360deg)
    }
}

.ft-score-val {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1
}

.ft-score-max {
    font-size: .85rem;
    color: var(--ft-muted);
    margin-top: 2px
}

.ft-score-label {
    font-size: 1.05rem;
    font-weight: 700;
    margin-top: 12px
}

/* Info Pills */
.ft-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 24px
}

.ft-pill {
    padding: 8px 18px;
    border-radius: 100px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--ft-border);
    font-size: .8rem;
    font-weight: 600;
    color: var(--ft-text)
}

.ft-pill .pill-label {
    color: var(--ft-muted);
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    display: block;
    margin-bottom: 2px
}

/* Lucky Numbers */
.ft-nums-section {
    margin-top: 28px
}

.ft-nums-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ft-text);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px
}

.ft-lucky-balls {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap
}

.ft-lucky-ball {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    /* Western Luxury Ruby — Baccarat Crystal / Product (RED) Aesthetic */
    background: radial-gradient(
        circle at 35% 25%,
        #fca5a5 0%,
        #ef4444 30%,
        #b91c1c 65%,
        #7f1d1d 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    font-family: 'Inter', -apple-system, sans-serif;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(60, 5, 5, 0.6);
    box-shadow:
        0 12px 24px -6px rgba(153, 27, 27, 0.5),
        inset 0 -4px 10px rgba(69, 10, 10, 0.7),
        inset 0 2px 6px rgba(255, 255, 255, 0.4);
    animation: ft-ball-pop .5s cubic-bezier(.16, 1, .3, 1) both;
    transition: transform 0.3s cubic-bezier(.16, 1, .3, 1), box-shadow 0.3s ease;
}

.ft-lucky-ball:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow:
        0 16px 32px -6px rgba(153, 27, 27, 0.6),
        inset 0 -4px 10px rgba(69, 10, 10, 0.7),
        inset 0 2px 6px rgba(255, 255, 255, 0.5);
}

.ft-lucky-ball:nth-child(1) {
    animation-delay: .1s
}

.ft-lucky-ball:nth-child(2) {
    animation-delay: .2s
}

.ft-lucky-ball:nth-child(3) {
    animation-delay: .2s
}

.ft-lucky-ball:nth-child(4) {
    animation-delay: .3s
}

.ft-lucky-ball:nth-child(5) {
    animation-delay: .4s
}

.ft-lucky-ball:nth-child(6) {
    animation-delay: .5s
}

@keyframes ft-ball-pop {
    from {
        transform: scale(0);
        opacity: 0
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}

/* Sidebar */
.ft-sidebar .ft-side-card {
    background: var(--ft-glass);
    border: 1px solid var(--ft-border);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(12px);
    margin-bottom: 20px
}

.ft-side-card h3 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--ft-text);
    margin: 0 0 16px
}

.ft-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
    font-size: .85rem
}

.ft-detail-row:last-child {
    border: none
}

.ft-detail-row .dl {
    color: var(--ft-muted)
}

.ft-detail-row .dv {
    font-weight: 700;
    color: var(--ft-text)
}

/* Bars */
.ft-bar-wrap {
    margin-top: 8px
}

.ft-bar-label {
    display: flex;
    justify-content: space-between;
    font-size: .78rem;
    font-weight: 600;
    margin-bottom: 4px
}

.ft-bar-label .bl {
    color: var(--ft-muted)
}

.ft-bar-label .bv {
    color: var(--ft-text)
}

.ft-bar-track {
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, .06);
    overflow: hidden
}

.ft-bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width .8s ease
}

/* CTA */
.ft-cta {
    display: block;
    text-align: center;
    padding: 14px;
    background: linear-gradient(135deg, #00e676, #00b359);
    border-radius: 12px;
    color: #000;
    font-weight: 800;
    font-size: .95rem;
    text-decoration: none;
    margin-top: 20px;
    transition: transform .15s, box-shadow .15s;
    box-shadow: 0 4px 20px rgba(0, 230, 118, .35)
}

.ft-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 28px rgba(0, 230, 118, .5);
    color: #000
}

/* SEO Content */
.ft-seo {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px 60px
}

.ft-seo-card {
    background: var(--ft-glass);
    border: 1px solid var(--ft-border);
    border-radius: 16px;
    padding: 32px;
    backdrop-filter: blur(12px)
}

.ft-seo-card h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ft-text);
    margin: 0 0 14px
}

.ft-seo-card p {
    font-size: .88rem;
    line-height: 1.7;
    color: #b0bec5; /* 10.46:1 on #06090f — AAA (was #94a3b8) */
    margin: 0 0 12px
}

.ft-seo-card a {
    color: var(--ft-green);
    font-weight: 600;
    text-decoration: none
}

.ft-seo-card a:hover {
    text-decoration: underline
}

/* Share */
.ft-share {
    display: flex;
    gap: 8px;
    margin-top: 16px
}

.ft-share-btn {
    flex: 1;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid var(--ft-border);
    background: rgba(255, 255, 255, .04);
    color: var(--ft-text);
    font-size: .8rem;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: all .2s
}

.ft-share-btn:hover {
    background: rgba(0, 230, 118, .1);
    border-color: rgba(0, 230, 118, .3);
    color: var(--ft-green)
}

/* ═══════════════════════════════════════════════════
   Destiny Talisman — Crystal Recommendation Card
   Monolith Matrix design language (glassmorphism)
   ═══════════════════════════════════════════════════ */
.ftr-talisman {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

.ftr-talisman-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(40px) saturate(1.8);
    -webkit-backdrop-filter: blur(40px) saturate(1.8);
    border-radius: 20px;
    overflow: hidden;
    border: 0.5px solid rgba(212, 175, 55, 0.08);
    box-shadow:
        0 2px 80px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

/* Champagne gold gradient pseudo-border */
.ftr-talisman-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 0.5px;
    background: linear-gradient(135deg,
            rgba(212, 175, 55, 0.5) 0%,
            rgba(212, 175, 55, 0.15) 40%,
            transparent 70%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 10;
}

/* Text Region */
.ftr-talisman-text {
    padding: 44px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    position: relative;
    z-index: 2;
}

.ftr-talisman-epigraph {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: rgba(212, 175, 55, 0.55);
    margin: 0 0 16px;
    line-height: 1.5;
}

.ftr-talisman-headline {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #f0ebe3;
    margin: 0 0 12px;
    line-height: 1.3;
}

.ftr-talisman-headline em {
    font-style: italic;
    color: rgba(212, 175, 55, 0.9);
}

.ftr-talisman-subhead {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.45);
    margin: 0 0 20px;
    line-height: 1.6;
}

.ftr-talisman-subhead strong {
    color: rgba(212, 175, 55, 0.7);
    font-weight: 500;
}

.ftr-talisman-product-info {
    margin-bottom: 20px;
}

.ftr-talisman-name {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 1rem;
    font-weight: 400;
    color: #f0ebe3;
    margin-bottom: 4px;
}

.ftr-talisman-mat {
    font-size: 0.72rem;
    font-weight: 300;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
}

/* CTA Button */
.ftr-talisman-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg,
            rgba(212, 175, 55, 0.15),
            rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 100px;
    color: rgba(212, 175, 55, 0.85);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.ftr-talisman-cta:hover {
    background: linear-gradient(135deg,
            rgba(212, 175, 55, 0.25),
            rgba(212, 175, 55, 0.1));
    border-color: rgba(212, 175, 55, 0.5);
    color: rgba(212, 175, 55, 1);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
}

.ftr-talisman-cta svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.ftr-talisman-cta:hover svg {
    transform: translateX(3px);
}

.ftr-talisman-tm {
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(212, 175, 55, 0.25);
    margin-top: 16px;
}

/* Visual Region */
.ftr-talisman-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    background: radial-gradient(ellipse at 50% 50%,
            rgba(212, 175, 55, 0.04) 0%,
            transparent 70%);
    overflow: hidden;
}

.ftr-talisman-color-disc {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    opacity: 0.7;
    z-index: 1;
}

.ftr-talisman-color-disc svg {
    width: 100%;
    height: 100%;
}

.ftr-talisman-img {
    max-width: 260px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.4));
    position: relative;
    z-index: 2;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.ftr-talisman-card:hover .ftr-talisman-img {
    transform: scale(1.03) translateY(-4px);
}

/* Mobile */
@media(max-width:860px) {
    .ftr-talisman-card {
        grid-template-columns: 1fr;
    }

    .ftr-talisman-text {
        padding: 28px 24px 20px;
        text-align: center;
        align-items: center;
    }

    .ftr-talisman-cta {
        align-self: center;
    }

    .ftr-talisman-visual {
        padding: 20px 24px 32px;
    }

    .ftr-talisman-img {
        max-width: 200px;
    }

    .ftr-talisman-color-disc {
        top: 8px;
        right: 8px;
        width: 36px;
        height: 36px;
    }
}