/* ============================================
   EXTRA WOW - Concept Design CSS
   Dark Fire theme with orange/gold accent
   ============================================ */

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

:root {
    --bg-dark: #08090d;
    --bg-card: #0e1018;
    --bg-card-hover: #14181f;
    --bg-nav: rgba(8, 9, 13, 0.88);
    --accent: #f97316;
    --accent-hover: #fb923c;
    --accent-dark: #ea580c;
    --accent-gold: #fbbf24;
    --accent-rgb: 249, 115, 22;
    --text-white: #ffffff;
    --text-light: #e8ddd0;
    --text-muted: #a09080;
    --text-dim: #6b5c50;
    --border-color: rgba(249, 115, 22, 0.08);
    --border-accent: rgba(249, 115, 22, 0.4);
    --glow-green: 0 0 20px rgba(249, 115, 22, 0.2), 0 0 40px rgba(249, 115, 22, 0.08);
    --gradient-green: linear-gradient(135deg, #f97316, #ea580c);
    --gradient-gold: linear-gradient(135deg, #fbbf24, #f59e0b);
    --gradient-dark: linear-gradient(180deg, #08090d 0%, #0f1018 100%);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    /* Texture pattern removed */
    --btn-filter: brightness(0) saturate(100%) invert(60%) sepia(80%) saturate(600%) hue-rotate(340deg) brightness(100%) contrast(100%);
}

* {
    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;
    background-color: #08090d;
    background-image:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(249, 115, 22, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 0% 50%, rgba(249, 115, 22, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 100% 50%, rgba(249, 115, 22, 0.03) 0%, transparent 50%);
}

/* Grid pattern overlay removed */

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

/* Top fire glow line */
.hero-concept::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #f97316, #fbbf24, #f97316, transparent);
    z-index: 20;
}

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

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

.hero-concept__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(8, 9, 13, 0.92) 0%,
        rgba(8, 9, 13, 0.65) 40%,
        rgba(8, 9, 13, 0.35) 60%,
        rgba(8, 9, 13, 0.70) 100%
    );
    z-index: 1;
}

.hero-concept__overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 220px;
    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: flex-end;
    padding: 20px 40px;
    background: rgba(8, 9, 13, 0.75);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(249, 115, 22, 0.12);
}

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

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

.hero-concept__logo span {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(249, 115, 22, 0.5);
}

.hero-concept__menu {
    display: flex;
    gap: 32px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 50%;
    margin-top: -10px;
    z-index: 1;
}

.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;
    box-shadow: 0 0 8px rgba(249, 115, 22, 0.6);
}

.hero-concept__auth {
    display: flex;
    gap: 12px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.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 rgba(249, 115, 22, 0.25);
    border-radius: var(--radius-sm);
    transition: all 0.3s;
}

.btn-login:hover {
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 0 0 12px rgba(249, 115, 22, 0.2);
}

.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;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.btn-register:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

/* 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;
    animation: fadeInUp 0.8s ease-out;
}

/* "EXTRA WoW" title - fire glow */
.hero-concept__valor {
    color: var(--accent);
    font-family: 'Cinzel', serif;
    font-size: 72px;
    display: block;
    text-shadow:
        0 0 30px rgba(249, 115, 22, 0.6),
        0 0 60px rgba(249, 115, 22, 0.3),
        0 0 90px rgba(251, 191, 36, 0.15);
    letter-spacing: 4px;
}

.hero-concept__subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-concept__buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.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 20px rgba(249, 115, 22, 0.4), 0 0 40px rgba(249, 115, 22, 0.15);
}

.btn-play:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(249, 115, 22, 0.5), 0 0 60px rgba(249, 115, 22, 0.2);
}

.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: 2px solid rgba(255, 255, 255, 0.85);
    border-radius: var(--radius-sm);
    transition: all 0.3s;
}

.btn-learn:hover {
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.15);
}

.hero-concept__online {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: var(--text-light);
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.online-dot {
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse-online 2s infinite;
    box-shadow: 0 0 8px rgba(249, 115, 22, 0.6);
}

.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(249, 115, 22, 0.5); }
    50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(249, 115, 22, 0); }
}

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

