/* =========================================
   DEADCITY — POST-APOCALYPTIC HOMEPAGE V2
   Referans: DayZ Tournament Website
   ========================================= */

/* --- FONT IMPORTS --- */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&display=swap');

/* --- ROOT VARIABLES --- */
:root {
    --dc-bg: #0a0a0a;
    --dc-bg-dark: #050505;
    --dc-bg-section: #0e0e0e;
    --dc-bg-card: rgba(18, 18, 18, 0.85);
    --dc-bg-card-hover: rgba(28, 12, 12, 0.95);

    --dc-red: #C80004;
    --dc-red-bright: #e8000a;
    --dc-red-glow: rgba(200, 0, 4, 0.5);
    --dc-red-dim: rgba(200, 0, 4, 0.12);
    --dc-red-overlay: rgba(200, 0, 4, 0.08);

    --dc-green: #47533E;
    --dc-green-light: #5a6b4d;

    --dc-white: #FFFFFF;
    --dc-text: #c8c8c8;
    --dc-text-muted: #666;
    --dc-border: rgba(255, 255, 255, 0.06);

    --font-accent: 'Cartella NF W00 Regular', 'Bebas Neue', sans-serif;
    --font-main: 'Rajdhani', 'Barlow Condensed', sans-serif;
}

/* --- BASE --- */
*, *::before, *::after { box-sizing: border-box; }

