/* Critical Above-the-Fold CSS - Inline in <head> for instant render */
/* This contains only the essential styles for navigation + hero section */

/* Font faces - Critical */
@font-face {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_KU7NShXUEKi4Rw.woff2) format('woff2')
}

@font-face {
    font-family: Lato;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHjx4wXiWtFCc.woff2) format('woff2')
}

/* Critical Variables */
:root {
    --color-primary: #00aeff;
    --color-accent: #00aeff;
    --color-accent-gold: #f5a623;
    --color-brighter-bg: #1a1a1a;
    --background-dark: #0F0F10;
    --text-light: #fff
}

/*
  ══ ATMOSPHERIC BANNER BACKGROUND ══
  Lives entirely on the html element using background-attachment: fixed.
  This bypasses all CSS containing-block rules (transform, overflow, etc.)
  that would break position:fixed on pseudo-elements inside Tebex's body.
  background-attachment: fixed positions everything relative to the viewport
  directly — immune to any body-level CSS Tebex might inject.

  Layer order (first = topmost):
    1. Left edge fade    — #0F0F10 → transparent, bleeds 14% inward
    2. Right edge fade   — mirror of left
    3. Bottom fade       — image fully gone by ~55% viewport height
    4. Opacity reducer   — 45% opaque dark layer → image renders at ~55%
    5. Cyan glow         — decorative blue atmosphere at top
    6. Banner image      — the PNG, 70% wide, pinned to top-centre
*/
html {
    background-color: #0F0F10;
}

/* Body — transparent so html background shows through */
body {
    font-family: 'Space Grotesk', Lato, sans-serif;
    background-color: transparent;
    color: #fff;
    margin: 0;
    padding: 0
}

/* Site Navigation - Critical */
.site-navigation {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.nav-logo-container {
    display: flex;
    align-items: center
}

.nav-logo {
    max-height: 40px;
    width: auto
}

.navigation-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px
}

.navigation-list>li>a {
    display: flex;
    align-items: center;
    color: rgba(229, 231, 235, .9);
    text-decoration: none;
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Plus Jakarta Sans', Inter, sans-serif;
    transition: color .2s ease
}

.navigation-list>li>a:hover {
    color: #fff
}

/* Hero Section - Critical */
.hero-section {
    position: relative;
    padding: 80px 20px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center
}

.hero-headline {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 24px;
    color: #FFF
}

.hero-subcopy {
    font-size: 18px;
    line-height: 1.6;
    color: #A7B0B8;
    margin: 0 0 32px
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    height: 56px;
    padding: 0 32px;
    background: #FFF;
    color: #0F0F10;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border-radius: 16px;
    transition: all .2s ease
}

.hero-logo {
    max-width: 100%;
    height: auto;
    display: block
}

/* Loading Overlay - Critical */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0F0F10;
    z-index: 10005; /* above nav (10000) so loader covers everything on entry */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity .3s ease, visibility .3s ease
}

.loading-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none
}

.loader {
    display: flex;
    gap: 8px
}

.loader .bar {
    width: 4px;
    height: 40px;
    background: #fff;
    animation: load 1s infinite ease-in-out
}

.loader .bar:nth-child(2) {
    animation-delay: .1s
}

.loader .bar:nth-child(3) {
    animation-delay: .2s
}

@keyframes load {

    0%,
    100% {
        transform: scaleY(.5)
    }

    50% {
        transform: scaleY(1)
    }
}

/* Product Cards - Critical to prevent FOUC */
article.product {
    position: relative;
    background: var(--color-brighter-bg);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column
}

article.product .product-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3
}

article.product .custom-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px
}

article.product .custom-price .current-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff
}

article.product .custom-price .original-price {
    font-size: .9rem;
    color: #e53935;
    text-decoration: line-through;
    font-weight: 500
}

.store-products-images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px
}

/* Mobile Critical */
@media(max-width:768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center
    }

    .navigation-list {
        gap: 12px;
        font-size: 13px
    }

    .store-products-images {
        grid-template-columns: 1fr;
        gap: 20px
    }
}



/*
========================================
DESKTOP HEADER FIX
Hide mobile header when horizontal nav is active
========================================
*/
@media (min-width: 960px) {
    .is-navigation-horizontal .site-header-inner {
        display: none !important;
    }
}

/*
========================================
FEATURES STRIP
Four dark cards below the hero
========================================
*/
.features-section {
    padding: 60px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.features-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

@media (max-width: 900px) {
    .features-container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
    .features-container { grid-template-columns: 1fr; }
}

.feature-card {
    background: #171718;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(0, 174, 255, 0.2);
    transform: translateY(-3px);
}

.feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.feature-icon i {
    color: rgba(255, 255, 255, 0.55);
    font-size: 20px;
    transition: color 0.3s ease, filter 0.3s ease;
}

.feature-content { flex: 1; }

.feature-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    font-family: 'Space Grotesk', sans-serif;
}

.feature-description {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.42);
    line-height: 1.6;
}