.stat-card {
    background: rgba(14, 16, 24, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(249, 115, 22, 0.15);
    border-radius: var(--radius-lg);
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

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

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

.stat-card__item {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(249, 115, 22, 0.08);
    transition: background 0.3s;
}

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

.stat-card__item:hover {
    background: rgba(249, 115, 22, 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
   ============================================ */
.news-concept {
    padding: 80px 0;
    background: var(--bg-dark);
    position: relative;
    z-index: 1;
}

.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__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;
}

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

.news-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(249, 115, 22, 0.15);
    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(249, 115, 22, 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 rgba(249, 115, 22, 0.08);
    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(249, 115, 22, 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;
    box-shadow: 0 0 8px rgba(249, 115, 22, 0.5);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-concept {
    padding: 60px 0 80px;
    background-color: #0c0f16;
    
    position: relative;
    z-index: 1;
}

.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 rgba(249, 115, 22, 0.08);
    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(249, 115, 22, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border: 1px solid rgba(249, 115, 22, 0.15);
}

.features-concept__icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: var(--btn-filter, none);
    transition: filter 0.3s;
}

.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 SECTION
   ============================================ */
.community-concept {
    padding: 60px 0;
    background-color: #09090f;
    
    position: relative;
    z-index: 1;
}

.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__join {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(249, 115, 22, 0.12);
    border: 1px solid rgba(249, 115, 22, 0.3);
    color: var(--accent);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all 0.3s;
}

.community-concept__join:hover {
    background: rgba(249, 115, 22, 0.2);
    transform: translateY(-2px);
}

.community-concept__content {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 30px;
    align-items: start;
}

.community-concept__card {
    background: var(--bg-card);
    border: 1px solid rgba(249, 115, 22, 0.12);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
}

.community-concept__logo {
    margin-bottom: 16px;
}

.community-concept__name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 6px;
}

.community-concept__desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.community-concept__stats {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    text-align: left;
}

.community-concept__stat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
}

.community-concept__stat svg {
    color: var(--accent);
    flex-shrink: 0;
}

.community-concept__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--gradient-green);
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all 0.3s;
    margin-bottom: 12px;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.community-concept__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(249, 115, 22, 0.4);
}

.community-concept__tg {
    margin-top: 8px;
}

.community-concept__tg-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(0, 136, 204, 0.15);
    border: 1px solid rgba(0, 136, 204, 0.3);
    color: #29b6f6;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all 0.3s;
}

.community-concept__tg-btn:hover {
    background: rgba(0, 136, 204, 0.25);
}

.community-concept__features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.community-concept__feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid rgba(249, 115, 22, 0.08);
    border-radius: var(--radius-md);
    transition: all 0.3s;
}

.community-concept__feature:hover {
    border-color: rgba(249, 115, 22, 0.25);
}

.community-concept__feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    border: 1px solid rgba(249, 115, 22, 0.15);
}

.community-concept__feature-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 4px;
}

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

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

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

.races-concept__header,
.races-concept__header-simple {
    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 rgba(249, 115, 22, 0.15);
    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(249, 115, 22, 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 rgba(249, 115, 22, 0.1);
    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: 0 0 20px rgba(249, 115, 22, 0.25);
}

.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);
}

/* Races Grid */
.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 rgba(249, 115, 22, 0.1);
    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(249, 115, 22, 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);
}

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

.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 rgba(249, 115, 22, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.discord-concept__widget iframe {
    display: block;
}

/* ============================================
   ROADMAP SECTION
   ============================================ */
.roadmap-concept {
    padding: 80px 0;
    background: var(--bg-dark);
    position: relative;
    z-index: 1;
}

.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), rgba(249, 115, 22, 0.1));
}

.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);
    box-shadow: 0 0 12px rgba(249, 115, 22, 0.5);
}

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

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 6px rgba(249, 115, 22, 0.2); }
    50% { box-shadow: 0 0 0 12px rgba(249, 115, 22, 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 rgba(249, 115, 22, 0.08);
    border-radius: var(--radius-md);
    padding: 24px;
}

.roadmap-concept__phase.active .roadmap-concept__card {
    border-color: rgba(249, 115, 22, 0.35);
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.1);
}

