/* ============================================
   GLHF Gaming — FunCoin Page (fc-page.css)
   ============================================ */

/* --- Local FC tokens --- */
.fc-page,
.fc-parallax-bg,
.fc-grid-overlay {
    --fc-gold: #ff9800;
    --fc-gold-rgb: 255, 152, 0;
    --fc-gold-light: #ffd23f;
    --fc-gold-dark: #ff6a00;
    --fc-gold-gradient: linear-gradient(135deg, #ffd23f 0%, #ff9800 50%, #ff6a00 100%);
    --fc-gold-glow: rgba(255, 152, 0, 0.4);
    --fc-gold-glow-lg: rgba(255, 152, 0, 0.6);
    --fc-gold-dim: rgba(255, 152, 0, 0.12);
    --fc-gold-border: rgba(255, 152, 0, 0.3);
    --fc-gold-border-bright: rgba(255, 152, 0, 0.6);
}

/* ============================================
   PARALLAX BACKGROUND
   ============================================ */
.fc-parallax-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.fc-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.06;
    will-change: transform;
}

.fc-shape-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, #ff9800, #ff6a00);
    top: -250px;
    right: -200px;
    animation: fcShapeFloat 28s ease-in-out infinite;
}

.fc-shape-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #ffd23f, #ff9800);
    bottom: -150px;
    left: -150px;
    animation: fcShapeFloat 35s ease-in-out infinite reverse;
}

.fc-shape-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ff9800, #9b5a00);
    top: 40%;
    left: 20%;
    animation: fcShapeFloat 42s ease-in-out infinite;
    opacity: 0.04;
}

.fc-shape-4 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #00ff64, #00cc50);
    top: 25%;
    right: 15%;
    animation: fcShapeFloat 38s ease-in-out infinite reverse;
    opacity: 0.03;
}

@keyframes fcShapeFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%       { transform: translate(50px, -60px) scale(1.08); }
    66%       { transform: translate(-40px, 50px) scale(0.94); }
}

.fc-grid-overlay {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 152, 0, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 152, 0, 0.015) 1px, transparent 1px);
    background-size: 64px 64px;
}

/* ============================================
   MAIN WRAPPER
   ============================================ */
.fc-page {
    position: relative;
    z-index: 2;
    overflow: hidden;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.fc-gold-text {
    background: var(--fc-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fc-danger-text {
    color: var(--glhf-danger);
}

/* Gold button: transparent by default, gold fill on hover */
.fc-btn-gold {
    border-color: var(--fc-gold) !important;
    color: var(--fc-gold) !important;
    background: transparent !important;
    box-shadow: 0 0 20px rgba(var(--fc-gold-rgb), 0.15) !important;
    transition: all 0.25s ease !important;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.fc-btn-gold::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--fc-gold-gradient) !important;
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: -1;
}

.fc-btn-gold:hover {
    background: transparent !important;
    box-shadow: 0 0 35px rgba(var(--fc-gold-rgb), 0.5) !important;
    color: #0a0e12 !important;
    transform: translateY(-2px) !important;
    border-color: var(--fc-gold-light) !important;
}

.fc-btn-gold:hover::before {
    opacity: 1;
}

/* Outline local (no inherited glhf-btn--outline dependency) */
.fc-btn-outline-local {
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    color: var(--glhf-text-secondary) !important;
    transition: all 0.25s ease !important;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.fc-btn-outline-local::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: rgba(255, 255, 255, 0.08) !important;
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: -1;
}

.fc-btn-outline-local:hover {
    background: transparent !important;
    border-color: rgba(255, 255, 255, 0.45) !important;
    color: var(--glhf-text-primary) !important;
    transform: translateY(-2px) !important;
}

.fc-btn-outline-local:hover::before {
    opacity: 1;
}

/* ============================================
   SECTION COMMON
   ============================================ */
.fc-section {
    padding: 5rem 0;
    position: relative;
    z-index: 2;
}

.fc-section + .fc-section {
    border-top: 1px solid rgba(var(--fc-gold-rgb), 0.08);
}

.fc-section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.fc-section-title {
    font-family: var(--glhf-font-heading);
    font-weight: 900;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--glhf-text-primary);
    margin: 0 0 1rem;
    line-height: 1.15;
}

.fc-section-desc {
    max-width: 680px;
    margin: 0 auto;
    color: var(--glhf-text-secondary);
    font-size: 1.05rem;
    line-height: 1.75;
}

/* ============================================
   HERO
   ============================================ */
.fc-hero {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: calc(var(--glhf-header-height) + 2rem);
    padding-bottom: 4rem;
    text-align: center;
    overflow: hidden;
}

.fc-hero__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

/* Coin */
.fc-hero__coin-wrap {
    position: relative;
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.fc-hero__coin-glow {
    position: absolute;
    inset: -30px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--fc-gold-rgb), 0.35) 0%, transparent 70%);
    animation: fcCoinPulse 3s ease-in-out infinite;
}

