/* =====================================================
   CORE - VARIABLES & RESET
===================================================== */

:root {
    --bg-main: #070505;
    --bg-soft: rgb(7, 4, 4);
    --bg-card: rgba(15, 10, 10, 0.85);

    --primary: #ff1a1a;
    --primary-soft: rgba(255, 26, 26, 0.25);

    --border-soft: rgba(255, 26, 26, 0.3);

    --text-main: #d6d6d6;
    --text-secondary: #c2bfbf;
    --text-muted: #e6e3e3;

    --header-height: 64px;
    --banner-height: 52px;
}

/* =====================================================
   RESET
===================================================== */

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

/* =====================================================
   HTML / BODY – GLOBAL LAYER
===================================================== */

html, body {
    min-height: 100%;
}

body {
    display: flex;
    flex-direction: column;

    background: transparent;
    color: var(--text-main);
    font-family: "Segoe UI", Inter, Arial, sans-serif;

    overflow-x: hidden;
}

/* =====================================================
   GLOBAL BACKGROUND (FULL SCREEN)
===================================================== */

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;

    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.75)
    );
}


/* =====================================================
   MAIN LAYOUT
===================================================== */

main {
    flex: 1;
    width: 100%;
    padding-top: calc(var(--header-height) + var(--banner-height));
}

/* =====================================================
   SECTIONS – FULL WIDTH
===================================================== */

section {
    width: 100%;
    position: relative;
}

/* =====================================================
   SECTION SPACING
===================================================== */

.section {
    padding: 90px 0;
}

/* =====================================================
   INNER CONTAINER (CONTENT BREITE)
===================================================== */

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

/* =====================================================
   HERO – FULL WIDTH VISUAL
===================================================== */

.hero {
    padding: 160px 0 140px;

    background:
        radial-gradient(
            700px circle at center,
            rgba(255, 30, 30, 0.22),
            rgba(0,0,0,0.65)
        );
}

.hero .container {
    text-align: center;
}

/* =====================================================
   PANELS / SECTIONS (GLASS EFFECT)
===================================================== */

.section-soft {
    background: linear-gradient(
        180deg,
        rgba(12, 6, 6, 0.6),
        rgba(8, 4, 4, 0.75)
    );
    backdrop-filter: blur(2px);
}

/* =====================================================
   CARDS
===================================================== */

.card {
    background: linear-gradient(
        145deg,
        rgba(18, 10, 10, 0.85),
        rgba(8, 4, 4, 0.9)
    );

    border: 1px solid var(--border-soft);
    border-radius: 16px;

    padding: 32px;

    backdrop-filter: blur(3px);

    box-shadow:
        0 15px 50px rgba(0,0,0,0.75),
        0 0 30px rgba(255,26,26,0.12);
}

/* =====================================================
   CTA SECTION
===================================================== */

.cta-section {
    padding: 120px 0;

    background:
        radial-gradient(
            600px circle at center,
            rgba(255, 0, 0, 0.08),
            transparent 70%
        );
}

/* =====================================================
   CTA BOX
===================================================== */

.cta-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 50px;
    text-align: center;

    background: linear-gradient(
        145deg,
        rgba(15, 15, 15, 0.95),
        rgba(5, 5, 5, 0.98)
    );

    border-radius: 18px;
    border: 1px solid rgba(255, 0, 0, 0.35);

    box-shadow:
        0 0 0 1px rgba(255, 0, 0, 0.15),
        0 25px 80px rgba(0, 0, 0, 0.8),
        0 0 45px rgba(255, 0, 0, 0.25);
}

/* =====================================================
   FOOTER
===================================================== */

.site-footer {
    margin-top: auto;
    width: 100%;
}

/* =====================================================
   FORUM SPECIAL CASE
===================================================== */

body.forum-page::before {
    display: none !important;
}

body.forum-page {
    background: #0a0a0f !important;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (min-width: 1600px) {
    .container {
        max-width: 1400px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }

    .hero {
        padding: 120px 0 100px;
    }

    .cta-box {
        padding: 45px 26px;
    }
}