.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 */
.roadmap-concept__card ul li.done {
    color: #c0c8d4;
}
.roadmap-concept__card ul li.done::before {
    background: rgba(249, 115, 22, 0.2);
    border-color: var(--accent);
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(249, 115, 22, 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(249, 115, 22, 0.8);
}

/* WIP */
.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 */
.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(249, 115, 22, 0.2);
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.3);
}
.legend-dot.done::after {
    content: '✔';
    color: var(--accent);
    font-size: 10px;
    font-weight: 900;
    text-shadow: 0 0 6px rgba(249, 115, 22, 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;
}

/* 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(249, 115, 22, 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(249, 115, 22, 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; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #060709;
    border-top: 1px solid rgba(249, 115, 22, 0.12);
    padding: 60px 0 30px;
    position: relative;
    z-index: 1;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.4), rgba(251, 191, 36, 0.3), rgba(249, 115, 22, 0.4), transparent);
}

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

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    gap: 24px;
}

.footer__cta-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.footer__cta-desc {
    font-size: 14px;
    color: var(--text-muted);
}

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

.footer__brand-name {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(249, 115, 22, 0.4);
}

.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 rgba(249, 115, 22, 0.12);
    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(249, 115, 22, 0.1);
    box-shadow: 0 0 12px rgba(249, 115, 22, 0.2);
}

.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: rgba(249, 115, 22, 0.08);
    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);
}

/* ============================================
   NAVBAR (inner pages)
   ============================================ */
.navbar {
    background: var(--bg-nav) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(249, 115, 22, 0.1) !important;
    padding: 0 2rem !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
    height: 64px !important;
}

.navbar.scrolled {
    background: rgba(8, 9, 13, 0.97) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 40px rgba(249, 115, 22, 0.05) !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;
    gap: 8px !important;
}

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

.navbar__logo span {
    font-family: 'Cinzel', serif !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #fff !important;
    letter-spacing: 2px !important;
    text-shadow: 0 0 15px rgba(249, 115, 22, 0.5) !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: rgba(8, 9, 13, 0.97);
    border: 1px solid rgba(249, 115, 22, 0.15);
    border-radius: var(--radius-md);
    padding: 8px 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6), 0 0 20px rgba(249, 115, 22, 0.05);
    z-index: 1001;
    backdrop-filter: blur(20px);
}

.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(249, 115, 22, 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 rgba(249, 115, 22, 0.2) !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;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3) !important;
}

.navbar__actions .btn-primary:hover {
    box-shadow: 0 6px 25px rgba(249, 115, 22, 0.4) !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: rgba(8, 9, 13, 0.98) !important;
    border-top: 1px solid rgba(249, 115, 22, 0.12) !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(249, 115, 22, 0.1) !important;
    color: var(--accent) !important;
}

/* ============================================
   HOMEPAGE OVERRIDES
   ============================================ */
@media (min-width: 1025px) {
    body.home-page .navbar {
        display: none !important;
    }
    body.home-page .mobile-menu {
        display: none !important;
    }
}

@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, 9, 13, 0.97) !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;
}