.fc-hero__coin {
    width: 180px;
    height: auto;
    max-width: 180px;
    max-height: 180px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter:
        drop-shadow(0 0 20px rgba(var(--fc-gold-rgb), 0.6))
        drop-shadow(0 0 60px rgba(var(--fc-gold-rgb), 0.3));
    animation: fcCoinFloat 4s ease-in-out infinite;
}

@keyframes fcCoinFloat {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50%       { transform: translateY(-18px) rotate(2deg); }
}

@keyframes fcCoinPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50%       { transform: scale(1.2); opacity: 1; }
}

/* Hero text */
.fc-hero__label {
    font-family: var(--glhf-font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--fc-gold);
    margin-bottom: 0.75rem;
    opacity: 0.9;
}

.fc-hero__title {
    font-family: var(--glhf-font-heading);
    font-weight: 900;
    font-size: clamp(3.5rem, 10vw, 7rem);
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1.1;
    margin: 0 0 1.25rem;
    color: var(--glhf-text-primary);
}

.fc-hero__title-coin {
    display: inline-block;
    padding: 0 0.05em 0.1em 0;
    background: linear-gradient(90deg, #ffd23f 0%, #ff9800 55%, #ff6a00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(var(--fc-gold-rgb), 0.5));
}

/* Alignment fix for fc-gold-text inside hero title (background-clip already set in base rule) */
.fc-hero__title .fc-gold-text {
    display: inline-block;
    padding: 0 0.05em 0.1em 0;
}

.fc-hero__sub {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--glhf-text-secondary);
    max-width: 520px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.fc-hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* ============================================
   HERO INTRO ANIMATIONS
   ============================================ */

/* Coin burst in */
@keyframes fcHeroCoinIn {
    0% {
        opacity: 0;
        transform: scale(0.25) rotateY(-180deg);
        filter: drop-shadow(0 0 0px rgba(var(--fc-gold-rgb), 0)) drop-shadow(0 0 0px rgba(var(--fc-gold-rgb), 0));
    }
    60% {
        opacity: 1;
        transform: scale(1.12) rotateY(8deg);
        filter: drop-shadow(0 0 40px rgba(var(--fc-gold-rgb), 0.9)) drop-shadow(0 0 100px rgba(var(--fc-gold-rgb), 0.5));
    }
    80% {
        transform: scale(0.96) rotateY(-3deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotateY(0deg);
        filter: drop-shadow(0 0 20px rgba(var(--fc-gold-rgb), 0.6)) drop-shadow(0 0 60px rgba(var(--fc-gold-rgb), 0.3));
    }
}

/* Glow burst */
@keyframes fcHeroGlowBurst {
    0%   { opacity: 0; transform: scale(0.5); }
    40%  { opacity: 1; transform: scale(1.4); }
    100% { opacity: 0.8; transform: scale(1); }
}

/* Label fade+slide */
@keyframes fcHeroFadeUp {
    0%   { opacity: 0; transform: translateY(30px); }
    100% { opacity: 0.9; transform: translateY(0); }
}

/* Title reveal (clip path) */
@keyframes fcHeroTitleReveal {
    0%   { opacity: 0; clip-path: inset(0 0 100% 0); transform: translateY(20px); }
    100% { opacity: 1; clip-path: inset(0 0 0% 0);   transform: translateY(0); }
}

/* Buttons/sub soft fade */
@keyframes fcHeroSubFade {
    0%   { opacity: 0; transform: translateY(24px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Glow wrap pulse for intro */
@keyframes fcHeroWrapIn {
    0%   { opacity: 0; transform: scale(0.4); }
    60%  { opacity: 1; transform: scale(1.08); }
    100% { opacity: 1; transform: scale(1); }
}

.fc-hero-anim-coin {
    animation: fcHeroCoinIn 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both,
               fcCoinFloat 4s ease-in-out 1.5s infinite;
}

.fc-hero__coin-wrap {
    animation: fcHeroWrapIn 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.05s both;
}

.fc-hero__coin-glow {
    animation: fcHeroGlowBurst 1.1s ease-out 0.3s both,
               fcCoinPulse 3s ease-in-out 1.5s infinite;
}

.fc-hero-anim-label {
    animation: fcHeroFadeUp 0.7s ease-out 0.9s both;
}

.fc-hero-anim-title {
    animation: fcHeroTitleReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) 1.15s both;
}

.fc-hero-anim-sub {
    animation: fcHeroSubFade 0.8s ease-out 1.5s both;
}

.fc-hero-anim-actions {
    animation: fcHeroSubFade 0.8s ease-out 1.75s both;
}

/* ============================================
   SCROLL MOUSE INDICATOR
   ============================================ */
.fc-scroll-mouse {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fcScrollMouseIn 0.8s ease-out 2.2s both;
}

@keyframes fcScrollMouseIn {
    0%   { opacity: 0; transform: translateX(-50%) translateY(24px); }
    100% { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.fc-scroll-mouse__body {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(var(--fc-gold-rgb), 0.55);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
    position: relative;
    box-shadow: 0 0 12px rgba(var(--fc-gold-rgb), 0.2);
}

.fc-scroll-mouse__wheel {
    width: 4px;
    height: 7px;
    background: var(--fc-gold-gradient);
    border-radius: 2px;
    animation: fcScrollWheel 1.8s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(var(--fc-gold-rgb), 0.6);
}

@keyframes fcScrollWheel {
    0%   { opacity: 1; transform: translateY(0); }
    60%  { opacity: 0.2; transform: translateY(12px); }
    61%  { opacity: 0; transform: translateY(0); }
    100% { opacity: 1; transform: translateY(0); }
}

.fc-scroll-mouse__arrow {
    width: 8px;
    height: 8px;
    border-right: 2px solid rgba(var(--fc-gold-rgb), 0.5);
    border-bottom: 2px solid rgba(var(--fc-gold-rgb), 0.5);
    transform: rotate(45deg);
    animation: fcArrowBlink 1.8s ease-in-out infinite;
}

@keyframes fcArrowBlink {
    0%, 100% { opacity: 0.4; transform: rotate(45deg) translateY(0); }
    50%       { opacity: 0.9; transform: rotate(45deg) translateY(3px); }
}

/* ============================================
   INTRO CARDS
   ============================================ */
.fc-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.fc-card {
    flex: 0 1 280px;
    background: var(--glhf-bg-card);
    border: 1px solid var(--fc-gold-border);
    border-radius: var(--glhf-radius-lg);
    padding: 2rem 1.75rem;
    position: relative;
    overflow: hidden;
    transition: all var(--glhf-transition);
}

.fc-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(var(--fc-gold-rgb), 0.1) 0%, transparent 50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--glhf-transition);
}

.fc-card:hover {
    border-color: var(--fc-gold-border-bright);
    box-shadow: 0 0 40px rgba(var(--fc-gold-rgb), 0.15), var(--glhf-shadow-md);
    transform: translateY(-4px);
}

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

.fc-card__icon {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 0 10px rgba(var(--fc-gold-rgb), 0.5));
}

.fc-card__title {
    font-family: var(--glhf-font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--glhf-text-primary);
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fc-card__desc {
    font-size: 0.9rem;
    color: var(--glhf-text-secondary);
    line-height: 1.65;
    margin: 0;
}

/* ============================================
   PRIZES
   ============================================ */
.fc-prizes {
    background: linear-gradient(135deg, rgba(var(--fc-gold-rgb), 0.04) 0%, transparent 60%);
}

.fc-prizes__brands {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem 1.5rem;
    margin-bottom: 3rem;
}

/* SVG logo brand items */
.fc-brand-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    cursor: default;
    transition: transform var(--glhf-transition-fast);
}

.fc-brand-logo:hover {
    transform: translateY(-3px);
}

.fc-brand-logo__mask {
    width: 56px;
    height: 28px;
    background: var(--fc-gold-gradient);
    -webkit-mask: var(--logo-url) center / contain no-repeat;
    mask: var(--logo-url) center / contain no-repeat;
    filter: drop-shadow(0 0 8px rgba(var(--fc-gold-rgb), 0.4));
    max-width: 100%;
}

.fc-brand-logo__label {
    font-family: var(--glhf-font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--glhf-text-muted);
}

/* Text fallback chip */
.fc-brand-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 20px;
    font-family: var(--glhf-font-heading);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--fc-gold);
    background: rgba(var(--fc-gold-rgb), 0.08);
    border: 1px solid var(--fc-gold-border);
    border-radius: var(--glhf-radius-full);
    transition: all var(--glhf-transition-fast);
    cursor: default;
}

.fc-brand-chip:hover {
    background: rgba(var(--fc-gold-rgb), 0.16);
    border-color: var(--fc-gold-border-bright);
    box-shadow: 0 0 20px rgba(var(--fc-gold-rgb), 0.2);
    transform: translateY(-2px);
}

.fc-brand-chip--skins {
    border-color: var(--glhf-border-bright);
    color: var(--glhf-accent);
    background: rgba(var(--glhf-accent-rgb), 0.06);
}

.fc-brand-chip--skins:hover {
    border-color: var(--glhf-border-bright);
    box-shadow: 0 0 20px rgba(var(--glhf-accent-rgb), 0.2);
    background: rgba(var(--glhf-accent-rgb), 0.12);
    color: var(--glhf-accent);
}

.fc-prizes__showcase {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.fc-prize-card {
    flex: 0 1 460px;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: var(--glhf-bg-card);
    border: 1px solid var(--glhf-border);
    border-radius: var(--glhf-radius-lg);
    padding: 1.75rem;
    transition: all var(--glhf-transition);
}

.fc-prize-card--hardware { border-color: rgba(var(--fc-gold-rgb), 0.2); }
.fc-prize-card--skins    { border-color: rgba(var(--glhf-accent-rgb), 0.2); }

.fc-prize-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--glhf-shadow-md);
}

