/* ============================================
   VALOR.SU - Concept Design CSS
   Dark theme with green accent - exact match to mockup
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --bg-dark: #0d0f13;
    --bg-card: #0f1318;
    --bg-card-hover: #161c24;
    --bg-nav: rgba(13, 15, 19, 0.85);
    --accent: #10b981;
    --accent-hover: #34d399;
    --accent-dark: #059669;
    --text-white: #ffffff;
    --text-light: #e2e8f0;
    --text-muted: #94a3b8;
    --text-dim: #64748b;
    --border-color: rgba(255, 255, 255, 0.06);
    --border-accent: rgba(var(--accent-rgb), 0.3);
    --glow-green: 0 0 20px rgba(var(--accent-rgb), 0.15);
    --gradient-green: linear-gradient(135deg, var(--accent), var(--accent-dark));
    --gradient-dark: linear-gradient(180deg, #0d0f13 0%, #111827 100%);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   HERO SECTION - Full viewport with Lich King
   ============================================ */
.hero-concept {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-concept__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-concept__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-concept__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(13, 15, 19, 0.92) 0%,
        rgba(13, 15, 19, 0.7) 40%,
        rgba(13, 15, 19, 0.4) 60%,
        rgba(13, 15, 19, 0.75) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.hero-concept__overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--bg-dark), transparent);
}

/* Navigation inside hero */
.hero-concept__nav {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    background: var(--bg-nav);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.hero-concept__logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-concept__logo img {
    height: 36px;
    width: auto;
}

.hero-concept__logo span {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: 2px;
}

.hero-concept__menu {
    display: flex;
    gap: 32px;
}

.hero-concept__menu a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.3s;
    position: relative;
}

.hero-concept__menu a:hover,
.hero-concept__menu a.active {
    color: var(--accent);
}

.hero-concept__menu a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
}

.hero-concept__auth {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-login {
    color: var(--text-white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 8px 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    transition: all 0.3s;
}

.btn-login:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-register {
    color: var(--text-white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 8px 20px;
    background: var(--gradient-green);
    border-radius: var(--radius-sm);
    transition: all 0.3s;
}

.btn-register:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Hero Content */
.hero-concept__content {
    position: relative;
    z-index: 5;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 60px 100px;
    gap: 40px;
}

.hero-concept__left {
    max-width: 600px;
}

.hero-concept__title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-white);
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.hero-concept__valor {
    color: var(--accent);
    font-size: 72px;
    display: block;
    text-shadow: 0 0 40px rgba(var(--accent-rgb), 0.3);
}

.hero-concept__subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
    font-weight: 400;
}

.hero-concept__buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.btn-play {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--gradient-green);
    color: var(--text-white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(var(--accent-rgb), 0.3);
}

.btn-play:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(var(--accent-rgb), 0.4);
}

.btn-learn {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    background: transparent;
    color: var(--text-white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    transition: all 0.3s;
}

.btn-learn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.hero-concept__online {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: var(--text-light);
}

.online-dot {
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse-online 2s infinite;
}

.online-count {
    color: var(--accent);
    font-weight: 700;
    font-size: 20px;
}

@keyframes pulse-online {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(var(--accent-rgb), 0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(var(--accent-rgb), 0); }
}

/* Stats sidebar */
.hero-concept__right {
    min-width: 280px;
}

.stat-card {
    background: rgba(20, 24, 32, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.stat-card__header {
    padding: 16px 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-color);
}

.stat-card__grid {
    display: flex;
    flex-direction: column;
}

.stat-card__item {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    transition: background 0.3s;
}

.stat-card__item:last-child {
    border-bottom: none;
}

.stat-card__item:hover {
    background: rgba(var(--accent-rgb), 0.05);
}

.stat-card__label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-dim);
    margin-bottom: 4px;
}

.stat-card__value {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-white);
}

.stat-card__value .accent,
.stat-card__value span:not(.stat-card__label) {
    color: var(--accent);
}

/* ============================================
   NEWS SECTION - Carousel
   ============================================ */
.news-concept {
    padding: 80px 0;
    background: var(--bg-dark);
}

.news-concept__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.news-concept__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.news-concept__title {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-white);
}

.news-concept__arrows {
    display: flex;
    gap: 8px;
}

.news-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.news-arrow:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(var(--accent-rgb), 0.1);
}

.news-concept__slider {
    overflow: hidden;
    border-radius: var(--radius-md);
}

.news-concept__track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.news-concept__card {
    min-width: calc(33.333% - 14px);
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    flex-shrink: 0;
}

.news-concept__card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
    box-shadow: var(--glow-green);
}

.news-concept__card-img {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.news-concept__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.news-concept__card:hover .news-concept__card-img img {
    transform: scale(1.05);
}

.news-concept__card-tag {
    position: absolute;
    bottom: 12px;
    left: 12px;
    padding: 4px 10px;
    background: rgba(var(--accent-rgb), 0.9);
    color: white;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 4px;
    text-transform: uppercase;
}

.news-concept__card-body {
    padding: 16px;
}

.news-concept__card-body h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-concept__card-body p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-concept__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.news-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-dim);
    cursor: pointer;
    transition: all 0.3s;
}

.news-dot.active {
    background: var(--accent);
    width: 24px;
    border-radius: 4px;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-concept {
    padding: 60px 0 80px;
    background: var(--bg-dark);
}

.features-concept__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.features-concept__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.features-concept__card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    text-align: left;
    transition: all 0.3s;
}

