/* ===========================================
   RAVENS OF WAR — GOD TIER LANDING PAGE
   Premium CSS: particles, glow, glassmorphism,
   scroll animations, shimmer CTA, cinematic title
   =========================================== */

/* ===== VARIABLES ===== */
:root {
    /* Core palette */
    --black: #020202;
    --black-light: #080808;
    --black-mid: #111;
    --red: #7a1515;
    --red-light: #a52222;
    --red-dark: #3d0c0c;
    --gold: #c9a558;
    --gold-dark: #8a7032;
    --white: #fff;
    --gray-100: #eee;
    --gray-400: #888;
    --gray-600: #444;
    --gray-800: #222;
    --sky: #38bdf8;
    --sky-dark: #0c4a6e;

    /* Glow colors */
    --glow-red: rgba(122, 21, 21, 0.4);
    --glow-red-strong: rgba(165, 34, 34, 0.6);
    --glow-gold: rgba(201, 165, 88, 0.3);
    --glow-gold-strong: rgba(201, 165, 88, 0.5);

    /* Typography */
    --font-title: 'Cinzel', serif;
    --font-display: 'Cinzel Decorative', 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
}

/* ===== RESET ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    height: 100%;
    font-family: var(--font-body);
    background: var(--black);
    color: var(--gray-100);
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

button,
input {
    font-family: inherit;
    border: none;
    outline: none;
}

a {
    text-decoration: none;
    color: inherit;
}

::-webkit-scrollbar {
    width: 8px;
}

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

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

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

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px var(--black-mid) inset !important;
    -webkit-text-fill-color: white !important;
}

/* ===========================================
   KEYFRAME ANIMATIONS
   =========================================== */

/* Scroll reveal */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Particle rising */
@keyframes particleRise {
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    8% {
        opacity: 1;
    }

    85% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-110vh);
        opacity: 0;
    }
}

/* CTA button shimmer */
@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

/* Title glow pulse */
@keyframes titleGlow {

    0%,
    100% {
        text-shadow:
            0 1px 0 #000,
            0 2px 6px rgba(0, 0, 0, 0.9),
            0 0 20px rgba(182, 19, 19, 0.25),
            0 0 40px rgba(182, 19, 19, 0.08);
    }

    50% {
        text-shadow:
            0 1px 0 #000,
            0 2px 6px rgba(0, 0, 0, 0.9),
            0 0 30px rgba(182, 19, 19, 0.45),
            0 0 60px rgba(182, 19, 19, 0.18),
            0 0 90px rgba(182, 19, 19, 0.06);
    }
}

/* Stat value glow */
@keyframes statGlow {

    0%,
    100% {
        text-shadow: 0 0 8px rgba(201, 165, 88, 0.15);
    }

    50% {
        text-shadow: 0 0 16px rgba(201, 165, 88, 0.35);
    }
}

/* Play button pulse ring */
@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* Subtle float for icons */
@keyframes subtleFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* Fade in for gallery images */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===========================================
   SCROLL REVEAL SYSTEM
   =========================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delay classes */
.animate-on-scroll.delay-1 {
    transition-delay: 0.1s;
}

.animate-on-scroll.delay-2 {
    transition-delay: 0.2s;
}

.animate-on-scroll.delay-3 {
    transition-delay: 0.3s;
}

.animate-on-scroll.delay-4 {
    transition-delay: 0.4s;
}

.animate-on-scroll.delay-5 {
    transition-delay: 0.5s;
}

/* Accessibility: respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .particle {
        display: none !important;
    }

    .red {
        animation: none !important;
    }

    .submit-btn::before {
        animation: none !important;
    }
}

/* ===========================================
   NAVBAR
   =========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 56px;
    padding: 0 1.5rem;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.92), transparent);
    transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
    background: rgba(2, 2, 2, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(122, 21, 21, 0.15);
}

.navbar-inner {
    max-width: 1600px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.03);
}

.logo-diamond {
    width: clamp(1.5rem, 4vw, 2.5rem);
    height: clamp(1.5rem, 4vw, 2.5rem);
    background: linear-gradient(135deg, var(--gray-600), var(--black));
    border: 1px solid var(--gray-400);
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.3s;
}

.logo:hover .logo-diamond {
    border-color: var(--gold-dark);
}

.logo-diamond i,
.logo-diamond svg {
    width: clamp(1rem, 3vw, 1.82rem);
    height: clamp(1rem, 3vw, 1.8rem);
    color: var(--white);
    transform: rotate(-45deg);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-title {
    font-family: var(--font-title);
    font-size: clamp(0.8rem, 3vw, 1.5rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--white);
    white-space: nowrap;
}

.logo-sub {
    font-family: var(--font-title);
    font-size: clamp(0.5rem, 2vw, 1.1rem);
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--red-light);
    margin-top: 2px;
    white-space: nowrap;
}

/* Nav links */
.nav-menu {
    display: none;
    align-items: center;
    gap: clamp(0.6rem, 1.2vw, 1.5rem);
}