/* 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 */
.hero-stats-block {
    flex: 1;
    background: rgba(8, 9, 13, 0.88);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(249, 115, 22, 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.35);
    border-bottom: 1px solid rgba(249, 115, 22, 0.12);
}
.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(249, 115, 22, 0.5);
}
.hero-stats-block__label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.35);
}
.hero-stats-block__divider {
    width: 1px;
    height: 40px;
    background: rgba(249, 115, 22, 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(8, 9, 13, 0.92);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-left: 1px solid rgba(249, 115, 22, 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(249, 115, 22, 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(249, 115, 22, 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(249, 115, 22, 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; }
}

/* 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(8, 9, 13, 0.97);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(249, 115, 22, 0.15);
    border-radius: 12px;
    padding: 8px 0;
    padding-top: 16px;
    z-index: 100;
    box-shadow: 0 8px 32px rgba(0,0,0,0.6), 0 0 20px rgba(249, 115, 22, 0.05);
}
.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(249, 115, 22, 0.1) !important;
    color: var(--accent) !important;
}

/* ============================================
   SECTION DIVIDERS
   ============================================ */
.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(249, 115, 22, 0.25) 30%, rgba(249, 115, 22, 0.4) 50%, rgba(249, 115, 22, 0.25) 70%, transparent 100%);
}

/* Decorative side glow */
.home-page .news-concept,
.home-page .races-concept,
.home-page .roadmap-concept {
    box-shadow: inset 200px 0 200px -100px rgba(249, 115, 22, 0.02),
                inset -200px 0 200px -100px rgba(249, 115, 22, 0.02);
}

/* ============================================
   COLOR PICKER
   ============================================ */
.color-picker-wrap {
    position: relative;
}

.color-picker-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(249, 115, 22, 0.08);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s;
}

.color-picker-btn:hover {
    background: rgba(249, 115, 22, 0.15);
    border-color: rgba(249, 115, 22, 0.4);
}

.color-indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 8px rgba(249, 115, 22, 0.5);
}

.cp-text {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.color-picker-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(8, 9, 13, 0.97);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: var(--radius-md);
    padding: 16px;
    min-width: 180px;
    z-index: 1100;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6), 0 0 20px rgba(249, 115, 22, 0.05);
    backdrop-filter: blur(20px);
}

.color-picker-dropdown.open {
    display: block;
}

.color-picker-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-dim);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.color-picker-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}