.features-concept__card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
    box-shadow: var(--glow-green);
}

.features-concept__icon {
    width: 48px;
    height: 48px;
    background: rgba(var(--accent-rgb), 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.features-concept__icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(62%) sepia(52%) saturate(522%) hue-rotate(112deg) brightness(96%) contrast(91%);
}

.features-concept__card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
}

.features-concept__card-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ============================================
   COMMUNITY SCREENSHOTS
   ============================================ */
.community-concept {
    padding: 60px 0;
    background: var(--bg-dark);
}

.community-concept__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.community-concept__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.community-concept__title {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-white);
}

.community-concept__arrows {
    display: flex;
    gap: 8px;
}

.comm-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.comm-arrow:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.community-concept__slider {
    overflow: hidden;
    border-radius: var(--radius-md);
}

.community-concept__track {
    display: flex;
    gap: 16px;
    transition: transform 0.5s ease;
}

.community-concept__card {
    min-width: calc(25% - 12px);
    flex-shrink: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    height: 160px;
    cursor: pointer;
}

.community-concept__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.community-concept__card:hover img {
    transform: scale(1.1);
}

.community-concept__card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.community-concept__card:hover .community-concept__card-overlay {
    opacity: 1;
}

.community-concept__card-overlay span {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-white);
}

/* ============================================
   RACES SECTION
   ============================================ */
.races-concept {
    padding: 60px 0;
    background: var(--bg-dark);
}

.races-concept__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.races-concept__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.races-concept__title {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-white);
}

.races-concept__subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 4px;
}

.races-concept__arrows {
    display: flex;
    gap: 8px;
}

.race-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.race-arrow:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(var(--accent-rgb), 0.1);
}

.races-concept__slider {
    overflow: hidden;
}

.races-concept__track {
    display: flex;
    gap: 16px;
    transition: transform 0.5s ease;
}

.races-concept__card {
    min-width: calc(16.666% - 14px);
    flex-shrink: 0;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s;
}

.races-concept__card:hover {
    transform: translateY(-8px);
}

.races-concept__card-img {
    width: 100%;
    height: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: border-color 0.3s;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
}

.races-concept__card:hover .races-concept__card-img {
    border-color: var(--accent);
    box-shadow: var(--glow-green);
}

.races-concept__card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
    transition: transform 0.5s;
}

.races-concept__card:hover .races-concept__card-img img {
    transform: scale(1.1);
}

.races-concept__card-name {
    margin-top: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
}

/* ============================================
   DISCORD WIDGET
   ============================================ */
.discord-concept {
    padding: 60px 0;
    background: var(--bg-dark);
}

.discord-concept__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.discord-concept__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.discord-concept__title {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-white);
}

.discord-concept__join {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #5865F2;
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all 0.3s;
}

.discord-concept__join:hover {
    background: #4752C4;
    transform: translateY(-2px);
}

.discord-concept__widget {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.discord-concept__widget iframe {
    display: block;
}

/* ============================================
   ROADMAP SECTION
   ============================================ */
.roadmap-concept {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(var(--accent-rgb), 0.02) 50%, var(--bg-dark) 100%);
}

.roadmap-concept__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.roadmap-concept__title {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-white);
    margin-bottom: 8px;
}

.roadmap-concept__subtitle {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 50px;
}

.roadmap-concept__timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    text-align: left;
}

.roadmap-concept__timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), var(--border-color));
}

.roadmap-concept__phase {
    position: relative;
    padding-left: 60px;
    padding-bottom: 40px;
}

.roadmap-concept__dot {
    position: absolute;
    left: 12px;
    top: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 3px solid var(--accent);
    background: var(--bg-dark);
    z-index: 2;
}

.roadmap-concept__phase.completed .roadmap-concept__dot {
    background: var(--accent);
}

.roadmap-concept__phase.active .roadmap-concept__dot {
    background: var(--accent);
    box-shadow: 0 0 0 6px rgba(var(--accent-rgb), 0.2);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 6px rgba(var(--accent-rgb), 0.2); }
    50% { box-shadow: 0 0 0 12px rgba(var(--accent-rgb), 0); }
}

.roadmap-concept__phase.upcoming .roadmap-concept__dot,
.roadmap-concept__phase.planned .roadmap-concept__dot {
    background: var(--bg-dark);
    border-color: var(--text-dim);
}

.roadmap-concept__card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
}

.roadmap-concept__phase.active .roadmap-concept__card {
    border-color: var(--border-accent);
    box-shadow: var(--glow-green);
}

.roadmap-concept__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 8px;
}

.roadmap-concept__phase-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 4px;
}

.roadmap-concept__period {
    font-size: 13px;
    color: var(--text-dim);
    margin-bottom: 16px;
}

.roadmap-concept__card ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.roadmap-concept__card ul li {
    font-size: 13px;
    color: var(--text-muted);
    padding-left: 28px;
    position: relative;
    line-height: 1.6;
}

.roadmap-concept__card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1.5px solid var(--text-dim);
    background: rgba(255,255,255,0.02);
    transition: all 0.3s;
}