.nav-link {
    font-family: var(--font-title);
    font-size: clamp(0.7rem, 1.1vw, 1.05rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--white);
    transition: color 0.25s, text-shadow 0.25s;
    position: relative;
    white-space: nowrap;
}

/* Animated underline on hover */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--red-light);
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-link:hover {
    color: var(--red-light);
    text-shadow: 0 0 12px var(--glow-red);
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

.nav-discord {
    color: #7289DA;
    font-weight: 900;
}

.nav-discord:hover {
    color: #99aaf5;
    text-shadow: 0 0 12px rgba(114, 137, 218, 0.4);
}

.nav-discord::after {
    background: #7289DA;
}

/* Language toggle */
.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.6rem;
    border: 1px solid var(--gray-400);
    border-radius: 4px;
    background: transparent;
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s;
}

.lang-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 0 10px var(--glow-gold);
}

.lang-btn i {
    width: 0.9rem;
    height: 0.9rem;
}

/* Mobile toggle */
.menu-toggle {
    display: flex;
    background: none;
    color: var(--white);
    cursor: pointer;
    transition: color 0.2s;
}

.menu-toggle:hover {
    color: var(--red-light);
}

.menu-toggle i {
    width: 1.5rem;
    height: 1.5rem;
}

/* ===========================================
   MOBILE NAV
   =========================================== */
.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    background: rgba(2, 2, 2, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav.open {
    transform: translateX(0);
}

.mobile-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    color: var(--white);
    cursor: pointer;
    transition: color 0.2s, transform 0.2s;
}

.mobile-close:hover {
    color: var(--red-light);
    transform: rotate(90deg);
}

.mobile-close i {
    width: 1.75rem;
    height: 1.75rem;
}

.mobile-link {
    font-family: var(--font-title);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    transition: color 0.2s, letter-spacing 0.3s;
}

.mobile-link:hover {
    color: var(--red-light);
    letter-spacing: 0.2em;
}

/* ===========================================
   HERO SECTION
   =========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

@media (max-width: 767px) {
    .hero {
        min-height: auto;
        padding-bottom: 2rem;
    }
}

/* Background image with cinematic overlays */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(2, 2, 2, 0.95), rgba(2, 2, 2, 0.5) 50%, transparent),
        linear-gradient(to top, var(--black) 5%, transparent 40%);
    z-index: 1;
}

/* Cinematic vignette overlay */
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(2, 2, 2, 0.5) 100%);
    z-index: 2;
}

/* ===========================================
   HERO PARTICLES — Floating embers/ash
   =========================================== */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    bottom: -10px;
    border-radius: 50%;
    animation: particleRise linear infinite;
    will-change: transform;
}

/* ===========================================
   HERO WRAPPER — Flexbox vertical stacking
   =========================================== */
.hero-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 82px 1rem 0.25rem;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* ===========================================
   TITLE — Cinematic with glow
   =========================================== */
.title-section {
    text-align: center;
    flex-shrink: 0;
}

.main-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.8rem, 6vw, 4.2rem);
    line-height: 1;
    letter-spacing: 0.02em;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.8);
    margin-bottom: 0.6rem;
}

.white {
    color: var(--white);
    text-shadow:
        0 1px 0 #000,
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(255, 255, 255, 0.08);
}

.red {
    color: #b61313;
    animation: titleGlow 4s ease-in-out infinite;
}

/* ===========================================
   TRAILER BOX
   =========================================== */
.trailer-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    padding: 0.8rem 0;
}

