/* ==========================================================
   VslikMt2 — MAIN STYLESHEET
   Classic Dark Fantasy MMORPG / Metin2 Launch Page
   Oldschool Red-Black Medieval Theme
   ========================================================== */

/* ===================== RESET & BASE ===================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* — Renk paleti — Kırmızı-Siyah Karanlık Fantasy — */
    --bg-primary: #080808;
    --bg-secondary: #0c0a0a;
    --bg-card: #110e0e;
    --bg-card-hover: #1a1414;
    --bg-panel: #0f0c0c;

    --text-primary: #d6d0c5;
    --text-secondary: #8a8078;
    --text-muted: #5a524a;

    --accent-red: #8b1a10;
    --accent-red-bright: #b52a1c;
    --accent-red-dark: #5c1108;
    --accent-gold: #a08040;
    --accent-gold-bright: #c8a050;
    --accent-gold-dim: #705828;

    --border-subtle: rgba(139, 26, 16, 0.2);
    --border-red: rgba(139, 26, 16, 0.45);
    --border-gold: rgba(160, 128, 64, 0.25);
    --glow-red: rgba(139, 26, 16, 0.5);
    --glow-gold: rgba(160, 128, 64, 0.25);

    --shadow-heavy: 0 12px 40px rgba(0, 0, 0, 0.8);
    --shadow-card: 0 6px 24px rgba(0, 0, 0, 0.6);

    --font-display: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;

    --section-padding: 90px 0;
    --container-width: 1200px;
    --radius: 3px;
    --radius-sm: 2px;
    --radius-lg: 4px;

    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* Kırmızı ambient ışık lekesi — body üst */
body::before {
    content: '';
    position: fixed;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(139, 26, 16, 0.08) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

/* Kırmızı ambient ışık lekesi — body alt */
body::after {
    content: '';
    position: fixed;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(139, 26, 16, 0.06) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.accent {
    color: var(--accent-red-bright);
}

/* ===================== SECTION SHARED ===================== */
.section {
    padding: var(--section-padding);
    position: relative;
    border-bottom: 1px solid rgba(139, 26, 16, 0.1);
}

/* Kırmızı ambient glow — her section'a */
.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(181, 42, 28, 0.5), rgba(139, 26, 16, 0.8), rgba(181, 42, 28, 0.5), transparent);
    box-shadow: 0 0 20px rgba(139, 26, 16, 0.4), 0 0 60px rgba(139, 26, 16, 0.15);
    pointer-events: none;
    z-index: 2;
}