/* ✅ Done — green checkmark */
.roadmap-concept__card ul li.done {
    color: #c0c8d4;
}
.roadmap-concept__card ul li.done::before {
    background: rgba(var(--accent-rgb), 0.2);
    border-color: var(--accent);
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(var(--accent-rgb), 0.3);
}
.roadmap-concept__card ul li.done::after {
    content: '✔';
    position: absolute;
    left: 0;
    top: 3px;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    line-height: 16px;
    text-align: center;
    color: var(--accent);
    font-weight: 900;
    text-shadow: 0 0 6px rgba(var(--accent-rgb), 0.8);
}

/* 🔨 WIP — amber gear */
.roadmap-concept__card ul li.wip {
    color: #e0d0a0;
}
.roadmap-concept__card ul li.wip::before {
    border-color: #fac832;
    background: rgba(250, 200, 50, 0.15);
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(250, 200, 50, 0.25);
    animation: wipPulse 2s ease-in-out infinite;
}
.roadmap-concept__card ul li.wip::after {
    content: '⚙';
    position: absolute;
    left: 0;
    top: 3px;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    color: #fac832;
    text-shadow: 0 0 6px rgba(250, 200, 50, 0.8);
}
@keyframes wipPulse {
    0%, 100% { box-shadow: 0 0 10px rgba(250, 200, 50, 0.25); }
    50% { box-shadow: 0 0 18px rgba(250, 200, 50, 0.45); }
}

/* 🔮 Pending — dim circle */
.roadmap-concept__card ul li.pending::before {
    border-color: rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.03);
    border-radius: 4px;
}
.roadmap-concept__card ul li.pending::after {
    content: '—';
    position: absolute;
    left: 0;
    top: 3px;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    line-height: 16px;
    text-align: center;
    color: rgba(255,255,255,0.25);
}

.roadmap-concept__legend {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 30px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

.legend-dot {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1.5px solid var(--text-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    background: rgba(255,255,255,0.02);
}

.legend-dot.done {
    background: rgba(var(--accent-rgb), 0.2);
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(var(--accent-rgb), 0.3);
}
.legend-dot.done::after {
    content: '✔';
    color: var(--accent);
    font-size: 10px;
    font-weight: 900;
    text-shadow: 0 0 6px rgba(var(--accent-rgb), 0.8);
}

.legend-dot.wip {
    border-color: #fac832;
    background: rgba(250, 200, 50, 0.15);
    box-shadow: 0 0 10px rgba(250, 200, 50, 0.25);
}
.legend-dot.wip::after {
    content: '⚙';
    color: #fac832;
    font-size: 12px;
    text-shadow: 0 0 6px rgba(250, 200, 50, 0.8);
}

.legend-dot.pending {
    border-color: rgba(255,255,255,0.15);
}
.legend-dot.pending::after {
    content: '—';
    color: rgba(255,255,255,0.25);
    font-size: 10px;
}

/* ============================================
   FOOTER - Keep existing footer styles
   ============================================ */
.footer {
    background: #0a0c10;
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer__brand-name {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 12px;
}

.footer__brand-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s;
    text-decoration: none;
}

.footer__social a:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(var(--accent-rgb), 0.1);
}

.footer__col-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-white);
    margin-bottom: 16px;
}

.footer__col ul {
    list-style: none;
}

.footer__col ul li {
    margin-bottom: 10px;
}

.footer__col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer__col ul li a:hover {
    color: var(--accent);
}

.footer__divider {
    height: 1px;
    background: var(--border-color);
    margin-bottom: 24px;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__copyright {
    font-size: 13px;
    color: var(--text-dim);
}

.footer__links {
    display: flex;
    gap: 24px;
}

.footer__links a {
    font-size: 13px;
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.3s;
}

.footer__links a:hover {
    color: var(--accent);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-concept__content {
        flex-direction: column;
        padding: 40px 30px 60px;
    }

    .hero-concept__right {
        min-width: 100%;
    }

    .stat-card__grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-card__item {
        border-right: 1px solid var(--border-color);
    }

    .stat-card__item:nth-child(2n) {
        border-right: none;
    }

    .features-concept__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .roadmap-concept__card ul {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .hero-concept__nav {
        padding: 12px 16px;
    }

    .hero-concept__menu {
        display: none;
    }

    .hero-concept__title {
        font-size: 32px;
    }

    .hero-concept__valor {
        font-size: 48px;
    }

    .hero-concept__content {
        padding: 30px 16px 40px;
    }

    .news-concept__card {
        min-width: calc(100% - 0px);
    }

    .features-concept__grid {
        grid-template-columns: 1fr;
    }

    .community-concept__card {
        min-width: calc(50% - 8px);
    }

    .races-concept__card {
        min-width: calc(33.333% - 11px);
    }

    .news-concept__container,
    .features-concept__container,
    .community-concept__container,
    .races-concept__container,
    .discord-concept__container,
    .roadmap-concept__container,
    .footer__container {
        padding: 0 16px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-concept__title {
    animation: fadeInUp 0.8s ease-out;
}

.hero-concept__subtitle {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-concept__buttons {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-concept__online {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.stat-card {
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

/* Glow border effect on hero */
.hero-concept::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    z-index: 20;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-card);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-dim);
}

/* ============================================
   PAGE STYLES (for other pages - keep existing)
   ============================================ */
.page-header {
    padding: 120px 0 40px;
    text-align: center;
    background: linear-gradient(180deg, rgba(var(--accent-rgb), 0.05) 0%, transparent 100%);
}

.page-header__title {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.page-header__title span {
    display: inline;
}

.page-header__title span::before {
    content: ' ';
}

.page-header__title {
    word-spacing: 0.2em;
}

.page-header__desc {
    font-size: 15px;
    color: var(--text-muted);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Section styles for other pages */
.section {
    padding: 60px 0;
}

.section__header {
    text-align: center;
    margin-bottom: 40px;
}

.section__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(var(--accent-rgb), 0.1);
    border: 1px solid var(--border-accent);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 16px;
}

.section__title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 8px;
}

.section__desc {
    font-size: 15px;
    color: var(--text-muted);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-green);
    color: white;
    box-shadow: 0 4px 15px rgba(var(--accent-rgb), 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(var(--accent-rgb), 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-ghost {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--border-accent);
}

.btn-ghost:hover {
    background: rgba(var(--accent-rgb), 0.1);
}

/* News grid for /news page */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.news-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
}

.news-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
    box-shadow: var(--glow-green);
}

.news-card__image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.news-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card__tag {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    background: rgba(var(--accent-rgb), 0.9);
    color: white;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 4px;
}

.news-card__body {
    padding: 16px;
}

.news-card__date {
    font-size: 12px;
    color: var(--text-dim);
    margin-bottom: 8px;
}

.news-card__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
}

.news-card__excerpt {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 12px;
}

.news-card__link {
    font-size: 13px;
    color: var(--accent);
    font-weight: 600;
}

/* Feature card for other pages */
.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    gap: 16px;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-2px);
}

.feature-card__icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(var(--accent-rgb), 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card__icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.feature-card__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 4px;
}

.feature-card__desc {
    font-size: 13px;
    color: var(--text-muted);
}

/* Race card */
.race-card {
    text-align: center;
}

.race-card__img {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid var(--border-color);
    margin-bottom: 8px;
}

.race-card__img img {
    width: 100%;
    height: auto;
}

.race-card__name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
}