.trailer-box {
    position: relative;
    width: 100%;
    max-width: min(90vw, 430px);
    aspect-ratio: 16 / 9;
    background: var(--black);
    border: 2px solid var(--gray-600);
    cursor: pointer;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.trailer-box:hover {
    border-color: var(--gray-400);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.6), 0 0 15px var(--glow-red);
}

/* Corner accents */
.corner {
    position: absolute;
    width: 12px;
    height: 12px;
    border-style: solid;
    border-color: var(--gold);
    border-width: 0;
    z-index: 2;
    transition: border-color 0.3s;
}

.trailer-box:hover .corner {
    border-color: var(--gold-dark);
}

.corner-tl {
    top: 0;
    left: 0;
    border-top-width: 2px;
    border-left-width: 2px;
}

.corner-tr {
    top: 0;
    right: 0;
    border-top-width: 2px;
    border-right-width: 2px;
}

.corner-bl {
    bottom: 0;
    left: 0;
    border-bottom-width: 2px;
    border-left-width: 2px;
}

.corner-br {
    bottom: 0;
    right: 0;
    border-bottom-width: 2px;
    border-right-width: 2px;
}

.label-rec,
.label-official {
    position: absolute;
    top: 6px;
    font-family: monospace;
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 2px 6px;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.label-rec {
    left: 6px;
    color: var(--red-light);
    border: 1px solid var(--red-light);
}

.label-official {
    right: 6px;
    color: var(--white);
}

/* Play button with pulse ring */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 2px solid var(--red);
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(122, 21, 21, 0.5);
    z-index: 3;
}

/* Animated pulse ring behind play button */
.play-btn::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--red-light);
    animation: pulseRing 2s ease-out infinite;
    pointer-events: none;
}

.trailer-box:hover .play-btn {
    background: var(--red-light);
    border-color: var(--red-light);
    box-shadow: 0 0 30px rgba(165, 34, 34, 0.7);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-btn i,
.play-btn svg {
    width: 1.2rem;
    height: 1.2rem;
    color: white !important;
    stroke: white !important;
    fill: white !important;
}

/* ===========================================
   CONTENT GRID (form + info)
   =========================================== */
.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: auto;
}

/* ===========================================
   FORM CARD — Glassmorphism
   =========================================== */
.form-card {
    background: rgba(8, 8, 8, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--gray-600);
    display: flex;
    flex-direction: column;
    transition: border-color 0.4s, box-shadow 0.4s;
}

.form-card:hover {
    border-color: rgba(122, 21, 21, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 20px var(--glow-red);
}

.form-header {
    background: rgba(17, 17, 17, 0.8);
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    border-bottom: 1px solid var(--gray-600);
}

.form-header i {
    width: 1rem;
    height: 1rem;
    color: var(--gold);
}

.form-header span {
    font-family: var(--font-title);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--white);
}

.form-body {
    padding: 0.65rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.45rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
}

.field label {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.15rem;
}

.field label i {
    width: 0.65rem;
    height: 0.65rem;
}

.field input {
    width: 100%;
    background: rgba(17, 17, 17, 0.9);
    border: 1px solid var(--gray-600);
    padding: 0.4rem 0.55rem;
    color: var(--white);
    font-size: 0.82rem;
    border-radius: 2px;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.field input::placeholder {
    color: var(--gray-400);
}

.field input:focus {
    border-color: var(--red);
    box-shadow: 0 0 8px var(--glow-red), inset 0 0 8px rgba(122, 21, 21, 0.05);
}

/* CTA Button with shimmer effect */
.submit-btn {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, var(--red-dark), var(--red), var(--red-dark));
    padding: 0.65rem;
    color: var(--white);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 0.25rem;
    overflow: hidden;
    border-radius: 2px;
}

/* Shimmer overlay */
.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
    animation: shimmer 4s ease-in-out infinite;
    pointer-events: none;
}

.submit-btn:hover {
    background: linear-gradient(135deg, var(--red), var(--red-light), var(--red));
    box-shadow: 0 0 25px var(--glow-red-strong), 0 4px 15px rgba(0, 0, 0, 0.4);
    transform: translateY(-1px);
}

.submit-btn:active {
    transform: translateY(0);
}

.form-msg {
    text-align: center;
    font-size: 0.7rem;
    color: var(--gold);
    min-height: 1rem;
    padding: 0.2rem;
}