.color-swatch {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.color-swatch:hover {
    transform: scale(1.2);
}

.color-swatch.active {
    border-color: white;
    box-shadow: 0 0 8px rgba(255,255,255,0.3);
}

.color-swatch[data-color="green"] { background: #4ade80; }
.color-swatch[data-color="red"] { background: #f87171; }
.color-swatch[data-color="yellow"] { background: #f97316; }
.color-swatch[data-color="gray"] { background: #94a3b8; }
.color-swatch[data-color="blue"] { background: #60a5fa; }
.color-swatch[data-color="cyan"] { background: #22d3ee; }
.color-swatch[data-color="purple"] { background: #a78bfa; }
.color-swatch[data-color="pink"] { background: #f472b6; }
.color-swatch[data-color="lime"] { background: #a3e635; }
.color-swatch[data-color="teal"] { background: #2dd4bf; }
.color-swatch[data-color="indigo"] { background: #818cf8; }
.color-swatch[data-color="rose"] { background: #fb7185; }
.color-swatch[data-color="sky"] { background: #38bdf8; }
.color-swatch[data-color="emerald"] { background: #34d399; }
.color-swatch[data-color="silver"] { background: #e2e8f0; }
.color-swatch[data-color="orange"] { background: #f97316; }

/* ============================================
   PAGE STYLES (inner pages)
   ============================================ */
.page-header {
    padding: 120px 0 40px;
    text-align: center;
    background: linear-gradient(180deg, rgba(249, 115, 22, 0.04) 0%, transparent 100%);
}

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

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

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

.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(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    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(249, 115, 22, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(249, 115, 22, 0.4);
}

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

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

.btn-ghost {
    background: transparent;
    color: var(--accent);
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.btn-ghost:hover {
    background: rgba(249, 115, 22, 0.1);
}

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

.news-card {
    background: var(--bg-card);
    border: 1px solid rgba(249, 115, 22, 0.08);
    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(249, 115, 22, 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 */
.feature-card {
    background: var(--bg-card);
    border: 1px solid rgba(249, 115, 22, 0.08);
    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(249, 115, 22, 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;
    filter: var(--btn-filter, none);
}

.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 rgba(249, 115, 22, 0.1);
    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 rgba(249, 115, 22, 0.08);
}

.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 rgba(249, 115, 22, 0.08);
    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(14, 16, 24, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(249, 115, 22, 0.12);
    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 rgba(249, 115, 22, 0.1);
    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);
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.15);
}

/* FAQ */
.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(249, 115, 22, 0.08);
    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 rgba(249, 115, 22, 0.08);
    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(249, 115, 22, 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 rgba(249, 115, 22, 0.08);
    background: var(--bg-card);
}

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

table tr:hover td {
    background: rgba(249, 115, 22, 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 rgba(249, 115, 22, 0.08);
    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;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

/* 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;
}

/* ============================================
   NEWS FEATURED + SIDEBAR LAYOUT
   ============================================ */
.news-top-row {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 20px;
    margin-bottom: 20px;
}

.news-featured {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid rgba(249, 115, 22, 0.08);
    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(249, 115, 22, 0.15);
    color: var(--accent);
    border: 1px solid rgba(249, 115, 22, 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;
}

.news-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: var(--bg-card);
    border: 1px solid rgba(249, 115, 22, 0.08);
    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 rgba(249, 115, 22, 0.06);
    transition: background 0.2s;
    align-items: flex-start;
}
.news-sidebar__item:last-child {
    border-bottom: none;
}
.news-sidebar__item:hover {
    background: rgba(249, 115, 22, 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;
}

.news-grid__card {
    background: var(--bg-card);
    border: 1px solid rgba(249, 115, 22, 0.08);
    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(249, 115, 22, 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;
}

/* ============================================
   OBT COUNTDOWN WIDGET
   ============================================ */
.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(250, 200, 50, 0.1), rgba(249, 115, 22, 0.08));
    border: 1px solid rgba(250, 200, 50, 0.25);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: #fde047;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.obt-widget__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fac832;
    box-shadow: 0 0 10px rgba(250, 200, 50, 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(249, 115, 22, 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(249, 115, 22, 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(249, 115, 22, 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(249, 115, 22, 0.7);
    letter-spacing: 0.5px;
    font-weight: 600;
}
.obt-widget__footer svg {
    opacity: 0.7; stroke: var(--accent);
}

/* Countdown finished */
.obt-widget__live {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.12), rgba(249, 115, 22, 0.06));
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 14px;
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 1px;
    text-shadow: 0 0 20px rgba(249, 115, 22, 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(249, 115, 22, 0.8);
    animation: obtDot 1.5s ease-in-out infinite;
}
@keyframes liveGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(249, 115, 22, 0.1); }
    50% { box-shadow: 0 0 40px rgba(249, 115, 22, 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; }
}

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

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

::-webkit-scrollbar-thumb {
    background: rgba(249, 115, 22, 0.2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(249, 115, 22, 0.4);
}

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

/* ============================================
   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: 1100px) {
    .news-top-row {
        grid-template-columns: 1fr 300px;
    }
}

@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 rgba(249, 115, 22, 0.08);
    }
    .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);
    }
    .community-concept__content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .races-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    .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: 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;
    }
    .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;
    }
    .hero-bottom-row {
        flex-direction: column;
        padding: 0 16px 24px;
        align-items: center;
    }
    .hero-stats-block {
        border-radius: 12px 12px 0 0;
        width: 100%;
    }
    .hero-boss-widget {
        width: 100%;
    }
    .hero-boss-widget .boss-dropdown {
        border-radius: 0 0 12px 12px;
    }
    /* Mobile nav: prevent register button from being clipped */
    .hero-concept__nav {
        flex-wrap: wrap;
        overflow: visible;
    }
    .hero-concept__auth {
        gap: 8px;
        flex-shrink: 0;
    }
    .btn-register {
        font-size: 11px;
        padding: 7px 12px;
        letter-spacing: 0;
        white-space: nowrap;
    }
    .btn-login {
        font-size: 11px;
        padding: 7px 12px;
        letter-spacing: 0;
    }
    .color-picker-btn {
        font-size: 11px;
        padding: 6px 10px;
    }
    .container {
        padding: 0 16px;
    }
}

@media (max-width: 600px) {
    .races-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    .news-grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }
    .news-featured__img {
        height: 200px;
    }
    .news-featured__title {
        font-size: 18px;
    }
    .news-sidebar {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════════════════════════
   HERO FLAGS — SVG WAVE ANIMATION OVERLAY
   ══════════════════════════════════════════════════════════ */
.hero-flags-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.hero-flag-alliance-layer,
.hero-flag-horde-layer {
    /* Слои рендерятся поверх фонового изображения */
    will-change: filter;
}