body.home-v2 {
    margin: 0;
    padding: 0;
    background: var(--dc-bg);
    color: var(--dc-text);
    font-family: var(--font-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.home-v2 .container {
    max-width: none;
    padding: 0;
    margin: 0;
}

/* =============================================
   1. HERO — FULL VIEWPORT CINEMATIC
   ============================================= */
.hero-v2 {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

/* Background media layer */
.hero-v2__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-v2__bg video,
.hero-v2__bg img,
.hero-v2__bg-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Fallback: Animated apocalyptic atmosphere when no media */
.hero-v2__bg-fallback {
    background:
        radial-gradient(ellipse at 30% 60%, rgba(200, 0, 4, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 40%, rgba(120, 0, 0, 0.1) 0%, transparent 55%),
        radial-gradient(ellipse at 50% 100%, rgba(80, 20, 0, 0.2) 0%, transparent 50%),
        var(--dc-bg);
    animation: atmospherePulse 8s ease-in-out infinite alternate;
}

@keyframes atmospherePulse {
    0% { filter: brightness(1); }
    50% { filter: brightness(1.08); }
    100% { filter: brightness(0.95); }
}

/* Gradient overlays — cinematic feel */
.hero-v2__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg,
            rgba(5, 5, 5, 0.5) 0%,
            rgba(5, 5, 5, 0.15) 35%,
            rgba(5, 5, 5, 0.3) 65%,
            rgba(10, 10, 10, 1) 100%
        ),
        linear-gradient(90deg,
            rgba(5, 5, 5, 0.85) 0%,
            rgba(5, 5, 5, 0.3) 50%,
            transparent 100%
        );
}

/* Red atmospheric glow */
.hero-v2__red-glow {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: radial-gradient(
        ellipse at 60% 50%,
        rgba(200, 0, 4, 0.06) 0%,
        transparent 70%
    );
    pointer-events: none;
}

/* Particle / ember effect */
.hero-v2__particles {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.ember {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 80, 0, 0.7);
    border-radius: 50%;
    filter: blur(1px);
    animation: emberFloat linear infinite;
}

.ember:nth-child(1) { left: 15%; animation-duration: 12s; animation-delay: 0s; }
.ember:nth-child(2) { left: 35%; animation-duration: 15s; animation-delay: 2s; width: 2px; height: 2px; }
.ember:nth-child(3) { left: 55%; animation-duration: 10s; animation-delay: 4s; }
.ember:nth-child(4) { left: 70%; animation-duration: 18s; animation-delay: 1s; width: 2px; height: 2px; opacity: 0.5; }
.ember:nth-child(5) { left: 85%; animation-duration: 14s; animation-delay: 3s; }
.ember:nth-child(6) { left: 25%; animation-duration: 16s; animation-delay: 5s; width: 2px; height: 2px; }
.ember:nth-child(7) { left: 45%; animation-duration: 11s; animation-delay: 7s; opacity: 0.6; }
.ember:nth-child(8) { left: 90%; animation-duration: 13s; animation-delay: 0.5s; }

@keyframes emberFloat {
    0% {
        transform: translateY(100vh) translateX(0) scale(1);
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 0.8; }
    100% {
        transform: translateY(-10vh) translateX(30px) scale(0);
        opacity: 0;
    }
}

/* Vignette */
.hero-v2__vignette {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    box-shadow: inset 0 0 200px 60px rgba(0, 0, 0, 0.7);
}

/* Hero content */
.hero-v2__content {
    position: relative;
    z-index: 10;
    padding: 0 10%;
    max-width: 850px;
}

/* =============================================
   GLITCH / BROKEN TITLE
   ============================================= */
.hero-title-main {
    font-family: var(--font-accent);
    font-size: clamp(4rem, 10vw, 9rem);
    font-weight: 400;
    color: var(--dc-white);
    text-transform: uppercase;
    letter-spacing: 6px;
    line-height: 0.9;
    margin: 0;
    position: relative;
    text-shadow:
        0 0 40px rgba(200, 0, 4, 0.3),
        0 0 80px rgba(200, 0, 4, 0.1);
}

/* Broken/crack effect — offset colored layers */
.hero-title-main::before,
.hero-title-main::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-title-main::before {
    color: var(--dc-red);
    z-index: -1;
    clip-path: polygon(0 0, 100% 0, 100% 42%, 0 38%);
    transform: translate(-4px, -2px);
    opacity: 0.6;
    animation: crackShift1 5s ease-in-out infinite;
}

.hero-title-main::after {
    color: rgba(200, 0, 4, 0.4);
    z-index: -1;
    clip-path: polygon(0 58%, 100% 55%, 100% 100%, 0 100%);
    transform: translate(4px, 3px);
    opacity: 0.5;
    animation: crackShift2 6s ease-in-out infinite;
}

@keyframes crackShift1 {
    0%, 100% { transform: translate(-4px, -2px); }
    30% { transform: translate(-2px, -1px) skewX(-0.5deg); }
    70% { transform: translate(-5px, -3px) skewX(0.3deg); }
}

@keyframes crackShift2 {
    0%, 100% { transform: translate(4px, 3px); }
    40% { transform: translate(3px, 2px) skewX(0.5deg); }
    80% { transform: translate(5px, 4px) skewX(-0.3deg); }
}

.hero-title-sub {
    font-family: var(--font-accent);
    font-size: clamp(1.8rem, 5vw, 4.5rem);
    font-weight: 400;
    color: var(--dc-red);
    text-transform: uppercase;
    letter-spacing: 8px;
    line-height: 1;
    margin: -5px 0 0 0;
    text-shadow: 0 0 30px var(--dc-red-glow);
}

/* DEAD (white) + CITY (red) title spans */
.hero-title--white {
    color: var(--dc-white);
}

.hero-title--red {
    color: var(--dc-red);
    text-shadow: 0 0 40px var(--dc-red-glow), 0 0 80px rgba(200, 0, 4, 0.15);
}

/* Divider line */
.hero-divider {
    width: 80px;
    height: 3px;
    background: var(--dc-red);
    margin: 28px 0 24px;
    position: relative;
    box-shadow: 0 0 20px var(--dc-red-glow);
}

.hero-v2__subtitle {
    font-family: var(--font-main);
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0 0 40px 0;
    max-width: 520px;
    letter-spacing: 0.5px;
}

.hero-v2__subtitle strong {
    color: var(--dc-white);
    font-weight: 700;
}

/* CTA — DayZ style red button */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 38px;
    background: var(--dc-red);
    color: var(--dc-white);
    font-family: var(--font-accent);
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 0 30px var(--dc-red-glow);
}

.cta-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}

.cta-btn:hover::after {
    left: 100%;
}