/* ===========================================
   INFO COLUMN
   =========================================== */
.info-col {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.desc-box {
    background: rgba(0, 0, 0, 0.85);
    padding: 0.75rem;
    border-left: 3px solid var(--red);
    position: relative;
}

/* Subtle gradient overlay in desc box */
.desc-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(122, 21, 21, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.desc-box p {
    font-family: var(--font-title);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

/* Platform buttons */
.platforms {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.plat-btn {
    padding: 0.5rem;
    border: 2px solid;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

/* Subtle gradient shine on hover */
.plat-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.05) 50%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}

.plat-btn:hover::before {
    opacity: 1;
}

.plat-steam {
    background: rgba(12, 74, 110, 0.6);
    border-color: var(--sky-dark);
}

.plat-steam:hover {
    background: rgba(56, 189, 248, 0.2);
    border-color: var(--sky);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.15);
    transform: translateY(-2px);
}

.plat-itch {
    background: rgba(162, 11, 11, 0.35);
    border-color: var(--red);
}

.plat-itch:hover {
    background: rgba(139, 26, 26, 0.3);
    border-color: var(--red-light);
    box-shadow: 0 0 20px var(--glow-red);
    transform: translateY(-2px);
}

.plat-icon {
    width: 1.75rem;
    height: 1.75rem;
    filter: brightness(0) invert(1);
    transition: transform 0.3s;
}

.plat-btn:hover .plat-icon {
    transform: scale(1.15);
}

.plat-name {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
}

.plat-status {
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.plat-steam .plat-status {
    color: #7dd3fc;
}

.plat-itch .plat-status {
    color: #fca5a5;
}

.plat-download {
    background: rgba(184, 140, 56, 0.22);
    border-color: #b88c38;
}

.plat-download:hover {
    background: rgba(184, 140, 56, 0.30);
    border-color: #d8b45a;
    box-shadow: 0 0 20px rgba(184, 140, 56, 0.22);
    transform: translateY(-2px);
}

.plat-download .plat-status {
    color: #e6c987;
}

/* ===========================================
   STATS BAR — with glow effect
   =========================================== */
.stats-bar {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding: 0.65rem;
    margin-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    flex-wrap: wrap;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3), transparent);
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.25rem;
}

.stat-val {
    font-family: var(--font-title);
    font-weight: 900;
    font-size: clamp(1.5rem, 5vw, 1.75rem);
    color: var(--white);
    line-height: 1;
    animation: statGlow 3s ease-in-out infinite;
}

.stat-lbl {
    font-size: clamp(0.65rem, 2.5vw, 0.75rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-400);
}

.stat-sep {
    width: 1px;
    height: 1.5rem;
    background: linear-gradient(to bottom, transparent, var(--gray-600), transparent);
}

/* ===========================================
   SECTIONS (shared)
   =========================================== */
.section {
    padding: 4rem 1.5rem;
    position: relative;
}

.section--dark {
    background: var(--black);
}

.section--pattern {
    background: var(--black-light);
    position: relative;
}

.section--pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url('https://www.transparenttextures.com/patterns/dark-leather.png');
    pointer-events: none;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Section title with ornamental divider */
.section-title {
    font-family: var(--font-title);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 900;
    text-align: center;
    color: var(--white);
    margin-bottom: 3rem;
    letter-spacing: 0.05em;
}

.section-title::after {
    content: '';
    display: block;
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--red), var(--gold), var(--red), transparent);
    margin: 1rem auto 0;
}

/* ===========================================
   ORNAMENTAL DIVIDERS between sections
   =========================================== */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.section-divider::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--red-dark), var(--gold-dark), var(--red-dark), transparent);
}

.divider-diamond {
    width: 8px;
    height: 8px;
    background: var(--red);
    transform: rotate(45deg);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 8px var(--glow-red);
}

/* ===========================================
   FEATURES GRID (Info Section)
   =========================================== */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

/* Feature cards with glassmorphism + glow border */
.feature-card {
    background: rgba(8, 8, 8, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--gray-600);
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.feature-card:hover {
    border-color: var(--red);
    transform: translateY(-8px);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 25px var(--glow-red),
        inset 0 1px 0 rgba(201, 165, 88, 0.08);
}

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--red-dark), var(--red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s, box-shadow 0.4s;
    box-shadow: 0 4px 15px rgba(122, 21, 21, 0.3);
}