/*
========================================
FEATURED SCRIPTS SECTION
Package grid with section header + CTA
========================================
*/
.featured-scripts-section {
    padding: 80px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.featured-scripts-container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    font-family: 'Space Grotesk', sans-serif;
}

.section-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.42);
}

.featured-scripts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 900px) {
    .featured-scripts-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
    .featured-scripts-grid { grid-template-columns: 1fr; }
}

.featured-scripts-cta {
    text-align: center;
    margin-top: 40px;
}

.featured-scripts-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    text-decoration: none;
    transition: color 0.2s ease;
}

.featured-scripts-cta a:hover { color: #fff; }

/*
========================================
COMMUNITY IMPACT SECTION
Discord stats + support panel
========================================
*/
.community-impact-section {
    padding: 80px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.community-impact-container {
    max-width: 1280px;
    margin: 0 auto;
}

/* Header block */
.impact-header {
    text-align: center;
    margin-bottom: 56px;
}

.impact-header-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(0, 174, 255, 0.85);
    margin-bottom: 16px;
}

.impact-header-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00aeff;
    box-shadow: 0 0 8px rgba(0, 174, 255, 0.7);
    flex-shrink: 0;
    animation: pulse-dot 2.2s infinite ease-in-out;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 5px rgba(0, 174, 255, 0.6); }
    50%       { opacity: 0.5; box-shadow: 0 0 12px rgba(0, 174, 255, 1); }
}

.impact-header-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 14px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.impact-title-accent { color: #00aeff; }

.impact-header-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.42);
}

/* Two-column panel */
.impact-panel {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    background: #141415;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .impact-panel { grid-template-columns: 1fr; }
    .impact-divider { width: 100%; height: 1px; }
}

.impact-stats-side,
.impact-support-side {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

@media (max-width: 900px) {
    .impact-stats-side,
    .impact-support-side { padding: 32px 24px; }
}

/* Stats side */
.stats-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 32px;
}

.stats-header-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #00aeff;
    flex-shrink: 0;
    animation: pulse-dot 2.2s infinite ease-in-out;
}

.stats-numbers {
    display: flex;
    gap: 48px;
}

.impact-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.impact-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #00aeff !important;
    line-height: 1;
    letter-spacing: -0.02em;
}

.impact-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.38);
}

/* Vertical divider */
.impact-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.07);
    align-self: stretch;
}

/* Support side — green "ONLINE" pill */
.support-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #4ade80;
    background: rgba(34, 197, 94, 0.15) !important;
    border: 1px solid rgba(34, 197, 94, 0.35) !important;
    border-radius: 999px !important;
    padding: 5px 14px !important;
    margin-bottom: 18px;
    position: relative;
}

.support-label-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    flex-shrink: 0;
    box-shadow: 0 0 6px rgba(74, 222, 128, 0.8);
    animation: pulse-dot-green 2.2s infinite ease-in-out;
}

@keyframes pulse-dot-green {
    0%, 100% { opacity: 1; box-shadow: 0 0 4px rgba(74, 222, 128, 0.7); }
    50%       { opacity: 0.6; box-shadow: 0 0 10px rgba(74, 222, 128, 1); }
}

.support-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    font-family: 'Space Grotesk', sans-serif;
}

.support-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.42);
    line-height: 1.65;
    margin-bottom: 28px;
    max-width: 300px;
}

.impact-support-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: #ffffff;
    color: #0F0F10;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.impact-support-btn i {
    font-size: 14px;
}

.impact-support-btn:hover {
    background: #e8e8e8;
    color: #0F0F10;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

/*
========================================
HERO BACKGROUND ANIMATIONS
Grid + gradient atmosphere
========================================
*/
.hero-bg-animation {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 60% 40%, rgba(0, 174, 255, 0.06) 0%, transparent 65%),
        radial-gradient(ellipse 50% 40% at 80% 80%, rgba(0, 174, 255, 0.03) 0%, transparent 60%);
}

.hero-bg-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.10) 1px, transparent 1px);
    background-size: 26px 26px;
    /* Fade out at left edge and bottom edge */
    mask-image:
        linear-gradient(to right, transparent 0%, black 32%),
        linear-gradient(to top,   transparent 0%, black 26%);
    mask-composite: intersect;
    -webkit-mask-image:
        linear-gradient(to right, transparent 0%, black 32%),
        linear-gradient(to top,   transparent 0%, black 26%);
    -webkit-mask-composite: destination-in;
}

.hero-content,
.hero-visual {
    position: relative;
    z-index: 1;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(0, 174, 255, 0.08) 0%, transparent 65%);
    pointer-events: none;
}

/*
========================================
FEATURED PACKAGES & STATS REDESIGN
Premium, Dark Gaming Aesthetic
========================================
*/

/* --- 1. Featured Cards Redesign --- */

/* Wrapper to try and grid siblings if modules are adjacent */
.widget-featured+.widget-featured {
    /* Placeholder for future grid logic */
    margin-top: 20px;
}