/* Kırmızı ışık lekesi — section arka planına */
.section::after {
    content: '';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 120px;
    background: radial-gradient(ellipse, rgba(139, 26, 16, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.section-badge {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--accent-red-bright);
    border: 1px solid var(--border-red);
    padding: 5px 18px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    text-align: center;
    background: rgba(139, 26, 16, 0.06);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.section-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto 50px;
    text-align: center;
    line-height: 1.8;
}

.section .container {
    text-align: center;
}

/* ===================== NAVBAR ===================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0;
    transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
    background: rgba(8, 8, 8, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(139, 26, 16, 0.1);
}

.navbar.scrolled {
    background: rgba(8, 8, 8, 0.45);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.7);
    border-bottom: 1px solid rgba(139, 26, 16, 0.25);
}

.navbar-inner {
    width: 100%;
    padding: 0 40px;
    display: flex;
    align-items: center;
    height: 90px;
    position: relative;
}

.nav-logo {
    position: relative;
    z-index: 2;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.nav-logo-img {
    height: 60px;
    width: auto;
    display: block;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 900;
    color: #f0ece4;
    letter-spacing: 4px;
    text-shadow: 0 0 14px rgba(139, 26, 16, 0.35);
}

.logo-accent {
    color: var(--accent-red-bright);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.nav-links li a {
    padding: 12px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #c8c0b4;
    transition: color var(--transition);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-family: var(--font-body);
}

.nav-links li a:hover {
    color: var(--accent-red-bright);
}

/* Nav buttons — oldschool flat style, no modern CTA */
.nav-btn {
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    transition: color var(--transition) !important;
    border: none !important;
    background: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.nav-btn-secondary {
    color: #d4b060 !important;
    border: none;
}

.nav-btn-secondary:hover {
    color: #e8c878 !important;
    background: none;
}

.nav-btn-primary {
    color: #d44830 !important;
    background: none;
}

.nav-btn-primary:hover {
    color: #e85a42 !important;
    box-shadow: none;
    transform: none;
}

.nav-btn-discord {
    color: var(--text-secondary) !important;
    background: none !important;
}

.nav-btn-discord:hover {
    color: var(--accent-gold) !important;
    background: none !important;
    box-shadow: none !important;
    transform: none !important;
}

/* Social Dropdown */
.nav-social-wrap {
    position: relative;
}

.nav-social-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 180px;
    padding: 8px 0;
    background: rgba(12, 10, 10, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(139, 26, 16, 0.25);
    border-radius: 6px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    z-index: 1010;
}

.nav-social-wrap:hover .nav-social-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-social-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #b0a898;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav-social-dropdown a:hover {
    color: var(--accent-red-bright);
    background: rgba(139, 26, 16, 0.1);
}

.nav-social-dropdown a svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.nav-social-dropdown a:hover svg {
    opacity: 1;
}

/* Hamburger */
/* ===================== MOBİL MENÜ TOGGLE ===================== */
.menu-toggle {
    display: none;
}

/* ===================== MOBİL MENÜ OVERLAY ===================== */
.mobile-menu {
    display: none;
}

/* ===================== HERO ===================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.global-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #080808;
}

.hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(8, 8, 8, 0.5) 0%,
        rgba(8, 8, 8, 0.15) 30%,
        rgba(8, 8, 8, 0.3) 60%,
        rgba(8, 8, 8, 0.95) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 900px;
}

.hero-title {
    margin-bottom: 24px;
}

.hero-title-top {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(0.85rem, 2vw, 1rem);
    font-weight: 600;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--accent-red-bright);
    margin-bottom: 14px;
    text-shadow: 0 0 20px rgba(139, 26, 16, 0.4);
}

.hero-logo-img {
    display: block;
    max-width: clamp(280px, 50vw, 900px);
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(0 0 30px rgba(139, 26, 16, 0.3));
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: clamp(0.85rem, 2vw, 1.1rem);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-red-bright);
    margin-bottom: 16px;
    text-shadow: 0 0 18px rgba(139, 26, 16, 0.35);
}

.hero-title-name {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 10vw, 7.5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 8px;
    color: var(--text-primary);
    text-shadow:
        0 0 40px rgba(139, 26, 16, 0.5),
        0 0 80px rgba(92, 17, 8, 0.25),
        0 0 120px rgba(139, 26, 16, 0.1),
        0 4px 12px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.8;
}

/* Açılış Tarihi */
.hero-launch-date {
    margin-bottom: 28px;
}

.launch-date-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 22px;
    border: none;
    border-radius: 50px;
    background: rgba(139, 26, 16, 0.12);
    backdrop-filter: blur(4px);
}

.launch-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.launch-date-text {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-red-bright);
    text-shadow: none;
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 44px;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 78px;
    padding: 14px 10px;
    background: rgba(17, 14, 14, 0.9);
    border: 1px solid var(--border-red);
    border-radius: var(--radius);
}

.countdown-number {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 6px;
    text-shadow: 0 0 12px rgba(139, 26, 16, 0.3);
}

.countdown-label {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.countdown-separator {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-red-dark);
    line-height: 1;
    padding-bottom: 20px;
}

/* Countdown expired */
.countdown-expired {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-red-bright);
    padding: 18px 36px;
    border: 1px solid var(--border-red);
    border-radius: var(--radius);
    background: rgba(139, 26, 16, 0.1);
    text-shadow: 0 0 16px rgba(139, 26, 16, 0.4);
}