.feature-card:hover .feature-icon {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 8px 25px var(--glow-red-strong);
}

.feature-icon i {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--white);
}

.feature-title {
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.6;
}

/* ===========================================
   COMMUNITY GRID
   =========================================== */
.community-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.community-card {
    display: block;
    padding: 2rem;
    border: 2px solid;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Subtle radial glow on hover */
.community-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.community-card:hover::after {
    opacity: 1;
}

/* Discord */
.community-card--discord {
    background: rgba(88, 101, 242, 0.08);
    border-color: rgba(88, 101, 242, 0.25);
}

.community-card--discord::after {
    background: radial-gradient(circle, rgba(88, 101, 242, 0.08) 0%, transparent 70%);
}

.community-card--discord:hover {
    background: rgba(88, 101, 242, 0.15);
    border-color: #5865F2;
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(88, 101, 242, 0.15);
}

/* Instagram */
.community-card--instagram {
    background: rgba(225, 48, 108, 0.08);
    border-color: rgba(225, 48, 108, 0.25);
}

.community-card--instagram::after {
    background: radial-gradient(circle, rgba(225, 48, 108, 0.08) 0%, transparent 70%);
}

.community-card--instagram:hover {
    background: rgba(225, 48, 108, 0.15);
    border-color: #E1306C;
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(225, 48, 108, 0.15);
}

/* YouTube */
.community-card--youtube {
    background: rgba(255, 0, 0, 0.06);
    border-color: rgba(255, 0, 0, 0.25);
}

.community-card--youtube::after {
    background: radial-gradient(circle, rgba(255, 0, 0, 0.08) 0%, transparent 70%);
}

.community-card--youtube:hover {
    background: rgba(255, 0, 0, 0.12);
    border-color: #FF0000;
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(255, 0, 0, 0.12);
}

.community-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s;
}

.community-card:hover .community-icon {
    transform: scale(1.15);
    animation: subtleFloat 2s ease-in-out infinite;
}

.community-icon i,
.community-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--white);
}

.community-name {
    font-family: var(--font-title);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.community-desc {
    font-size: 0.85rem;
    color: var(--gray-400);
    line-height: 1.5;
}

/* ===========================================
   CREATOR SECTION
   =========================================== */
.creator-card {
    background: rgba(8, 8, 8, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--gray-600);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    transition: border-color 0.4s, box-shadow 0.4s;
}

.creator-card:hover {
    border-color: rgba(122, 21, 21, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.creator-avatar {
    position: relative;
}

.creator-avatar-inner {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gray-600);
    transition: border-color 0.4s, box-shadow 0.4s;
}

.creator-card:hover .creator-avatar-inner {
    border-color: var(--red);
    box-shadow: 0 0 20px var(--glow-red);
}

.creator-avatar-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.creator-avatar-inner i {
    width: 3rem;
    height: 3rem;
    color: var(--white);
}

.creator-badge {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--red-dark), var(--red));
    padding: 0.25rem 0.75rem;
    font-family: var(--font-title);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.1em;
    box-shadow: 0 4px 12px rgba(122, 21, 21, 0.4);
}

.creator-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.creator-name {
    font-family: var(--font-title);
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 0.05em;
}

.creator-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    color: var(--gray-400);
}

.creator-location i {
    width: 0.9rem;
    height: 0.9rem;
}

.creator-role {
    font-family: var(--font-title);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 0.15em;
}

.creator-quote {
    font-size: 0.9rem;
    color: var(--gray-100);
    line-height: 1.7;
    font-style: italic;
    max-width: 700px;
    margin-top: 0.5rem;
    text-align: justify;
    position: relative;
    padding-left: 1rem;
    border-left: 2px solid rgba(122, 21, 21, 0.3);
}

.creator-showcase {
    margin-top: 1.5rem;
}

.creator-showcase-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s, box-shadow 0.4s;
}

.creator-showcase-img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.6);
}

@media (min-width: 1024px) {
    .creator-showcase {
        margin-top: 0;
        flex-shrink: 0;
    }

    .creator-showcase-img {
        max-width: 450px;
    }
}

/* ===========================================
   GALLERY MODAL
   =========================================== */
.gallery-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
}