/* New Featured Card Component */
.nl-featured-card {
    background: linear-gradient(145deg, #1A1A1A 0%, #0F0F0F 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.nl-featured-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Image Area */
.nl-card-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    /* Standardize aspect ratio */
    overflow: hidden;
    background: #000;
}

.nl-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.nl-featured-card:hover .nl-card-image {
    transform: scale(1.1);
}

/* Overlay & View Button */
.nl-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
}

.nl-featured-card:hover .nl-card-overlay {
    opacity: 1;
}

.nl-view-btn {
    padding: 10px 24px;
    background: #fff;
    color: #000;
    font-weight: 700;
    font-size: 14px;
    border-radius: 30px;
    transform: translateY(10px);
    transition: transform 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nl-featured-card:hover .nl-view-btn {
    transform: translateY(0);
}

/* Discount Badge */
.nl-discount-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #e53935;
    color: #fff;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

/* Content Area */
.nl-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 12px;
}

.nl-card-title {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.4;
    font-weight: 700;
}

.nl-card-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nl-card-title a:hover {
    color: #a0a0a0;
}

.nl-card-meta {
    display: flex;
    gap: 8px;
    font-size: 0.85rem;
    color: #666;
}

.nl-category-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 4px;
    color: #bbb;
}

.nl-card-footer {
    perspective: 1000px;
    margin-top: auto;
    /* Push to bottom */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Price */
.nl-price-container {
    display: flex;
    flex-direction: column;
}

.nl-price-original {
    font-size: 0.85rem;
    color: #666;
    text-decoration: line-through;
}

.nl-price-current {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
}

/* CTA Button */
.nl-card-cta {
    background: #fff;
    color: #000;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.nl-card-cta:hover {
    background: #e0e0e0;
    transform: translateX(2px);
}

/* --- 2. Community Impact / Stats Section --- */

.nl-stats-section {
    position: relative;
    background: #0a0a0a;
    /* Fallback */
    background: radial-gradient(circle at center, #141414 0%, #050505 100%);
    padding: 80px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    z-index: 1;
}

/* Inner container for max width */
.nl-stats-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Grid for stats items */
.nl-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.nl-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
}

/* Divider lines between items (desktop only) */
@media (min-width: 768px) {
    .nl-stat-item:not(:last-child)::after {
        content: '';
        position: absolute;
        right: -20px;
        top: 20%;
        height: 60%;
        width: 1px;
        background: rgba(255, 255, 255, 0.1);
    }
}

.nl-stat-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    /* Or custom bold font */
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    background: linear-gradient(180deg, #FFFFFF 0%, #888888 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nl-stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    font-weight: 600;
}

.nl-stat-icon {
    font-size: 24px;
    color: #444;
    margin-bottom: 8px;
}

/* Glowing accent at bottom */
.nl-stats-glow {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .nl-featured-card {
        margin-bottom: 20px;
    }

    .nl-stats-grid {
        gap: 60px;
    }

    .nl-stat-number {
        font-size: 3rem;
    }

    .nl-stat-item:not(:last-child)::after {
        display: none;
    }
}

/*
========================================
SITE FOOTER
Three-column dark footer layout
========================================
*/
.site-footer {
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 64px 20px 40px;
    margin-top: 0;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
}

@media (max-width: 900px) {
    .footer-container { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
    .footer-container { grid-template-columns: 1fr; }
}

/* Brand column */
.brand-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.brand-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.brand-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
}

.brand-tagline {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.38);
    line-height: 1.65;
    margin-bottom: 20px;
    max-width: 300px;
}

.brand-disclaimer {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.brand-disclaimer p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.22);
    line-height: 1.6;
}

/* Link columns */
.footer-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.18s ease;
}

.footer-link:hover {
    color: rgba(255, 255, 255, 0.88);
}

/* Social icons */
.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
    text-decoration: none;
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.social-link:hover {
    background: rgba(88, 101, 242, 0.15);
    border-color: rgba(88, 101, 242, 0.4);
    color: #7289da;
}

/*
========================================
ANGLED PARALLELOGRAM PILL TAGS
Capital Roleplay brand label style
::before carries the visual box so text stays straight
========================================
*/

/* Shared reset for parallelogram pill labels */
.impact-header-label,
.stats-header {
    position: relative;
    padding: 4px 14px 4px 10px;
    /* visual box lives on ::before — clear element bg/border */
    background: transparent !important;
    border: none !important;
}

/* Shared ::before parallelogram box */
.impact-header-label::before,
.stats-header::before {
    content: '';
    position: absolute;
    inset: 0;
    transform: skewX(-9deg);
    border-radius: 3px;
    pointer-events: none;
}

/* Community header label — blue tint */
.impact-header-label::before {
    background: rgba(0, 174, 255, 0.06);
    border: 1px solid rgba(0, 174, 255, 0.25);
}

/* Stats header label — subtle white */
.stats-header::before {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

/* Support label is a green pill — no parallelogram */
.support-label::before {
    content: none;
}