/* Animate in */
.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.pagination a, .pagination span {
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.pagination a {
    background: var(--bg-card);
    color: var(--text-muted);
    border: 1px solid var(--border-color);
}

.pagination a:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.pagination .active span {
    background: var(--accent);
    color: white;
}

/* Contact cards */
.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 32px;
    text-align: center;
    transition: all 0.3s;
}

.contact-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
}

/* Auth forms */
.auth-card {
    background: rgba(20, 24, 32, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 440px;
    margin: 0 auto;
}

.auth-card input {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-white);
    font-size: 14px;
    margin-bottom: 16px;
    outline: none;
    transition: border-color 0.3s;
}

.auth-card input:focus {
    border-color: var(--accent);
}

/* FAQ */
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 20px 16px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* Ladder */
.ladder-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.ladder-tab {
    padding: 8px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
}

.ladder-tab:hover,
.ladder-tab.active {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(var(--accent-rgb), 0.1);
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
}

table th {
    padding: 12px 16px;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-dim);
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-card);
}

table td {
    padding: 12px 16px;
    font-size: 14px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

table tr:hover td {
    background: rgba(var(--accent-rgb), 0.03);
}

/* Start page */
.start-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.start-step {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s;
}

.start-step:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
}

.start-step__number {
    width: 48px;
    height: 48px;
    background: var(--gradient-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: white;
    margin: 0 auto 16px;
}

/* Article show page */
.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
}

.article-content img {
    max-width: 100%;
    border-radius: var(--radius-md);
    margin: 20px 0;
}

.article-content h1 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 16px;
}

.article-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* Style old navbar for inner pages to match new design */
.navbar {
    background: var(--bg-nav) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid var(--border-color) !important;
    padding: 0 2rem !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
    height: 64px !important;
}

.navbar__inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: 100% !important;
    max-width: 1280px !important;
    margin: 0 auto !important;
}

.navbar__logo {
    display: flex !important;
    align-items: center !important;
    text-decoration: none !important;
}

.navbar__logo img {
    max-height: 36px !important;
}

.navbar__links {
    display: flex !important;
    justify-content: center !important;
    flex: 1 !important;
    align-items: center !important;
    gap: 0 !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.navbar__links > li {
    position: relative !important;
    list-style: none !important;
}

.navbar__links > li > a {
    color: var(--text-muted) !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.08em !important;
    transition: color 0.3s !important;
    text-decoration: none !important;
    padding: 20px 14px !important;
    display: block !important;
}

.navbar__links > li > a:hover,
.navbar__links > li > a.active {
    color: var(--accent) !important;
}

/* Dropdown menu */
.nav-dropdown__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 8px 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    z-index: 1001;
}

.nav-dropdown:hover .nav-dropdown__menu {
    display: block;
}

.nav-dropdown__menu a {
    display: flex !important;
    align-items: center !important;
    padding: 10px 16px !important;
    color: var(--text-light) !important;
    font-size: 0.85rem !important;
    text-transform: none !important;
    text-decoration: none !important;
    transition: background 0.2s, color 0.2s !important;
    letter-spacing: 0 !important;
}

.nav-dropdown__menu a:hover {
    background: rgba(var(--accent-rgb), 0.1) !important;
    color: var(--accent) !important;
}