.gallery-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.gallery-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    max-width: 1400px;
    padding: 1rem;
}

.gallery-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.gallery-close:hover {
    background: var(--red);
    border-color: var(--red);
    transform: rotate(90deg);
}

.gallery-close i {
    width: 1.5rem;
    height: 1.5rem;
}

.gallery-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 3rem 4rem;
    position: relative;
}

.gallery-image {
    max-width: 100%;
    max-height: calc(100vh - 180px);
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

.gallery-counter {
    margin-top: 1rem;
    font-family: var(--font-title);
    font-size: 0.9rem;
    color: var(--gray-400);
    letter-spacing: 0.1em;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.gallery-nav:hover {
    background: var(--red);
    border-color: var(--red);
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav i {
    width: 1.5rem;
    height: 1.5rem;
}

.gallery-prev {
    left: 1rem;
}

.gallery-next {
    right: 1rem;
}

.gallery-thumbnails {
    display: flex;
    gap: 0.5rem;
    padding: 1rem;
    overflow-x: auto;
    max-width: 100%;
    scrollbar-width: thin;
    scrollbar-color: var(--gray-600) transparent;
}

.gallery-thumb {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s;
    border: 2px solid transparent;
    flex-shrink: 0;
}

.gallery-thumb:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.gallery-thumb.active {
    opacity: 1;
    border-color: var(--red);
    box-shadow: 0 0 10px var(--glow-red);
}

@media (max-width: 768px) {
    .gallery-content {
        padding: 4rem 1rem 1rem;
    }

    .gallery-nav {
        width: 2.5rem;
        height: 2.5rem;
    }

    .gallery-nav i {
        width: 1.2rem;
        height: 1.2rem;
    }

    .gallery-prev {
        left: 0.5rem;
    }

    .gallery-next {
        right: 0.5rem;
    }

    .gallery-thumb {
        width: 50px;
        height: 50px;
    }

    .gallery-image {
        max-height: calc(100vh - 200px);
    }
}

/* ===========================================
   FOOTER — Enhanced with gradient top
   =========================================== */
.site-footer {
    background: var(--black-mid);
    border-top: 1px solid rgba(122, 21, 21, 0.2);
    padding: 2rem 1.5rem;
    position: relative;
}

/* Gradient glow line at top of footer */
.site-footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--red-dark), var(--gold-dark), var(--red-dark), transparent);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-brand {
    font-family: var(--font-title);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.1em;
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--gray-400);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--gray-400);
    transition: color 0.25s, transform 0.25s;
    display: flex;
}

.footer-links a:hover {
    color: var(--red-light);
    transform: translateY(-2px);
}

.footer-links i,
.footer-links svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* ===========================================
   RESPONSIVE — Tablet+ (768px)
   =========================================== */
@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }

    .menu-toggle {
        display: none;
    }

    .content-grid {
        grid-template-columns: 1fr 1.2fr;
        align-items: stretch;
    }

    .info-col {
        justify-content: flex-end;
    }

    .stats-bar {
        gap: 2rem;
    }

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

    .community-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .creator-card {
        flex-direction: row;
        text-align: left;
        padding: 3rem;
    }

    .creator-info {
        align-items: flex-start;
    }

    .creator-location {
        justify-content: flex-start;
    }

    .creator-quote {
        text-align: justify;
    }

    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* ===========================================
   RESPONSIVE — Desktop (1200px)
   =========================================== */
@media (min-width: 1200px) {
    .hero-wrapper {
        padding: 100px 2rem 0.5rem;
    }

    .content-grid {
        gap: 1.5rem;
    }

    .desc-box p {
        font-size: 0.95rem;
    }

    .section {
        padding: 5rem 2rem;
    }

    .feature-card {
        padding: 2.5rem;
    }

    .community-card {
        padding: 2.5rem;
    }
}

/* ===========================================
   RESPONSIVE — Tall screens (900px+)
   =========================================== */
@media (min-height: 1000px) {
    .main-title {
        margin-bottom: 0.5rem;
    }

    .trailer-section {
        padding: 1rem 0;
    }

    .trailer-box {
        max-width: 550px;
    }

    .content-grid {
        gap: 1rem;
    }

    .form-body {
        gap: 0.6rem;
    }

    .plat-btn {
        padding: 0.75rem;
    }

    .stats-bar {
        padding: 0.75rem;
    }

    .stat-val {
        font-size: clamp(1rem, 3vw, 1.75rem);
    }
}