/* CTA Buttons — Amber/Orange MMORPG animated style */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 44px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 6px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(180deg, #d48a20 0%, #b86e10 50%, #a05808 100%);
    color: #fff;
    border-color: #c47818;
    box-shadow:
        0 4px 15px rgba(180, 110, 16, 0.4),
        0 1px 0 rgba(255, 220, 150, 0.2) inset,
        0 -1px 0 rgba(0, 0, 0, 0.3) inset;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(180deg, #e09828 0%, #c87a14 50%, #b0680c 100%);
    box-shadow:
        0 6px 25px rgba(200, 120, 24, 0.55),
        0 0 30px rgba(200, 120, 24, 0.2),
        0 1px 0 rgba(255, 220, 150, 0.25) inset,
        0 -1px 0 rgba(0, 0, 0, 0.3) inset;
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow:
        0 2px 8px rgba(180, 110, 16, 0.4),
        0 1px 0 rgba(255, 220, 150, 0.1) inset,
        0 -1px 0 rgba(0, 0, 0, 0.4) inset;
}

.btn-secondary {
    background: rgba(15, 12, 12, 0.85);
    color: #d48a20;
    border: 2px solid #c47818;
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(196, 120, 24, 0.1) inset;
    text-shadow: 0 0 8px rgba(212, 138, 32, 0.3);
}

.btn-secondary:hover {
    background: rgba(196, 120, 24, 0.12);
    border-color: #d48a20;
    color: #e8a030;
    box-shadow:
        0 6px 25px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(196, 120, 24, 0.15),
        0 0 0 1px rgba(196, 120, 24, 0.2) inset;
    transform: translateY(-2px);
}

.btn-secondary:active {
    transform: translateY(0);
}

.btn-outline {
    background: rgba(15, 12, 12, 0.7);
    color: #b0a090;
    border: 2px solid rgba(160, 128, 80, 0.35);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-outline:hover {
    border-color: #c47818;
    color: #d48a20;
    background: rgba(196, 120, 24, 0.08);
    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.4),
        0 0 16px rgba(196, 120, 24, 0.1);
    transform: translateY(-2px);
}

.btn-outline:active {
    transform: translateY(0);
}

/* Pulse animation for primary CTA */
@keyframes btnPulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(180, 110, 16, 0.4), 0 1px 0 rgba(255, 220, 150, 0.2) inset, 0 -1px 0 rgba(0, 0, 0, 0.3) inset; }
    50% { box-shadow: 0 4px 20px rgba(200, 120, 24, 0.55), 0 0 25px rgba(200, 120, 24, 0.15), 0 1px 0 rgba(255, 220, 150, 0.2) inset, 0 -1px 0 rgba(0, 0, 0, 0.3) inset; }
}

.hero-cta .btn-primary {
    animation: btnPulse 3s ease-in-out infinite;
}

.hero-cta .btn-primary:hover {
    animation: none;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    animation: scrollFloat 2.5s ease-in-out infinite;
}

.scroll-indicator span {
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-family: var(--font-display);
}

.scroll-arrow {
    width: 18px;
    height: 18px;
    border-right: 1px solid var(--accent-red-dark);
    border-bottom: 1px solid var(--accent-red-dark);
    transform: rotate(45deg);
}

@keyframes scrollFloat {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ===================== ABOUT — Reina2 Style Alternating Rows ===================== */
.section-about {
    background:
        radial-gradient(ellipse at 80% 20%, rgba(139, 26, 16, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(139, 26, 16, 0.05) 0%, transparent 50%),
        var(--bg-secondary);
}

.about-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    text-align: left;
    margin-top: 60px;
    position: relative;
}

.about-row-reverse {
    direction: rtl;
}

.about-row-reverse > * {
    direction: ltr;
}

.about-img-frame {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.about-img-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid var(--border-red);
    border-radius: var(--radius);
    z-index: 2;
    pointer-events: none;
    box-shadow: inset 0 0 30px rgba(139, 26, 16, 0.15);
}

.about-img-ornament {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 1px solid rgba(139, 26, 16, 0.15);
    border-radius: var(--radius);
    pointer-events: none;
}

.about-img-placeholder {
    width: 100%;
    aspect-ratio: 16 / 10;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(139, 26, 16, 0.12) 0%, transparent 60%),
        linear-gradient(135deg, #120e0e, #1a1212, #150e0e);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-family: var(--font-display);
}

.about-img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
    border-radius: var(--radius);
}

.about-row-title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--text-primary);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.about-row-text .about-lead {
    font-size: 1.05rem;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 14px;
}