.navbar__actions {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.navbar__actions .btn {
    font-family: 'Inter', sans-serif !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    padding: 8px 20px !important;
    border-radius: var(--radius-sm) !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    transition: all 0.3s !important;
    cursor: pointer !important;
    display: inline-block !important;
}

.navbar__actions .btn-ghost {
    color: var(--text-light) !important;
    background: transparent !important;
    border: 1px solid var(--border-color) !important;
}

.navbar__actions .btn-ghost:hover {
    border-color: var(--accent) !important;
    color: var(--accent) !important;
}

.navbar__actions .btn-primary {
    color: #fff !important;
    background: var(--gradient-green) !important;
    border: none !important;
}

.navbar__actions .btn-primary:hover {
    box-shadow: var(--glow-green) !important;
    transform: translateY(-1px) !important;
}

/* Burger menu */
.navbar__burger {
    display: none !important;
    flex-direction: column !important;
    gap: 5px !important;
    cursor: pointer !important;
    padding: 5px !important;
}

.navbar__burger span {
    width: 24px !important;
    height: 2px !important;
    background: var(--text-light) !important;
    transition: all 0.3s !important;
}

@media (max-width: 1024px) {
    .navbar__links {
        display: none !important;
    }
    .navbar__actions {
        display: none !important;
    }
    .navbar__burger {
        display: flex !important;
    }
}

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed !important;
    top: 64px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: var(--bg-dark) !important;
    border-top: 1px solid var(--border-color) !important;
    padding: 20px !important;
    z-index: 999 !important;
    overflow-y: auto !important;
    flex-direction: column !important;
    gap: 4px !important;
}

.mobile-menu.active {
    display: flex !important;
}

.mobile-menu a {
    color: var(--text-light) !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    padding: 12px 16px !important;
    border-radius: var(--radius-sm) !important;
    transition: background 0.2s !important;
    display: block !important;
}

.mobile-menu a:hover {
    background: rgba(var(--accent-rgb), 0.1) !important;
    color: var(--accent) !important;
}

/* ============================================
   HOMEPAGE OVERRIDES — must be last in file
   ============================================ */
/* Desktop only: hide modern navbar on homepage */
@media (min-width: 1025px) {
    body.home-page .navbar {
        display: none !important;
    }
    body.home-page .mobile-menu {
        display: none !important;
    }
}

/* Mobile/Tablet: show modern navbar on homepage */
@media (max-width: 1024px) {
    body.home-page .navbar {
        display: block !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 1100 !important;
        background: rgba(8,12,18,0.95) !important;
        backdrop-filter: blur(20px) !important;
    }
    body.home-page .navbar .navbar__actions {
        display: flex !important;
    }
    body.home-page .navbar .navbar__actions .btn {
        font-size: 12px !important;
        padding: 6px 12px !important;
    }
    body.home-page .header-top {
        display: none !important;
    }
    body.home-page .mobile-menu.active {
        display: flex !important;
    }
    body.home-page .header {
        padding-top: 64px !important;
    }
}

/* ============================================================
   Hero Video Background
   ============================================================ */
.hero-concept__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: 0;
}

.hero-concept__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Fallback img hidden when video plays */
.hero-concept__video ~ img {
    display: none;
}

/* ===== HERO REDESIGN: centered content + bottom stats + boss widget ===== */
.hero-concept__content--centered {
    justify-content: center !important;
    align-items: center !important;
    text-align: center;
    padding-bottom: 20px !important;
}
.hero-concept__center {
    max-width: 700px;
    text-align: center;
}
.hero-concept__center .hero-concept__buttons {
    justify-content: center;
}
.hero-concept__center .hero-concept__online {
    justify-content: center;
}

/* Bottom row: stats + boss */
.hero-bottom-row {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: stretch;
    gap: 0;
    padding: 0 40px 40px;
}

/* Stats block - horizontal bar */
.hero-stats-block {
    flex: 1;
    background: rgba(10, 14, 20, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(var(--accent-rgb), 0.2);
    border-radius: 12px 0 0 12px;
    overflow: hidden;
}
.hero-stats-block__header {
    padding: 10px 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.4);
    border-bottom: 1px solid rgba(var(--accent-rgb), 0.15);
}
.hero-stats-block__items {
    display: flex;
    align-items: center;
    height: calc(100% - 37px);
}
.hero-stats-block__item {
    flex: 1;
    padding: 16px 20px;
    text-align: center;
}
.hero-stats-block__value {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 4px;
    text-shadow: 0 0 20px rgba(var(--accent-rgb), 0.4);
}
.hero-stats-block__label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.4);
}
.hero-stats-block__divider {
    width: 1px;
    height: 40px;
    background: rgba(var(--accent-rgb), 0.2);
    flex-shrink: 0;
}