/* ===========================================
   RESPONSIVE — Short screens (750px-)
   =========================================== */
@media (max-height: 750px) {
    .main-title {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
    }

    .trailer-box {
        max-width: 380px;
    }

    .form-header {
        padding: 0.35rem;
    }

    .form-body {
        padding: 0.4rem 0.6rem;
        gap: 0.3rem;
    }

    .field input {
        padding: 0.4rem 0.5rem;
    }

    .submit-btn {
        padding: 0.5rem;
    }

    .desc-box {
        padding: 0.5rem;
    }

    .desc-box p {
        font-size: 0.75rem;
    }

    .plat-btn {
        padding: 0.4rem;
    }

    .plat-icon {
        width: 1.25rem;
        height: 1.25rem;
    }

    .plat-name {
        font-size: 0.8rem;
    }

    .stats-bar {
        padding: 0.3rem;
        gap: 0.75rem;
    }

    .stat-val {
        font-size: clamp(0.8rem, 2vw, 1.1rem);
    }

    .stat-sep {
        height: 1rem;
    }
}

/* ===========================================
   RESPONSIVE — Very short screens (650px-)
   =========================================== */
@media (max-height: 650px) {
    .hero-wrapper {
        padding-top: 50px;
    }

    .main-title {
        font-size: clamp(1.25rem, 4vw, 2rem);
    }

    .trailer-section {
        padding: 0.25rem 0;
    }

    .trailer-box {
        max-width: 320px;
    }

    .corner {
        width: 8px;
        height: 8px;
    }

    .label-rec,
    .label-official {
        font-size: 0.5rem;
        padding: 1px 4px;
    }

    .play-btn {
        width: 2.5rem;
        height: 2.5rem;
    }

    .form-header span {
        font-size: 0.7rem;
    }

    .form-body {
        gap: 0.25rem;
    }

    .field label {
        font-size: 0.5rem;
    }

    .field input {
        padding: 0.35rem 0.4rem;
        font-size: 0.8rem;
    }

    .desc-box p {
        font-size: 0.7rem;
        line-height: 1.3;
    }

    .plat-icon {
        width: 1rem;
        height: 1rem;
    }

    .plat-name {
        font-size: 0.7rem;
    }

    .plat-status {
        font-size: 0.5rem;
    }
}

/* ===========================================
   RESPONSIVE — 1440p+ screens
   =========================================== */
@media (min-width: 2000px) {
    .hero-wrapper {
        max-width: 1800px;
        padding: 120px 3rem 1rem;
    }

    .main-title {
        font-size: 5rem;
        margin-bottom: 1.5rem;
    }

    .trailer-section {
        padding: 1.5rem 0;
    }

    .trailer-box {
        max-width: 700px;
    }

    .content-grid {
        gap: 2rem;
        /* Keep margin-top: auto to anchor content to the bottom of the viewport */
    }

    .form-header {
        padding: 1rem;
    }

    .form-header span {
        font-size: 1.1rem;
    }

    .form-body {
        padding: 1.25rem 1.5rem;
        gap: 1rem;
    }

    .field label {
        font-size: 0.75rem;
    }

    .field input {
        padding: 0.75rem 0.85rem;
        font-size: 1rem;
    }

    .submit-btn {
        padding: 0.9rem;
        font-size: 0.9rem;
    }

    .desc-box {
        padding: 1.25rem;
    }

    .desc-box p {
        font-size: 1.15rem;
        line-height: 1.5;
    }

    .platforms {
        gap: 1rem;
    }

    .plat-btn {
        padding: 1rem;
    }

    .plat-icon {
        width: 2.25rem;
        height: 2.25rem;
    }

    .plat-name {
        font-size: 1.25rem;
    }

    .plat-status {
        font-size: 0.7rem;
    }

    .stats-bar {
        padding: 1.25rem;
        gap: 3.5rem;
    }

    .stat-val {
        font-size: 2.25rem;
    }

    .stat-lbl {
        font-size: 0.6rem;
    }

    .stat-sep {
        height: 2rem;
    }
}

/* ===========================================
   RESPONSIVE — 4K screens
   =========================================== */