.fc-prize-card--hardware:hover { box-shadow: 0 4px 30px rgba(var(--fc-gold-rgb), 0.15); }
.fc-prize-card--skins:hover    { box-shadow: 0 4px 30px rgba(var(--glhf-accent-rgb), 0.12); }

.fc-prize-card__icon {
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
}

.fc-prize-card__content h3 {
    font-family: var(--glhf-font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--glhf-text-primary);
    margin: 0 0 0.5rem;
}

.fc-prize-card__content p {
    font-size: 0.88rem;
    color: var(--glhf-text-secondary);
    line-height: 1.65;
    margin: 0;
}

.fc-prizes__cta {
    text-align: center;
}

.fc-prizes__cta-text {
    font-size: 1.1rem;
    color: var(--glhf-text-secondary);
    margin-bottom: 1.5rem;
}

/* ============================================
   EARN
   ============================================ */
.fc-earn__base {
    background: linear-gradient(135deg, rgba(var(--fc-gold-rgb), 0.1) 0%, rgba(var(--fc-gold-rgb), 0.04) 100%);
    border: 1px solid var(--fc-gold-border);
    border-radius: var(--glhf-radius-xl);
    padding: 2rem 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.fc-earn__base::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--fc-gold-gradient);
}

.fc-earn__base-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.fc-earn__base-coin {
    width: 48px;
    height: auto;
    max-width: 48px;
    max-height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(var(--fc-gold-rgb), 0.5));
    flex-shrink: 0;
}