/* Boss widget in hero */
.hero-boss-widget {
    width: 320px;
    flex-shrink: 0;
}
.hero-boss-widget .boss-dropdown {
    height: 100%;
    border-radius: 0 12px 12px 0;
    background: rgba(10, 14, 20, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(var(--accent-rgb), 0.2);
    border-left: 1px solid rgba(var(--accent-rgb), 0.1);
}
.hero-boss-widget .boss-dropdown__inner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    height: 100%;
}
.hero-boss-widget .boss-dropdown__image {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    position: relative;
}
.hero-boss-widget .boss-dropdown__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    filter: drop-shadow(0 0 10px rgba(var(--accent-rgb), 0.3));
}
.hero-boss-widget .boss-dropdown__name {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}
.hero-boss-widget .boss-dropdown__title {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}
.hero-boss-widget .boss-dropdown__location {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
}
.hero-boss-widget .boss-dropdown__divider {
    height: 1px;
    background: rgba(var(--accent-rgb), 0.2);
    margin-bottom: 8px;
}
.hero-boss-widget .boss-dropdown__status.alive .boss-dropdown__status-label {
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}
.hero-boss-widget .boss-dropdown__status.dead .boss-dropdown__status-label {
    color: #ef4444;
    font-size: 13px;
    font-weight: 700;
}
.hero-boss-widget .boss-dropdown__status-hint {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    margin-top: 2px;
}
.hero-boss-widget .boss-dropdown__timer {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
}
.hero-boss-widget .status-pulse {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    display: inline-block;
    animation: pulse-online 2s infinite;
}
.hero-boss-widget .boss-dropdown__image-glow.glow--alive {
    position: absolute;
    inset: -4px;
    border-radius: 10px;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.3) 0%, transparent 70%);
    animation: boss-glow-alive 2s ease-in-out infinite;
}
.hero-boss-widget .boss-dropdown__image-glow.glow--dead {
    position: absolute;
    inset: -4px;
    border-radius: 10px;
    background: radial-gradient(circle, rgba(239,68,68,0.2) 0%, transparent 70%);
}
@keyframes boss-glow-alive {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Community dropdown in hero nav */
.hero-community-dropdown {
    position: relative;
    display: inline-block;
}
.hero-community-trigger {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: color 0.3s;
}
.hero-community-trigger:hover {
    color: var(--accent);
}
.hero-community-menu {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 14, 20, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(var(--accent-rgb), 0.2);
    border-radius: 8px;
    padding: 8px 0;
    min-width: 160px;
    z-index: 100;
}
.hero-community-dropdown:hover .hero-community-menu {
    display: block;
}
.hero-community-menu a {
    display: block;
    padding: 10px 20px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
}
.hero-community-menu a:hover {
    color: var(--accent);
    background: rgba(var(--accent-rgb), 0.08);
}

/* Background texture for sections below hero */
.news-concept,
.races-concept,
.roadmap-concept,
.ladder-concept,
.discord-section {
    background-image: 
        radial-gradient(ellipse at 0% 50%, rgba(var(--accent-rgb), 0.04) 0%, transparent 60%),
        radial-gradient(ellipse at 100% 50%, rgba(var(--accent-rgb), 0.03) 0%, transparent 60%);
    position: relative;
}
.news-concept::before,
.races-concept::before,
.roadmap-concept::before,
.ladder-concept::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(var(--accent-rgb), 0.3), transparent);
    pointer-events: none;
}

/* Side decorations for sections below hero */
.news-concept::after,
.races-concept::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 3px;
    background: linear-gradient(180deg, transparent, rgba(var(--accent-rgb), 0.4), transparent);
    pointer-events: none;
}

/* ===== NAVBAR CENTER FIX ===== */
.hero-concept__nav {
    position: relative;
}
.hero-concept__menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
/* ===== END NAVBAR CENTER FIX ===== */

/* ===== BACKGROUND TEXTURE FOR SECTIONS BELOW HERO ===== */
body {
    background-color: #080c12;
    background-image:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(var(--accent-rgb), 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 0% 50%, rgba(var(--accent-rgb), 0.04) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 100% 50%, rgba(var(--accent-rgb), 0.04) 0%, transparent 50%);
}

/* Subtle grid pattern overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(var(--accent-rgb), 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--accent-rgb), 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

/* Sections below hero get a dark atmospheric background */
.news-concept,
.races-concept,
.community-concept,
.discord-concept,
.roadmap-concept,
.features-concept {
    position: relative;
    z-index: 1;
}

.news-concept::before,
.races-concept::before,
.roadmap-concept::before {
    content: '';
    position: absolute;
    left: -200px;
    right: -200px;
    top: 0;
    bottom: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(var(--accent-rgb), 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Left and right atmospheric glow columns */
.news-concept > *,
.races-concept > *,
.community-concept > *,
.discord-concept > *,
.roadmap-concept > * {
    position: relative;
    z-index: 1;
}

/* Decorative side glow effect */
.home-page .news-concept,
.home-page .races-concept,
.home-page .roadmap-concept {
    box-shadow: inset 200px 0 200px -100px rgba(var(--accent-rgb), 0.03),
                inset -200px 0 200px -100px rgba(var(--accent-rgb), 0.03);
}
/* ===== END BACKGROUND TEXTURE ===== */

/* ===== NAVBAR CENTER FIX v2 ===== */
.hero-concept__nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.hero-concept__menu {
    top: 50%;
    margin-top: -10px;
}
.hero-concept__auth {
    position: relative;
    z-index: 2;
    margin-left: auto;
}
/* ===== END NAVBAR CENTER FIX v2 ===== */

/* ===== NAVBAR CENTER FIX v3 ===== */
.hero-concept__nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.hero-concept__menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 50%;
    margin-top: -10px;
    z-index: 1;
}
.hero-concept__auth {
    position: relative;
    z-index: 2;
}
/* ===== END NAVBAR CENTER FIX v3 ===== */

/* ===== SECTIONS BACKGROUND TEXTURE ===== */

/* Dark texture pattern using CSS - subtle diagonal lines */
:root {
    --texture-pattern: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2310b981' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Apply subtle texture to all content sections below hero */
.news-concept {
    background: var(--bg-dark) var(--texture-pattern);
}

.features-concept {
    background: var(--bg-dark) var(--texture-pattern);
}

.community-concept {
    background: var(--bg-dark) var(--texture-pattern);
}

.races-concept {
    background: var(--bg-dark) var(--texture-pattern);
}

.roadmap-concept {
    background: var(--bg-dark) var(--texture-pattern);
}

/* Alternate sections with slightly different shade for visual rhythm */
.features-concept {
    background-color: #0d1117;
    background-image: var(--texture-pattern);
}

.community-concept {
    background-color: #0a0e14;
    background-image: var(--texture-pattern);
}

.races-concept {
    background-color: #0d1117;
    background-image: var(--texture-pattern);
}

/* Section dividers - subtle green glow line between sections */
.news-concept,
.features-concept,
.community-concept,
.races-concept,
.roadmap-concept {
    position: relative;
}

.news-concept::before,
.features-concept::before,
.community-concept::before,
.races-concept::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(var(--accent-rgb), 0.3) 30%, rgba(var(--accent-rgb), 0.5) 50%, rgba(var(--accent-rgb), 0.3) 70%, transparent 100%);
}