@media (min-width: 3000px) {
    .hero-wrapper {
        max-width: 2400px;
    }

    .main-title {
        font-size: 6rem;
    }

    .trailer-box {
        max-width: 800px;
    }

    .form-body {
        padding: 1.25rem 1.5rem;
        gap: 1rem;
    }

    .desc-box p {
        font-size: 1.25rem;
    }

    .stat-val {
        font-size: 2.5rem;
    }
}

/* ===========================================
   LEGAL MODAL
   =========================================== */
.legal-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.legal-modal.active {
    display: flex;
}

.legal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.legal-container {
    position: relative;
    z-index: 1;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid var(--gray-600);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px var(--glow-red);
    width: 100%;
    max-width: 600px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    border-radius: 4px;
    overflow: hidden;
    animation: fadeIn 0.3s ease;
}

.legal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    color: var(--white);
    cursor: pointer;
    transition: color 0.2s;
}

.legal-close:hover {
    color: var(--red-light);
}

.legal-close i {
    width: 1.5rem;
    height: 1.5rem;
}

.legal-content {
    padding: 2.5rem 2rem;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--red-dark) transparent;
}

.legal-content h2 {
    font-family: var(--font-title);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(122, 21, 21, 0.3);
    padding-bottom: 0.5rem;
}

.legal-text-body h3 {
    font-family: var(--font-title);
    font-size: 1rem;
    color: var(--gold);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-text-body p {
    font-size: 0.85rem;
    color: var(--gray-100);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.legal-text-body strong {
    color: var(--white);
}

/* ===========================================
   NEWS SECTION — Dev Blog styling
   =========================================== */
.news-card {
    background: rgba(8, 8, 8, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--gray-600);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), inset 0 0 30px rgba(182, 19, 19, 0.05);
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.4s, box-shadow 0.4s;
}

.news-card:hover {
    border-color: rgba(201, 165, 88, 0.4);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(201, 165, 88, 0.15);
}

.news-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-title);
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.news-header i,
.news-header svg {
    width: 1.1rem;
    height: 1.1rem;
    color: var(--gold);
}

.news-title {
    font-family: var(--font-title);
    font-size: clamp(1.2rem, 3vw, 1.7rem);
    color: var(--white);
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    letter-spacing: 0.02em;
}

.news-body {
    font-size: 0.9rem;
    color: var(--gray-100);
    line-height: 1.75;
}

.news-body p {
    margin-bottom: 1.25rem;
}

.news-body p:last-child {
    margin-bottom: 0;
}

.news-body strong {
    color: var(--white);
}

.news-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    color: var(--gray-400);
    gap: 1rem;
}

.news-spinner {
    width: 2.2rem;
    height: 2.2rem;
    border: 3px solid rgba(182, 19, 19, 0.1);
    border-top-color: var(--red);
    border-radius: 50%;
    animation: news-spin 1s linear infinite;
}

@keyframes news-spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .news-card {
        padding: 1.5rem 1.25rem;
    }
}

/* ===========================================
   PRELOADER — AAA Entrance
   =========================================== */
.preloader {
    position: fixed;
    inset: 0;
    background: #050505;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s;
    opacity: 1;
    visibility: visible;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.preloader-seal {
    width: 4rem;
    height: 4rem;
    border: 2px solid rgba(182, 19, 19, 0.2);
    border-top-color: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: news-spin 1.2s cubic-bezier(0.5, 0.1, 0.5, 0.9) infinite;
    box-shadow: 0 0 15px rgba(182, 19, 19, 0.25);
    background: rgba(0, 0, 0, 0.4);
}

.preloader-seal i,
.preloader-seal svg {
    width: 1.8rem;
    height: 1.8rem;
    color: var(--white);
    animation: preloader-counter-spin 1.2s cubic-bezier(0.5, 0.1, 0.5, 0.9) infinite;
}

@keyframes preloader-counter-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

.preloader-bar {
    width: 120px;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1px;
    overflow: hidden;
    position: relative;
}

.preloader-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 40%;
    background: linear-gradient(90deg, transparent, var(--red), var(--gold), var(--red), transparent);
    animation: loaderProgress 1.5s infinite ease-in-out;
}

@keyframes loaderProgress {
    0% { left: -50%; }
    100% { left: 120%; }
}