.cta-btn:hover {
    background: var(--dc-red-bright);
    box-shadow: 0 0 50px var(--dc-red-glow), 0 5px 30px rgba(200, 0, 4, 0.3);
    transform: translateY(-2px);
}

.cta-btn i {
    font-size: 13px;
    transition: transform 0.3s;
}

.cta-btn:hover i {
    transform: translateX(5px);
}

.cta-btn--disabled {
    background: #333;
    box-shadow: none;
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.3);
    font-family: var(--font-main);
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    cursor: pointer;
    animation: scrollPulse 2.5s ease-in-out infinite;
}

.scroll-indicator__mouse {
    width: 22px;
    height: 34px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 11px;
    position: relative;
}

.scroll-indicator__mouse::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: var(--dc-red);
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(12px); opacity: 0; }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* =============================================
   SECTIONS — SHARED
   ============================================= */
.section-v2 {
    padding: 100px 10%;
    position: relative;
    background: var(--dc-bg);
}

/* Alternating dark/red tint backgrounds */
.section-v2--tinted {
    background:
        linear-gradient(180deg, var(--dc-bg) 0%, rgba(200, 0, 4, 0.03) 50%, var(--dc-bg) 100%);
}

.section-v2--darker {
    background: var(--dc-bg-dark);
}

/* Section header — DayZ style */
.section-header-v2 {
    margin-bottom: 60px;
    position: relative;
}

.section-tag {
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 700;
    color: var(--dc-red);
    text-transform: uppercase;
    letter-spacing: 5px;
    margin: 0 0 14px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-tag::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 2px;
    background: var(--dc-red);
}

.section-title-v2 {
    font-family: var(--font-accent);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--dc-white);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
    line-height: 1.1;
}

/* =============================================
   2. FEATURES — WIDE CARDS
   ============================================= */
.features-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.feature-block {
    background: var(--dc-bg-card);
    padding: 50px 35px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
    border-bottom: 3px solid transparent;
}

.feature-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center bottom, var(--dc-red-overlay), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-block:hover::before { opacity: 1; }

.feature-block:hover {
    border-bottom-color: var(--dc-red);
    transform: translateY(-4px);
}



.feature-block__icon {
    font-size: 42px;
    color: var(--dc-red);
    margin-bottom: 20px;
    display: block;
}

.feature-block__title {
    font-family: var(--font-accent);
    font-size: 24px;
    color: var(--dc-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 12px 0;
}

.feature-block__desc {
    font-family: var(--font-main);
    font-size: 14px;
    color: var(--dc-text-muted);
    line-height: 1.7;
    margin: 0;
}

/* Green variant for WL open */
.feature-block--wl-open {
    border-bottom: 3px solid rgba(46, 204, 113, 0.3);
}
.feature-block--wl-open .feature-block__icon,
.feature-block--wl-open .feature-block__number { color: rgba(46, 204, 113, 0.3); }
.feature-block--wl-open:hover { border-bottom-color: #2ecc71; }
.feature-block--wl-open::before {
    background: radial-gradient(ellipse at center bottom, rgba(46, 204, 113, 0.06), transparent 70%);
}

/* =============================================
   3. ANNOUNCEMENTS — CINEMATIC
   ============================================= */
.anno-list {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.anno-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 28px;
    background: var(--dc-bg-card);
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.anno-row::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--dc-red-dim), transparent);
    transition: width 0.5s ease;
}

.anno-row:hover::before { width: 100%; }

.anno-row:hover {
    transform: translateX(8px);
}

.anno-row__badge {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dc-red-dim);
    color: var(--dc-red);
    font-size: 16px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.anno-row__badge--pinned {
    background: rgba(241, 196, 15, 0.1);
    color: #f1c40f;
}