/* ===== END SECTIONS BACKGROUND TEXTURE ===== */

/* ============================================
   NEWS GRID 4x3 (replaces slider)
   ============================================ */
.news-concept__all-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
    letter-spacing: 1px;
    transition: opacity 0.2s;
}
.news-concept__all-link:hover {
    opacity: 0.7;
}

/* Override old news-grid to be 4 columns */
.news-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
}

.news-grid__card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}
.news-grid__card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
    box-shadow: var(--glow-green);
}
.news-grid__card-img {
    height: 160px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}
.news-grid__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.news-grid__card:hover .news-grid__card-img img {
    transform: scale(1.05);
}
.news-grid__card-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 3px 8px;
    background: rgba(var(--accent-rgb), 0.9);
    color: white;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 4px;
}
.news-grid__card-body {
    padding: 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.news-grid__card-body h3 {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 6px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-grid__card-body p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============================================
   RACES GRID (replaces slider, 26 races)
   ============================================ */
.races-concept__header-simple {
    margin-bottom: 30px;
}

.races-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 14px;
}

.races-grid__card {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s;
}
.races-grid__card:hover {
    transform: translateY(-6px);
}
.races-grid__card-img {
    width: 100%;
    aspect-ratio: 1 / 1.3;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: border-color 0.3s, box-shadow 0.3s;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
}
.races-grid__card--alliance .races-grid__card-img {
    border-color: rgba(59, 130, 246, 0.3);
}
.races-grid__card--horde .races-grid__card-img {
    border-color: rgba(239, 68, 68, 0.3);
}
.races-grid__card:hover .races-grid__card-img {
    box-shadow: 0 0 16px rgba(var(--accent-rgb), 0.4);
}
.races-grid__card--alliance:hover .races-grid__card-img {
    border-color: rgba(59, 130, 246, 0.8);
    box-shadow: 0 0 16px rgba(59, 130, 246, 0.35);
}
.races-grid__card--horde:hover .races-grid__card-img {
    border-color: rgba(239, 68, 68, 0.8);
    box-shadow: 0 0 16px rgba(239, 68, 68, 0.35);
}
.races-grid__card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
    transition: transform 0.4s;
}
.races-grid__card:hover .races-grid__card-img img {
    transform: scale(1.08);
}
.races-grid__card-name {
    margin-top: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
    line-height: 1.3;
}
.races-grid__card-faction {
    margin-top: 4px;
}
.faction-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 2px 6px;
    border-radius: 3px;
}
.faction-badge--alliance {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.3);
}
.faction-badge--horde {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Responsive */
@media (max-width: 1200px) {
    .races-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    .news-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}
@media (max-width: 900px) {
    .races-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    .news-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 600px) {
    .races-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    .news-grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}

/* ============================================
   FEATURED NEWS + SIDEBAR LAYOUT
   ============================================ */

/* Top row: featured (left) + sidebar (right) */
.news-top-row {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 20px;
    margin-bottom: 20px;
}

/* Featured card */
.news-featured {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}
.news-featured:hover {
    border-color: var(--border-accent);
    box-shadow: var(--glow-green);
    transform: translateY(-3px);
}
.news-featured__img {
    width: 100%;
    height: 300px;
    overflow: hidden;
    flex-shrink: 0;
}
.news-featured__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.news-featured:hover .news-featured__img img {
    transform: scale(1.04);
}
.news-featured__body {
    padding: 20px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.news-featured__meta {
    display: flex;
    align-items: center;
    gap: 12px;
}
.news-featured__tag {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(var(--accent-rgb), 0.15);
    color: var(--accent);
    border: 1px solid rgba(var(--accent-rgb), 0.35);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 4px;
}
.news-featured__date {
    font-size: 12px;
    color: var(--text-dim);
}
.news-featured__title {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.3;
    margin: 0;
}
.news-featured__excerpt {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-featured__read {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* Sidebar: 4 compact items */
.news-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.news-sidebar__item {
    display: flex;
    gap: 12px;
    padding: 14px 16px;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid var(--border-color);
    transition: background 0.2s;
    align-items: flex-start;
}
.news-sidebar__item:last-child {
    border-bottom: none;
}
.news-sidebar__item:hover {
    background: rgba(var(--accent-rgb), 0.05);
}
.news-sidebar__img {
    width: 80px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
}
.news-sidebar__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.news-sidebar__item:hover .news-sidebar__img img {
    transform: scale(1.08);
}
.news-sidebar__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.news-sidebar__date {
    font-size: 11px;
    color: var(--text-dim);
}
.news-sidebar__title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-white);
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-sidebar__read {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    margin-top: 2px;
}

/* Bottom grid: 4 columns */
.news-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    margin-top: 0;
}

/* Responsive */
@media (max-width: 1100px) {
    .news-top-row {
        grid-template-columns: 1fr 300px;
    }
}
@media (max-width: 900px) {
    .news-top-row {
        grid-template-columns: 1fr;
    }
    .news-sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .news-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 600px) {
    .news-featured__img {
        height: 200px;
    }
    .news-featured__title {
        font-size: 18px;
    }
    .news-sidebar {
        grid-template-columns: 1fr;
    }
    .news-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ─── Hero Dropdown (Community menu on home page) ─── */
.hero-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}
.hero-dropdown > a {
    cursor: pointer;
    padding-bottom: 8px;
    margin-bottom: -8px;
}
.hero-dropdown__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: rgba(10, 14, 20, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 8px 0;
    padding-top: 16px;
    z-index: 100;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.hero-dropdown:hover .hero-dropdown__menu {
    display: block;
}
.hero-dropdown__menu a {
    display: flex !important;
    align-items: center !important;
    padding: 10px 16px !important;
    color: var(--text-muted) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    transition: all 0.2s !important;
    gap: 0 !important;
}
.hero-dropdown__menu a:hover {
    background: rgba(var(--accent-rgb), 0.1) !important;
    color: var(--accent) !important;
}

/* ─── Theme-aware feature icons ─── */
.feature-card__icon img {
    filter: var(--btn-filter, none);
    transition: filter 0.3s;
}

/* ─── OBT Countdown Widget v2 ─── */
.obt-widget {
    margin-top: 32px;
    text-align: center;
}
.obt-widget__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 20px;
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.1), rgba(var(--accent-rgb), 0.06));
    border: 1px solid rgba(var(--accent-rgb), 0.25);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.obt-widget__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 10px rgba(var(--accent-rgb), 0.8);
    animation: obtDot 2s ease-in-out infinite;
}
@keyframes obtDot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.obt-widget__timer {
    display: inline-flex;
    align-items: stretch;
    gap: 10px;
}
.obt-widget__cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.obt-widget__num-wrap {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(15, 20, 30, 0.9), rgba(10, 14, 22, 0.95));
    border: 1px solid rgba(var(--accent-rgb), 0.25);
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 0 40px rgba(var(--accent-rgb), 0.08);
}
.obt-widget__num-wrap::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.03), transparent);
    border-radius: 14px 14px 0 0;
}
.obt-widget__num {
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 20px rgba(var(--accent-rgb), 0.5);
}
.obt-widget__label {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
}
.obt-widget__footer {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(var(--accent-rgb), 0.7);
    letter-spacing: 0.5px;
    font-weight: 600;
}
.obt-widget__footer svg {
    opacity: 0.7; stroke: var(--accent);
}