.about-row-text p {
    color: var(--text-secondary);
    margin-bottom: 14px;
    line-height: 1.8;
    font-size: 0.92rem;
}

.about-row-highlight {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
    padding: 12px 20px;
    background: rgba(139, 26, 16, 0.08);
    border: 1px solid var(--border-red);
    border-radius: var(--radius);
    font-size: 0.85rem;
    color: var(--text-primary);
}

.about-row-highlight-icon {
    font-size: 1.3rem;
}

/* ===================== FEATURES ===================== */
.section-features {
    background:
        radial-gradient(ellipse at 20% 80%, rgba(92, 17, 8, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(139, 26, 16, 0.06) 0%, transparent 40%),
        var(--bg-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: left;
}

.feature-card {
    padding: 32px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-red), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.feature-card:hover {
    border-color: var(--border-red);
    box-shadow: 0 4px 20px rgba(139, 26, 16, 0.15), 0 0 40px rgba(139, 26, 16, 0.08);
    background: var(--bg-card-hover);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon-wrap {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 26, 16, 0.08);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    margin-bottom: 18px;
}

.feature-icon {
    font-size: 1.4rem;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===================== SHOWCASE ===================== */
.section-showcase {
    background:
        radial-gradient(ellipse at 60% 30%, rgba(139, 26, 16, 0.04) 0%, transparent 50%),
        var(--bg-secondary);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.showcase-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    transition: all var(--transition);
    cursor: pointer;
    aspect-ratio: 16 / 9;
}

.showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.showcase-card:hover {
    border-color: var(--accent-red);
    box-shadow: 0 4px 24px rgba(139, 26, 16, 0.15);
}

.showcase-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #120e0e, #1a1212);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 2px;
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px;
    background: linear-gradient(0deg, rgba(8, 8, 8, 0.95) 0%, transparent 100%);
    transform: translateY(10px);
    opacity: 0;
    transition: all var(--transition);
}

.showcase-card:hover .showcase-overlay {
    transform: translateY(0);
    opacity: 1;
}

.showcase-overlay h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-red-bright);
    margin-bottom: 4px;
}

.showcase-overlay p {
    font-size: 0.78rem;
    color: var(--text-secondary);
}

/* ===================== PREVIOUS SEASONS ===================== */
.section-seasons {
    background:
        radial-gradient(ellipse at 30% 70%, rgba(92, 17, 8, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(139, 26, 16, 0.06) 0%, transparent 40%),
        var(--bg-primary);
}

.seasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.season-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    text-align: left;
}

.season-card:hover {
    border-color: var(--border-red);
    box-shadow: 0 4px 20px rgba(139, 26, 16, 0.1);
}

.season-img-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #120e0e, #0e0a0a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 2px;
    border-bottom: 1px solid var(--border-subtle);
}

.season-info {
    padding: 22px;
}

.season-info h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-red-bright);
    margin-bottom: 10px;
}

.season-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Trust Stats */
.trust-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 40px 36px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
}

.trust-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-red-dark), var(--accent-red-bright), var(--accent-red-dark));
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 900;
    color: var(--accent-red-bright);
    text-shadow: 0 0 14px rgba(139, 26, 16, 0.3);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 1px;
}

/* ===================== ROADMAP ===================== */
.section-roadmap {
    background:
        radial-gradient(ellipse at 70% 40%, rgba(139, 26, 16, 0.04) 0%, transparent 50%),
        var(--bg-secondary);
}

.roadmap-timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 50px;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 23px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-red-bright), var(--accent-red-dark), var(--accent-red));
}

.roadmap-step {
    position: relative;
    padding: 0 0 44px 40px;
    text-align: left;
}

.roadmap-step:last-child {
    padding-bottom: 0;
}

.roadmap-marker {
    position: absolute;
    left: -27px;
    top: 2px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--accent-red);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    box-shadow: 0 0 16px rgba(139, 26, 16, 0.2);
}

.roadmap-marker span {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 900;
    color: var(--accent-red-bright);
}

.roadmap-content {
    padding: 22px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.roadmap-content:hover {
    border-color: var(--border-red);
}

.roadmap-content h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--accent-red-bright);
    margin-bottom: 8px;
}