.fc-earn__base-formula {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.4rem;
}

.fc-earn__base-eq {
    font-family: var(--glhf-font-heading);
    font-weight: 700;
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    color: var(--glhf-text-primary);
    letter-spacing: 0.5px;
}

.fc-earn__base-arrow {
    font-size: 1.5rem;
    color: var(--fc-gold);
    font-weight: 900;
}

.fc-earn__base-val {
    font-family: var(--glhf-font-heading);
    font-weight: 900;
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    letter-spacing: 1px;
    filter: drop-shadow(0 0 15px rgba(var(--fc-gold-rgb), 0.5));
}

.fc-earn__base-hint {
    font-size: 0.88rem;
    color: var(--glhf-text-muted);
    margin: 0;
}

.fc-earn__group-title {
    font-family: var(--glhf-font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--glhf-text-primary);
    margin: 0 0 1.25rem;
}

/* Activities grid: 6 items in one row on desktop */
.fc-earn__grid--activities {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

/* Bonuses grid: flex-center so partial rows center */
.fc-earn__grid--bonuses {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.fc-earn__grid--bonuses .fc-earn-item {
    flex: 0 1 240px;
    border-color: rgba(var(--fc-gold-rgb), 0.12);
}

.fc-earn-item {
    background: var(--glhf-bg-card);
    border: 1px solid var(--glhf-border);
    border-radius: var(--glhf-radius-lg);
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    transition: all var(--glhf-transition);
    position: relative;
    overflow: hidden;
}

.fc-earn-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--fc-gold-gradient);
    border-radius: 0 0 0 var(--glhf-radius-lg);
    opacity: 0;
    transition: opacity var(--glhf-transition);
}