/* Countdown finished state */
.obt-widget__live {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.12), rgba(var(--accent-rgb), 0.06));
    border: 1px solid rgba(var(--accent-rgb), 0.3);
    border-radius: 14px;
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 1px;
    text-shadow: 0 0 20px rgba(var(--accent-rgb), 0.5);
    animation: liveGlow 2s ease-in-out infinite;
}
.obt-widget__live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 12px rgba(var(--accent-rgb), 0.8);
    animation: obtDot 1.5s ease-in-out infinite;
}
@keyframes liveGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(var(--accent-rgb), 0.1); }
    50% { box-shadow: 0 0 40px rgba(var(--accent-rgb), 0.2); }
}

@media (max-width: 640px) {
    .obt-widget__num-wrap { width: 56px; height: 56px; border-radius: 10px; }
    .obt-widget__num { font-size: 22px; }
    .obt-widget__timer { gap: 6px; }
}

/* ─── Roadmap Tooltips ─── */
.rm-tip {
    position: relative;
    cursor: pointer;
}
.roadmap-concept__card ul li:hover {
    color: #fff;
}
.rm-tip::after {
    content: attr(data-tip);
    position: absolute;
    bottom: calc(100% + 10px);
    left: 0;
    min-width: 250px;
    max-width: 300px;
    padding: 10px 14px;
    background: linear-gradient(145deg, rgba(12, 16, 24, 0.97), rgba(8, 12, 18, 0.97));
    border: 1px solid rgba(var(--accent-rgb), 0.25);
    border-radius: 10px;
    color: #c8d0dc;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
    text-align: left;
    white-space: normal;
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(var(--accent-rgb), 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: all 0.25s ease;
    pointer-events: none;
    z-index: 50;
    backdrop-filter: blur(10px);
}
.rm-tip:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.roadmap-concept__phase.active .rm-tip::after {
    border-color: rgba(250, 200, 50, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 15px rgba(250, 200, 50, 0.06);
}
@media (max-width: 768px) {
    .rm-tip::after { display: none; }
}