.anno-row__content {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.anno-row__title {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 600;
    color: var(--dc-white);
    margin: 0 0 4px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.anno-row__meta {
    font-size: 11px;
    color: var(--dc-text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.anno-row__arrow {
    font-size: 14px;
    color: var(--dc-text-muted);
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.anno-row:hover .anno-row__arrow {
    color: var(--dc-red);
    transform: translateX(6px);
}

/* =============================================
   4. STORIES — SPLIT LAYOUT
   ============================================= */
.stories-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 2px;
    background: var(--dc-border);
}

.stories-sidebar {
    background: var(--dc-bg-card);
    display: flex;
    flex-direction: column;
}

.stories-sidebar__item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    color: var(--dc-text-muted);
    text-decoration: none;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 600;
    transition: all 0.4s ease;
    border-left: 3px solid transparent;
    position: relative;
}

.stories-sidebar__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--dc-red-dim), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.stories-sidebar__item:hover::after { opacity: 1; }

.stories-sidebar__item:hover {
    color: var(--dc-white);
    border-left-color: var(--dc-red);
}

.stories-sidebar__item i { 
    width: 20px; 
    font-size: 16px;
    position: relative;
    z-index: 1;
}

.stories-sidebar__item span {
    position: relative;
    z-index: 1;
}

.stories-sidebar__item--purple:hover { border-left-color: #9b59b6; }
.stories-sidebar__item--purple:hover::after { background: linear-gradient(90deg, rgba(155,89,182,0.1), transparent); }

.stories-sidebar__item--green:hover { border-left-color: #2ecc71; }
.stories-sidebar__item--green:hover::after { background: linear-gradient(90deg, rgba(46,204,113,0.1), transparent); }

.stories-sidebar__item--orange:hover { border-left-color: #f39c12; }
.stories-sidebar__item--orange:hover::after { background: linear-gradient(90deg, rgba(243,156,18,0.1), transparent); }

.stories-main {
    background: var(--dc-bg-card);
}

.stories-main__header {
    padding: 16px 28px;
    border-bottom: 1px solid var(--dc-border);
    font-family: var(--font-main);
    font-size: 11px;
    font-weight: 700;
    color: var(--dc-text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.story-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 28px;
    border-bottom: 1px solid var(--dc-border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.story-row:last-child { border-bottom: none; }

.story-row:hover {
    background: rgba(200, 0, 4, 0.04);
    padding-left: 34px;
}

.story-row__info { flex: 1; min-width: 0; }

.story-row__title {
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 600;
    color: var(--dc-white);
    margin: 0 0 4px 0;
}

.story-row__cat {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.story-row__cat--evren { color: #9b59b6; }
.story-row__cat--oyuncu { color: #2ecc71; }
.story-row__cat--topluluk { color: #f39c12; }

.story-row__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.story-row__avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--dc-border);
    object-fit: cover;
}

.story-row__date {
    font-size: 12px;
    color: var(--dc-text-muted);
}

/* =============================================
   5. FORUM CATEGORIES — RED UNDERLINE GRID
   ============================================= */
.forum-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2px;
}

.forum-tile {
    background: var(--dc-bg-card);
    padding: 32px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.forum-tile::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    transition: width 0.5s ease;
}

.forum-tile:hover::after { width: 100%; }

.forum-tile:hover {
    background: var(--dc-bg-card-hover);
    transform: translateY(-3px);
}

.forum-tile__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    background: rgba(255,255,255,0.03);
    transition: all 0.3s;
}

.forum-tile:hover .forum-tile__icon {
    transform: scale(1.1);
}

.forum-tile__title {
    font-family: var(--font-main);
    font-size: 17px;
    font-weight: 700;
    color: var(--dc-white);
    margin: 0 0 4px 0;
}

.forum-tile__desc {
    font-size: 13px;
    color: var(--dc-text-muted);
    margin: 0;
}

/* Category colors */
.forum-tile--genel .forum-tile__icon { color: #2ecc71; }
.forum-tile--genel:hover::after { background: #2ecc71; }

.forum-tile--duyuru .forum-tile__icon { color: #f39c12; }
.forum-tile--duyuru:hover::after { background: #f39c12; }

.forum-tile--sikayet .forum-tile__icon { color: var(--dc-red); }
.forum-tile--sikayet:hover::after { background: var(--dc-red); }

.forum-tile--destek .forum-tile__icon { color: #3498db; }
.forum-tile--destek:hover::after { background: #3498db; }

.forum-tile--oneri .forum-tile__icon { color: #f1c40f; }
.forum-tile--oneri:hover::after { background: #f1c40f; }

.forum-tile--ck .forum-tile__icon { color: white; }
.forum-tile--ck:hover::after { background: #ff3333; }

.forum-tile--guncelleme .forum-tile__icon { color: white; }
.forum-tile--guncelleme:hover::after { background: white; }

/* =============================================
   6. STATS BAR
   ============================================= */
.stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--dc-border);
}

.stat-block {
    background: var(--dc-bg-section);
    padding: 50px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stat-block::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--dc-red);
    opacity: 0.4;
}

.stat-block__number {
    font-family: var(--font-accent);
    font-size: clamp(2.5rem, 4vw, 4rem);
    color: var(--dc-white);
    margin: 0;
    line-height: 1;
}

.stat-block__label {
    font-family: var(--font-main);
    font-size: 11px;
    color: var(--dc-text-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 10px;
}

/* =============================================
   7. WL BANNER
   ============================================= */
.wl-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 35px 10%;
    background: linear-gradient(90deg, var(--dc-bg-dark), var(--dc-red-dim), var(--dc-bg-dark));
    border-top: 1px solid var(--dc-red-dim);
    border-bottom: 1px solid var(--dc-red-dim);
}

.wl-strip__text h3 {
    font-family: var(--font-accent);
    font-size: 30px;
    color: var(--dc-white);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 0 0 6px 0;
}

.wl-strip__text p {
    font-family: var(--font-main);
    font-size: 14px;
    color: var(--dc-text-muted);
    margin: 0;
}

.wl-strip--closed { opacity: 0.5; }

/* =============================================
   ARCHIVE LINK
   ============================================= */
.archive-row {
    text-align: center;
    padding: 35px 0;
    background: var(--dc-bg);
}

.archive-row a {
    color: var(--dc-text-muted);
    text-decoration: none;
    font-size: 13px;
    font-family: var(--font-main);
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.archive-row a:hover { color: var(--dc-white); }

/* =============================================
   RED DIVIDER
   ============================================= */
.red-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--dc-red-dim), var(--dc-red), var(--dc-red-dim), transparent);
    margin: 0;
    border: none;
}

/* =============================================
   SCROLL-BASED REVEAL
   ============================================= */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger */
.stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.stagger > .reveal:nth-child(2) { transition-delay: 0.12s; }
.stagger > .reveal:nth-child(3) { transition-delay: 0.24s; }
.stagger > .reveal:nth-child(4) { transition-delay: 0.36s; }
.stagger > .reveal:nth-child(5) { transition-delay: 0.48s; }
.stagger > .reveal:nth-child(6) { transition-delay: 0.60s; }
.stagger > .reveal:nth-child(7) { transition-delay: 0.72s; }
.stagger > .reveal:nth-child(8) { transition-delay: 0.84s; }

/* =============================================
   COUNTDOWN TIMER
   ============================================= */
.countdown-section {
    padding: 80px 10%;
    background:
        radial-gradient(ellipse at 50% 100%, rgba(200, 0, 4, 0.08) 0%, transparent 60%),
        var(--dc-bg-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.countdown-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--dc-red-dim), var(--dc-red), var(--dc-red-dim), transparent);
}

.countdown-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--dc-red-dim), var(--dc-red), var(--dc-red-dim), transparent);
}

.countdown__label {
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 700;
    color: var(--dc-red);
    text-transform: uppercase;
    letter-spacing: 6px;
    margin: 0 0 12px 0;
}

.countdown__title {
    font-family: var(--font-accent);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--dc-white);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 0 0 45px 0;
}

.countdown__grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.countdown__unit {
    position: relative;
    width: 120px;
}

.countdown__number {
    font-family: var(--font-accent);
    font-size: clamp(3rem, 6vw, 5.5rem);
    color: var(--dc-white);
    line-height: 1;
    margin: 0;
    position: relative;
    text-shadow: 0 0 30px rgba(200, 0, 4, 0.15);
}

.countdown__unit-label {
    font-family: var(--font-main);
    font-size: 11px;
    color: var(--dc-text-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 8px;
}

.countdown__separator {
    font-family: var(--font-accent);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--dc-red);
    align-self: flex-start;
    padding-top: 6px;
    opacity: 0.5;
    animation: separatorBlink 1.5s ease-in-out infinite;
}

@keyframes separatorBlink {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Countdown finished state */
.countdown--finished .countdown__grid { display: none; }
.countdown--finished .countdown__title { margin-bottom: 0; }

/* =============================================
   SERVER STATUS CARDS
   ============================================= */
.server-status {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.status-card {
    background: var(--dc-bg-card);
    padding: 30px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid var(--dc-border);
    border-radius: 6px;
}

.status-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255,255,255,0.08);
}

/* Top icon / badge area */
.status-card__badge {
    position: absolute;
    top: 12px;
    right: 14px;
    font-size: 22px;
    opacity: 0.12;
}

/* Bottom color bar */
.status-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
}

/* Sunucu durumu */
.status-card--server::after { background: linear-gradient(90deg, #2ecc71, #27ae60); }
.status-card--server .status-card__badge { color: #2ecc71; }

.status-card--players::after { background: linear-gradient(90deg, var(--dc-red), #e8000a); }
.status-card--players .status-card__badge { color: var(--dc-red); }

.status-card--discord::after { background: linear-gradient(90deg, #5865F2, #7289DA); }
.status-card--discord .status-card__badge { color: #5865F2; }

/* Offline variant */
.status-card--offline::after { background: #555 !important; }

.status-card__value {
    font-family: var(--font-accent);
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--dc-white);
    margin: 0;
    line-height: 1;
    letter-spacing: 2px;
}

/* "AKTİF" with green dot */
.status-card__value--online {
    color: #2ecc71;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.status-card__value--online::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #2ecc71;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(46, 204, 113, 0.6);
    animation: dotPulse 2s ease-in-out infinite;
}

.status-card__value--offline {
    color: #e74c3c;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.status-card__value--offline::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #e74c3c;
    border-radius: 50%;
}

@keyframes dotPulse {
    0%, 100% { box-shadow: 0 0 10px rgba(46, 204, 113, 0.6); }
    50% { box-shadow: 0 0 20px rgba(46, 204, 113, 0.9), 0 0 40px rgba(46, 204, 113, 0.3); }
}

.status-card__label {
    font-family: var(--font-main);
    font-size: 11px;
    color: var(--dc-text-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 10px;
}

/* Loading shimmer for status cards */
.status-card__value--loading {
    color: var(--dc-text-muted);
    animation: shimmer 1.5s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

/* =============================================
   CONFETTI OVERLAY (canvas-confetti)
   ============================================= */
.confetti-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .section-v2 { padding: 70px 6%; }
    .hero-v2__content { padding: 0 6%; }
    .features-row { grid-template-columns: 1fr; }
    .stories-layout { grid-template-columns: 1fr; }
    .stats-strip { grid-template-columns: repeat(2, 1fr); }
    .countdown-section { padding: 60px 6%; }
    .countdown__unit { width: 90px; }
    .server-status { gap: 8px; }
    .wl-strip {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 30px 6%;
    }
}

@media (max-width: 768px) {
    .section-v2 { padding: 50px 5%; }
    .hero-v2__content { padding: 0 5%; }
    .forum-grid-v2 { grid-template-columns: 1fr; }
    .story-row__meta { display: none; }
    .scroll-indicator { display: none; }
    .hero-title-main { letter-spacing: 3px; }
    .hero-title-sub { letter-spacing: 4px; }
    .countdown-section { padding: 50px 5%; }
    .countdown__unit { width: 70px; }
    .countdown__separator { font-size: 2rem; }
    .server-status { grid-template-columns: 1fr; gap: 6px; }
    .status-card { padding: 22px 16px; }
}

@media (max-width: 480px) {
    .stats-strip { grid-template-columns: 1fr 1fr; }
    .hero-v2 { min-height: 550px; }
}