.roadmap-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===================== FINAL CTA ===================== */
.section-final-cta {
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(139, 26, 16, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 50% 80%, rgba(92, 17, 8, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 30% 30%, rgba(181, 42, 28, 0.06) 0%, transparent 35%),
        var(--bg-primary);
    border-bottom: none;
}

.final-cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 26, 16, 0.18) 0%, rgba(181, 42, 28, 0.06) 40%, transparent 65%);
    pointer-events: none;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.08); }
}

.final-cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.final-cta-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.final-cta-text strong {
    color: var(--accent-red-bright);
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ===================== FOOTER ===================== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid rgba(139, 26, 16, 0.15);
    padding: 50px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(139, 26, 16, 0.1);
}

.footer-brand .footer-logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 900;
    display: block;
    margin-bottom: 14px;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(139, 26, 16, 0.2);
}

.footer-brand .footer-logo-img {
    height: 50px;
    width: auto;
    display: block;
    margin-bottom: 14px;
    filter: drop-shadow(0 0 8px rgba(139, 26, 16, 0.3));
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h5 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    font-size: 0.82rem;
    color: var(--text-muted);
    transition: color var(--transition);
}

.footer-links ul li a:hover {
    color: var(--accent-red-bright);
}

.footer-social h5 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    gap: 8px;
}

.social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    color: var(--text-muted);
    transition: all var(--transition);
}

.social-link:hover {
    border-color: var(--accent-red);
    color: var(--accent-red-bright);
    background: rgba(139, 26, 16, 0.08);
}