.fc-earn-item:hover {
    border-color: var(--fc-gold-border);
    box-shadow: 0 0 25px rgba(var(--fc-gold-rgb), 0.1);
    transform: translateY(-2px);
}

.fc-earn-item:hover::after {
    opacity: 1;
}

.fc-earn-item--bonus {
    background: rgba(var(--fc-gold-rgb), 0.04);
}

.fc-earn-item__val {
    font-family: var(--glhf-font-heading);
    font-weight: 900;
    font-size: 1.75rem;
    background: var(--fc-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.fc-earn-item__unit {
    font-family: var(--glhf-font-heading);
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--glhf-text-muted);
    margin-bottom: 0.4rem;
}

.fc-earn-item__desc {
    font-size: 0.88rem;
    color: var(--glhf-text-secondary);
    line-height: 1.5;
}

.fc-earn-item__link {
    font-size: 0.78rem;
    color: var(--fc-gold);
    text-decoration: none;
    margin-top: 0.25rem;
    transition: color var(--glhf-transition-fast);
}

.fc-earn-item__link:hover {
    color: var(--glhf-text-primary);
}

.fc-earn__more {
    text-align: center;
    margin-top: -1rem;
}

.fc-earn__more-link {
    font-family: var(--glhf-font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--fc-gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(var(--fc-gold-rgb), 0.3);
    padding-bottom: 2px;
    transition: all var(--glhf-transition-fast);
}

.fc-earn__more-link:hover {
    color: var(--glhf-text-primary);
    border-color: var(--glhf-text-primary);
}

/* ============================================
   STREAKS
   ============================================ */
.fc-streaks {
    background: linear-gradient(135deg, rgba(var(--fc-gold-rgb), 0.03) 0%, transparent 70%);
}

.fc-streaks__scale {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    max-width: 760px;
    margin: 0 auto 2rem;
}

.fc-streak-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.fc-streak-row__header {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    min-width: 90px;
    flex-shrink: 0;
}

.fc-streak-row__days {
    font-family: var(--glhf-font-heading);
    font-weight: 900;
    font-size: 1.15rem;
    color: var(--glhf-text-primary);
    line-height: 1;
}

.fc-streak-row__days span {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--glhf-text-muted);
}

.fc-streak-row__bonus {
    font-family: var(--glhf-font-heading);
    font-weight: 900;
    font-size: 0.78rem;
    letter-spacing: 1px;
    background: var(--fc-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 2px;
}

.fc-streak-row__bar-wrap {
    flex: 1;
    height: 10px;
    background: rgba(var(--fc-gold-rgb), 0.08);
    border-radius: var(--glhf-radius-full);
    overflow: hidden;
    border: 1px solid rgba(var(--fc-gold-rgb), 0.1);
}

.fc-streak-row__bar {
    height: 100%;
    width: 0;
    border-radius: var(--glhf-radius-full);
    background: var(--fc-gold-gradient);
    box-shadow: 0 0 12px rgba(var(--fc-gold-rgb), 0.4);
    transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: calc(var(--streak-i, 0) * 0.07s);
}

.fc-streak-row__bar.animated {
    width: var(--w);
}

.fc-streaks__footer {
    text-align: center;
}

/* ============================================
   BALANCE (TERMINAL)
   ============================================ */
.fc-balance__content {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.fc-terminal {
    background: #0a0e12;
    border: 1px solid rgba(var(--fc-gold-rgb), 0.25);
    border-radius: var(--glhf-radius-lg);
    overflow: hidden;
    box-shadow: 0 0 40px rgba(var(--fc-gold-rgb), 0.1), var(--glhf-shadow-lg);
}

.fc-terminal__bar {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(var(--fc-gold-rgb), 0.06);
    padding: 10px 16px;
    border-bottom: 1px solid rgba(var(--fc-gold-rgb), 0.15);
}

.fc-terminal__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(var(--fc-gold-rgb), 0.3);
}

.fc-terminal__dot:first-child { background: #ef4444; }
.fc-terminal__dot:nth-child(2) { background: #f59e0b; }
.fc-terminal__dot:nth-child(3) { background: #22c55e; }

.fc-terminal__title {
    margin-left: 8px;
    font-family: var(--glhf-font-mono);
    font-size: 0.75rem;
    color: var(--glhf-text-muted);
    letter-spacing: 0.5px;
}

.fc-terminal__body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.fc-terminal__line {
    font-family: var(--glhf-font-mono);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.fc-terminal__prompt {
    color: var(--fc-gold);
    font-weight: 900;
    flex-shrink: 0;
}

.fc-terminal__path {
    color: var(--glhf-text-muted);
    font-size: 0.82rem;
}

.fc-terminal__cmd {
    background: rgba(var(--fc-gold-rgb), 0.12);
    color: var(--fc-gold);
    padding: 3px 10px;
    border-radius: var(--glhf-radius-sm);
    font-weight: 700;
    border: 1px solid rgba(var(--fc-gold-rgb), 0.25);
    letter-spacing: 1px;
}

.fc-terminal__or {
    color: var(--glhf-text-muted);
    font-size: 0.78rem;
}

.fc-terminal__line--output {
    color: var(--glhf-text-secondary);
    font-size: 0.82rem;
    margin-top: 0.25rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.fc-terminal__out-label {
    color: var(--glhf-accent);
    font-weight: 700;
}

.fc-balance__aside {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

.fc-balance__aside-text {
    color: var(--glhf-text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   RULES
   ============================================ */
.fc-rules {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.03) 0%, transparent 60%);
}

.fc-rules__cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.fc-rule-card {
    flex: 0 1 300px;
    background: var(--glhf-bg-card);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--glhf-radius-lg);
    padding: 2rem 1.75rem;
    position: relative;
    overflow: hidden;
    transition: all var(--glhf-transition);
}

.fc-rule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.6), transparent);
    opacity: 0;
    transition: opacity var(--glhf-transition);
}

.fc-rule-card:hover {
    border-color: rgba(239, 68, 68, 0.4);
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.08);
}

.fc-rule-card:hover::before {
    opacity: 1;
}

.fc-rule-card__num {
    font-family: var(--glhf-font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(239, 68, 68, 0.15);
    line-height: 1;
    margin-bottom: 0.75rem;
    letter-spacing: -2px;
}

.fc-rule-card__title {
    font-family: var(--glhf-font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--glhf-danger);
    margin-bottom: 0.75rem;
}

.fc-rule-card__list {
    list-style: none;
    padding: 0;
    margin: 0 0 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.fc-rule-card__list li {
    font-size: 0.88rem;
    color: var(--glhf-text-secondary);
    padding-left: 1.1rem;
    position: relative;
    line-height: 1.5;
}

.fc-rule-card__list li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: rgba(239, 68, 68, 0.5);
}

.fc-rule-card__desc,
.fc-rule-card__penalty {
    font-size: 0.88rem;
    color: var(--glhf-text-secondary);
    line-height: 1.6;
    margin: 0;
}

.fc-rule-card__penalty {
    padding-top: 0.75rem;
    border-top: 1px solid rgba(239, 68, 68, 0.15);
    color: var(--glhf-text-muted);
    font-style: italic;
}

.fc-moderation-badge {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: rgba(239, 68, 68, 0.06);
    border: 1px solid rgba(239, 68, 68, 0.25);
    border-radius: var(--glhf-radius-lg);
    padding: 1.5rem 2rem;
    max-width: 760px;
    margin: 0 auto;
}

.fc-moderation-badge__icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.fc-moderation-badge__text {
    font-size: 0.92rem;
    color: var(--glhf-text-secondary);
    line-height: 1.65;
}

.fc-moderation-badge__text strong {
    color: var(--glhf-text-primary);
    display: block;
    margin-bottom: 0.3rem;
    font-family: var(--glhf-font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

/* ============================================
   FINAL CTA
   ============================================ */
.fc-cta {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 10rem 0;
}

.fc-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(var(--fc-gold-rgb), 0.07) 0%, transparent 65%);
    pointer-events: none;
}

.fc-cta__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.25rem;
}

.fc-cta__coin {
    width: 100px;
    height: auto;
    max-width: 100px;
    max-height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(var(--fc-gold-rgb), 0.6));
    animation: fcCoinFloat 4s ease-in-out infinite;
}

.fc-cta__title {
    font-family: var(--glhf-font-heading);
    font-weight: 900;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--glhf-text-primary);
    margin: 0;
    line-height: 1.15;
}

.fc-cta__desc {
    max-width: 520px;
    color: var(--glhf-text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.fc-cta__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0.5rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
    .fc-earn__grid--activities {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .fc-balance__content {
        grid-template-columns: 1fr;
    }

    .fc-balance__aside {
        align-items: center;
        text-align: center;
    }

    .fc-prize-card {
        flex-basis: 100%;
    }

    .fc-earn__grid--activities {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .fc-hero {
        padding-top: calc(var(--glhf-header-height) + 1.5rem);
        min-height: auto;
        padding-bottom: 3rem;
    }

    .fc-scroll-mouse {
        display: none;
    }

    .fc-hero__coin-wrap {
        width: 160px;
        height: 160px;
        margin-bottom: 1.75rem;
    }

    .fc-hero__coin {
        width: 130px;
        max-width: 130px;
    }

    .fc-hero__coin-glow {
        inset: -20px;
    }

    .fc-section {
        padding: 3.5rem 0;
    }

    .fc-card {
        flex-basis: 100%;
    }

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

    .fc-earn__grid--bonuses .fc-earn-item {
        flex-basis: calc(50% - 0.5rem);
    }

    .fc-earn__base-inner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .fc-earn__base-formula {
        justify-content: center;
    }

    .fc-streak-row {
        gap: 0.75rem;
    }

    .fc-streak-row__header {
        min-width: 70px;
    }

    .fc-rule-card {
        flex-basis: 100%;
    }

    .fc-moderation-badge {
        flex-direction: column;
        text-align: center;
    }

    .fc-hero__actions,
    .fc-cta__actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .fc-earn__grid--activities {
        grid-template-columns: repeat(2, 1fr);
    }

    .fc-earn__grid--bonuses .fc-earn-item {
        flex-basis: 100%;
    }

    .fc-prizes__brands {
        gap: 0.5rem;
    }

    .fc-brand-chip {
        font-size: 0.72rem;
        padding: 6px 14px;
    }

    .fc-brand-logo__mask {
        width: 44px;
        height: 22px;
    }
}

/* ============================================
   PREFERS-REDUCED-MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .fc-shape,
    .fc-hero__coin,
    .fc-hero__coin-glow,
    .fc-scroll-mouse__wheel,
    .fc-scroll-mouse__arrow,
    .fc-cta__coin {
        animation: none !important;
    }

    .fc-hero-anim-coin,
    .fc-hero-anim-label,
    .fc-hero-anim-title,
    .fc-hero-anim-sub,
    .fc-hero-anim-actions,
    .fc-hero__coin-wrap,
    .fc-scroll-mouse {
        animation: none !important;
        opacity: 1 !important;
        transform: translateX(-50%) !important;
        clip-path: none !important;
    }

    .fc-streak-row__bar {
        transition: none !important;
    }

    .fc-card:hover,
    .fc-earn-item:hover,
    .fc-prize-card:hover {
        transform: none !important;
    }
}