.footer-bottom {
    padding: 18px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* ===================== FIXED DISCORD BUTTON ===================== */
.fixed-discord {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 999;
    transition: transform var(--transition), filter var(--transition);
}

.fixed-discord:hover {
    transform: scale(1.05);
}

.fixed-discord-img {
    width: 288px;
    height: auto;
    display: block;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
    .about-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-row-reverse {
        direction: ltr;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .seasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 65px 0;
    }

    body::before {
        width: 500px;
        height: 300px;
        top: -100px;
    }

    body::after {
        width: 400px;
        height: 250px;
        bottom: -80px;
    }

    .navbar-inner {
        padding: 0 16px;
        height: 64px;
        justify-content: space-between;
    }

    .nav-logo-img {
        height: 40px;
    }

    .nav-links {
        display: none !important;
    }

    /* ---- Menü Toggle Butonu ---- */
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        background: rgba(139, 26, 16, 0.12);
        border: 1px solid rgba(139, 26, 16, 0.3);
        border-radius: 8px;
        color: #c8c0b4;
        cursor: pointer;
        padding: 8px 12px;
        font-size: 0.78rem;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        font-family: var(--font-body);
        transition: all 0.25s ease;
        z-index: 100;
        position: relative;
    }

    .menu-toggle:hover {
        background: rgba(139, 26, 16, 0.2);
        border-color: var(--accent-red-bright);
        color: var(--accent-red-bright);
    }

    .menu-toggle svg {
        flex-shrink: 0;
    }

    /* ---- Mobil Bottom Sheet Menü ---- */
    .mobile-menu {
        position: fixed;
        display: block !important;
        inset: 0;
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.35s ease, visibility 0.35s ease;
    }

    .mobile-menu.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .mobile-menu-backdrop {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.75);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
    }

    .mobile-menu-sheet {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 24px 20px 40px;
        background:
            linear-gradient(180deg, rgba(12, 8, 8, 0.99) 0%, rgba(5, 2, 2, 0.99) 100%);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-top: 2px solid var(--accent-red-bright);
        border-radius: 16px 16px 0 0;
        box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.8), 0 -2px 12px rgba(139, 26, 16, 0.2);
        transform: translateY(100%);
        transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
        max-height: 75vh;
        overflow-y: auto;
    }

    .mobile-menu.open .mobile-menu-sheet {
        transform: translateY(0);
    }

    .mobile-menu-handle {
        width: 36px;
        height: 4px;
        background: rgba(139, 26, 16, 0.4);
        border-radius: 2px;
        margin: 0 auto 6px;
        flex-shrink: 0;
    }

    .mobile-menu-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 16px 20px;
        font-family: var(--font-display);
        font-size: 1rem;
        font-weight: 700;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: #c0b8a8;
        background: rgba(139, 26, 16, 0.06);
        border: 1px solid rgba(139, 26, 16, 0.12);
        border-radius: 8px;
        transition: all 0.2s ease;
        flex-shrink: 0;
    }

    .mobile-menu-link:active,
    .mobile-menu-link:hover {
        background: rgba(139, 26, 16, 0.15);
        border-color: var(--accent-red-bright);
        color: var(--accent-red-bright);
    }

    .mobile-menu-link-gold {
        color: var(--accent-gold-bright);
        border-color: rgba(160, 128, 64, 0.2);
        background: rgba(160, 128, 64, 0.06);
    }

    .mobile-menu-link-red {
        background: rgba(139, 26, 16, 0.15);
        border: 1px solid rgba(181, 42, 28, 0.4);
        color: var(--accent-red-bright);
        box-shadow: 0 0 14px rgba(139, 26, 16, 0.12);
    }

    .mobile-menu-link-discord {
        color: #7289da;
        border-color: rgba(114, 137, 218, 0.2);
        background: rgba(114, 137, 218, 0.06);
    }

    .hero-title-name {
        letter-spacing: 3px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn {
        padding: 14px 28px;
        font-size: 0.85rem;
        letter-spacing: 1.5px;
    }

    .hero-content {
        padding: 0 16px;
    }

    .countdown-separator {
        display: none;
    }

    .countdown {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        max-width: 300px;
        margin: 0 auto 44px;
    }

    .countdown-item {
        min-width: auto;
        padding: 14px 12px;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .countdown-label {
        font-size: 0.7rem;
    }

    .launch-label {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }

    .launch-date-text {
        font-size: 0.9rem;
        letter-spacing: 1.5px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .seasons-grid {
        grid-template-columns: 1fr;
    }

    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 28px 18px;
    }

    .roadmap-timeline {
        padding-left: 40px;
    }

    .roadmap-step {
        padding-left: 30px;
    }

    .roadmap-marker {
        left: -20px;
        width: 40px;
        height: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .final-cta-buttons .btn {
        padding: 14px 28px;
        font-size: 0.85rem;
    }

    .launch-date-badge {
        padding: 12px 22px;
    }

    .fixed-discord {
        bottom: 16px;
        left: 16px;
    }

    .fixed-discord-img {
        width: 260px;
    }

    .scroll-indicator {
        bottom: 90px;
    }
}

@media (max-width: 480px) {
    .hero-title-name {
        font-size: 2.4rem;
        letter-spacing: 2px;
    }

    .hero-logo-img {
        max-width: 240px;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        line-height: 1.6;
        padding: 0 8px;
    }

    .hero-cta .btn {
        padding: 12px 22px;
        font-size: 0.78rem;
        letter-spacing: 1px;
    }

    .btn-icon {
        width: 14px;
        height: 14px;
    }

    .countdown {
        gap: 8px;
        max-width: 260px;
    }

    .countdown-item {
        min-width: auto;
        padding: 12px 10px;
    }

    .countdown-number {
        font-size: 1.7rem;
    }

    .countdown-label {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }

    .launch-date-badge {
        padding: 8px 16px;
        gap: 6px;
    }

    .launch-label {
        font-size: 0.68rem;
    }

    .launch-date-text {
        font-size: 0.82rem;
    }

    .navbar-inner {
        padding: 0 12px;
        height: 58px;
    }

    .nav-logo-img {
        height: 34px;
    }

    .trust-stats {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .fixed-discord {
        bottom: 12px;
        left: 12px;
    }

    .fixed-discord-img {
        width: 140px;
    }

    .scroll-indicator {
        bottom: 65px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-desc {
        font-size: 0.85rem;
        padding: 0 8px;
    }

    .final-cta-buttons .btn {
        padding: 12px 22px;
        font-size: 0.78rem;
    }

    .footer {
        padding: 35px 0 0;
    }

    .footer-brand .footer-logo-img {
        height: 40px;
    }
}

/* ===================== ANIMATIONS ===================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
