/* =========================================================
   NIX — PREMIUM GAMING WEBSITE
   CSS COMPLETO / MODERNO
========================================================= */

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

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #fff;
    overflow-x: hidden;
    background: #030303;
}

/* =========================================================
   VARIABLES
========================================================= */

:root {

    /* Cores principais */
    --red: #ff2020;
    --red-dark: #8f0000;
    --red-light: #ff4545;

    --orange: #ff6a00;

    --gold: #ffd43b;
    --gold-light: #ffe98a;

    --black: #030303;
    --black-soft: #080808;
    --black-card: rgba(15, 15, 15, .72);

    --white: #ffffff;
    --gray: #bdbdbd;
    --gray-dark: #777;

    /* Gradientes */
    --gradient-red:
        linear-gradient(
            135deg,
            #650000 0%,
            #c40000 40%,
            #ff2525 75%,
            #ff6a00 100%
        );

    --gradient-button:
        linear-gradient(
            180deg,
            #ff3d3d 0%,
            #e00000 50%,
            #9e0000 100%
        );

    --gradient-gold:
        linear-gradient(
            135deg,
            #fff1a6,
            #ffd43b,
            #ff9f00
        );

    --gradient-dark:
        linear-gradient(
            135deg,
            #030303,
            #120000,
            #200000
        );

    /* Glass */
    --glass:
        rgba(15, 15, 15, .68);

    --glass-light:
        rgba(255, 255, 255, .06);

    --border:
        rgba(255, 60, 60, .22);

    /* Shadows */
    --shadow:
        0 20px 60px rgba(0, 0, 0, .45);

    --red-glow:
        0 0 35px rgba(255, 20, 20, .35);

    /* Transitions */
    --transition:
        all .35s cubic-bezier(.2, .8, .2, 1);
}

/* =========================================================
   BODY BACKGROUND
========================================================= */

body::before {

    content: "";

    position: fixed;

    inset: 0;

    background:
        linear-gradient(
            rgba(0, 0, 0, .62),
            rgba(0, 0, 0, .88)
        ),
        radial-gradient(
            circle at 50% 0%,
            rgba(130, 0, 0, .45),
            transparent 55%
        ),
        url("images/background.jpg")
        center center / cover no-repeat;

    z-index: -999;
    pointer-events: none;
}

/* Luz vermelha ambiente */

body::after {

    content: "";

    position: fixed;

    width: 700px;
    height: 700px;

    top: -350px;
    left: 50%;

    transform: translateX(-50%);

    background:
        radial-gradient(
            circle,
            rgba(255, 0, 0, .13),
            transparent 70%
        );

    filter: blur(40px);

    z-index: -998;

    pointer-events: none;
}

/* =========================================================
   SCROLLBAR
========================================================= */

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

::-webkit-scrollbar-track {
    background: #030303;
}

::-webkit-scrollbar-thumb {

    background:
        linear-gradient(
            #ff2222,
            #8b0000
        );

    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff3434;
}

/* =========================================================
   SECTIONS
========================================================= */

section {
    position: relative;
    background: transparent !important;
}

.hero,
.features,
.world,
.classes,
.download,
.donate,
.footer {
    position: relative;
    background: transparent !important;
}

/* Overlay */

.hero::before,
.features::before,
.world::before,
.classes::before,
.download::before,
.donate::before,
.footer::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, .12),
            rgba(0, 0, 0, .35)
        );

    z-index: -1;
    pointer-events: none;
}

/* =========================================================
   CONTAINER
========================================================= */

.container {

    width: min(1200px, 92%);

    margin: 0 auto;
}

/* =========================================================
   NAVBAR
========================================================= */

.navbar {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    background:
        rgba(5, 5, 5, .72);

    backdrop-filter:
        blur(20px);

    -webkit-backdrop-filter:
        blur(20px);

    border-bottom:
        1px solid rgba(255, 40, 40, .18);

    transition:
        var(--transition);
}

.navbar::after {

    content: "";

    position: absolute;

    bottom: -1px;
    left: 0;

    width: 100%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 30, 30, .7),
            transparent
        );

    opacity: .7;
}

.navbar.scrolled {

    background:
        rgba(4, 4, 4, .94);

    box-shadow:
        0 10px 40px rgba(0, 0, 0, .55);
}

.nav-container {

    min-height: 76px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}

/* Logo */

.nav-logo {

    text-decoration: none;

    position: relative;
}

.nav-logo h2 {

    font-family: 'Cinzel', serif;

    font-size: 1.65rem;

    letter-spacing: 2px;

    font-weight: 800;

    background:
        linear-gradient(
            135deg,
            #ff2222,
            #ff6a00,
            #ffd43b
        );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-clip: text;

    filter:
        drop-shadow(
            0 0 12px rgba(255, 30, 0, .35)
        );
}

/* Menu */

.nav-menu {

    display: flex;

    align-items: center;

    gap: 2rem;
}

.nav-link {

    position: relative;

    color: #eee;

    text-decoration: none;

    font-size: .95rem;

    font-weight: 500;

    transition: var(--transition);
}

.nav-link::before {

    content: "";

    position: absolute;

    left: 50%;
    bottom: -9px;

    width: 0;
    height: 2px;

    transform: translateX(-50%);

    background:
        linear-gradient(
            90deg,
            #ff2222,
            #ff8a00
        );

    box-shadow:
        0 0 10px rgba(255, 30, 0, .7);

    transition: var(--transition);
}

.nav-link:hover {

    color: #fff;

    text-shadow:
        0 0 15px rgba(255, 40, 40, .45);
}

.nav-link:hover::before {
    width: 100%;
}

/* Account */

.account-btn {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: .65rem 1.4rem;

    border-radius: 50px;

    color: #fff;

    text-decoration: none;

    font-weight: 600;

    background:
        var(--gradient-button);

    border:
        1px solid rgba(255, 100, 100, .35);

    box-shadow:
        0 0 20px rgba(255, 0, 0, .22);

    transition: var(--transition);
}

.account-btn:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 0 25px rgba(255, 0, 0, .45),
        0 10px 30px rgba(0, 0, 0, .4);
}

/* Hamburger */

.hamburger {

    display: none;

    flex-direction: column;

    justify-content: center;

    gap: 5px;

    width: 42px;
    height: 42px;

    padding: 8px;

    cursor: pointer;

    border-radius: 10px;

    background:
        rgba(255, 255, 255, .05);

    border:
        1px solid rgba(255, 255, 255, .08);
}

.hamburger span {

    width: 100%;
    height: 2px;

    background: #fff;

    border-radius: 10px;

    transition: .3s;
}

/* =========================================================
   HERO
========================================================= */

.hero {

    min-height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    overflow: hidden;

    padding:
        120px 20px 80px;
}

.hero-background {

    position: absolute;

    inset: 0;

    background:
        url("hero-bg.jpg")
        center / cover no-repeat;

    opacity: .35;

    z-index: -3;
}

.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at center,
            rgba(120, 0, 0, .20),
            rgba(0, 0, 0, .75) 70%
        );

    z-index: -2;
}

/* Red glow */

.hero::after {

    content: "";

    position: absolute;

    width: 800px;
    height: 800px;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%);

    background:
        radial-gradient(
            circle,
            rgba(255, 0, 0, .10),
            transparent 68%
        );

    pointer-events: none;

    z-index: -1;
}

/* Particles */

.particles {

    position: absolute;

    inset: 0;

    z-index: 0;

    pointer-events: none;
}

.particle {

    position: absolute;

    width: 3px;
    height: 3px;

    background: #ffd43b;

    border-radius: 50%;

    box-shadow:
        0 0 10px #ff8c00;

    opacity: .6;

    animation:
        float 6s ease-in-out infinite;
}

@keyframes float {

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

    50% {
        transform:
            translateY(-25px)
            rotate(180deg);
    }
}

/* Hero Content */

.hero-content {

    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 900px;

    margin: auto;
}

/* Hero Logo */

.hero-logo {

    display: flex;

    justify-content: center;

    margin-bottom: 25px;
}

.hero-logo img {

    width: 420px;

    max-width: 90%;

    height: auto;

    filter:
        drop-shadow(
            0 0 15px rgba(0, 140, 255, .70)
        )
        drop-shadow(
            0 0 40px rgba(0, 80, 255, .40)
        );

    animation:
        logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {

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

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

/* Game title */

.game-title {

    font-family: 'Cinzel', serif;

    font-size:
        clamp(2.5rem, 6vw, 5rem);

    line-height: 1.05;

    font-weight: 900;

    letter-spacing: 2px;

    margin-bottom: 12px;

    background:
        linear-gradient(
            135deg,
            #ff2020,
            #ff5b00,
            #ffd43b
        );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-clip: text;

    filter:
        drop-shadow(
            0 0 20px rgba(255, 40, 0, .4)
        );

    animation:
        titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {

    from {
        filter:
            drop-shadow(
                0 0 12px rgba(255, 30, 0, .3)
            );
    }

    to {
        filter:
            drop-shadow(
                0 0 28px rgba(255, 80, 0, .6)
            );
    }
}

.game-subtitle {

    font-family: 'Cinzel', serif;

    font-size:
        clamp(.9rem, 2vw, 1.35rem);

    color: var(--gold);

    letter-spacing:
        clamp(2px, 1vw, 5px);

    margin-bottom: 25px;

    text-transform: uppercase;
}

.hero-slogan {

    font-size:
        clamp(1.4rem, 3vw, 2rem);

    font-weight: 700;

    margin-bottom: 15px;
}

.highlight {

    color: var(--red-light);

    text-shadow:
        0 0 15px rgba(255, 0, 0, .45);
}

.hero-description {

    max-width: 720px;

    margin:
        0 auto 35px;

    color: #d0d0d0;

    font-size:
        clamp(1rem, 2vw, 1.15rem);

    line-height: 1.8;
}

/* =========================================================
   BUTTONS
========================================================= */

.hero-buttons,
.download-buttons {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 15px;

    flex-wrap: wrap;
}

.btn {

    position: relative;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    min-height: 52px;

    padding:
        .85rem 1.8rem;

    border-radius: 50px;

    border: 1px solid transparent;

    font-size: 1rem;

    font-weight: 700;

    color: #fff;

    text-decoration: none;

    cursor: pointer;

    overflow: hidden;

    transition: var(--transition);
}

.btn::before {

    content: "";

    position: absolute;

    top: 0;
    left: -100%;

    width: 60%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.22),
            transparent
        );

    transform:
        skewX(-20deg);

    transition: .6s;
}

.btn:hover::before {
    left: 140%;
}

.btn-primary {

    background:
        var(--gradient-button);

    border-color:
        rgba(255, 100, 100, .35);

    box-shadow:
        0 0 20px rgba(255, 0, 0, .30);
}

.btn-primary:hover {

    transform:
        translateY(-4px)
        scale(1.02);

    box-shadow:
        0 0 30px rgba(255, 0, 0, .55),
        0 15px 35px rgba(0, 0, 0, .4);
}

.btn-secondary {

    background:
        rgba(255,255,255,.06);

    border:
        1px solid rgba(255,255,255,.16);

    backdrop-filter:
        blur(10px);
}

.btn-secondary:hover {

    background:
        rgba(255,255,255,.11);

    border-color:
        rgba(255,255,255,.35);

    transform:
        translateY(-4px);
}

.btn-large {

    min-height: 58px;

    padding:
        1rem 2.4rem;

    font-size: 1.05rem;
}

/* Pulse */

.pulse {

    animation:
        pulse 2.5s infinite;
}

@keyframes pulse {

    0% {
        box-shadow:
            0 0 0 0 rgba(255, 30, 30, .55);
    }

    70% {
        box-shadow:
            0 0 0 13px rgba(255, 30, 30, 0);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(255, 30, 30, 0);
    }
}

/* =========================================================
   SCROLL INDICATOR
========================================================= */

.scroll-indicator {

    position: absolute;

    bottom: 30px;
    left: 50%;

    transform:
        translateX(-50%);

    animation:
        bounce 2s infinite;

    opacity: .75;
}

.scroll-arrow {

    width: 26px;
    height: 26px;

    border:
        2px solid #fff;

    border-top: none;
    border-left: none;

    transform:
        rotate(45deg);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform:
            translateX(-50%)
            translateY(0);
    }

    40% {
        transform:
            translateX(-50%)
            translateY(-10px);
    }

    60% {
        transform:
            translateX(-50%)
            translateY(-5px);
    }
}

/* =========================================================
   SECTION TITLES
========================================================= */

.section-title {

    position: relative;

    font-family: 'Cinzel', serif;

    font-size:
        clamp(2rem, 4vw, 3rem);

    line-height: 1.2;

    text-align: center;

    margin-bottom: 20px;

    background:
        linear-gradient(
            135deg,
            #fff,
            #ff4848,
            #ffb000
        );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-clip: text;

    filter:
        drop-shadow(
            0 0 15px rgba(255, 30, 0, .2)
        );
}

.section-title::after {

    content: "";

    display: block;

    width: 70px;
    height: 3px;

    margin:
        18px auto 0;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            #ff1c1c,
            #ff9d00
        );

    box-shadow:
        0 0 15px rgba(255, 50, 0, .5);
}

/* =========================================================
   FEATURES
========================================================= */

.features {

    padding:
        110px 0;
}

.features-grid {

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 22px;

    margin-top: 55px;
}

/* Card */

.feature-card {

    position: relative;

    padding: 32px 25px;

    text-align: center;

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(35, 5, 5, .78),
            rgba(10, 10, 10, .72)
        );

    backdrop-filter:
        blur(16px);

    -webkit-backdrop-filter:
        blur(16px);

    border:
        1px solid rgba(255, 60, 60, .16);

    box-shadow:
        0 15px 45px rgba(0,0,0,.35);

    overflow: hidden;

    transition:
        var(--transition);
}

.feature-card::before {

    content: "";

    position: absolute;

    left: -120%;

    top: 0;

    width: 80%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.05),
            transparent
        );

    transform:
        skewX(-20deg);

    transition: .7s;
}

.feature-card:hover {

    transform:
        translateY(-12px);

    border-color:
        rgba(255, 50, 50, .5);

    box-shadow:
        0 20px 60px rgba(0,0,0,.5),
        0 0 35px rgba(255,0,0,.18);
}

.feature-card:hover::before {
    left: 130%;
}

/* Icon */

.feature-icon {

    position: relative;

    width: 78px;
    height: 78px;

    margin:
        0 auto 22px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        var(--gradient-button);

    border:
        1px solid rgba(255, 100, 100, .3);

    font-size: 1.8rem;

    box-shadow:
        0 0 25px rgba(255,0,0,.25);

    transition: var(--transition);
}

.feature-card:hover .feature-icon {

    transform:
        scale(1.12)
        rotate(8deg);

    box-shadow:
        0 0 35px rgba(255,0,0,.5);
}

.feature-card h3 {

    font-size: 1.25rem;

    margin-bottom: 12px;

    color: #fff;
}

.feature-card p {

    color: #aaa;

    font-size: .95rem;

    line-height: 1.7;
}

/* =========================================================
   WORLD
========================================================= */

.world {

    padding:
        110px 0;

    overflow: hidden;
}

.world-background {

    position: absolute;

    inset: 0;

    background:
        url("world-bg.jpg")
        center / cover no-repeat;

    opacity: .18;

    z-index: -3;
}

.world-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.85),
            rgba(0,0,0,.45)
        );

    z-index: -2;
}

.world-content {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 70px;

    align-items: center;
}

.world-text {

    position: relative;
}

.world-description {

    color: #c8c8c8;

    font-size: 1.05rem;

    line-height: 1.9;

    margin:
        0 0 35px;
}

.world-stats {

    display: flex;

    gap: 15px;

    flex-wrap: wrap;
}

.stat {

    min-width: 120px;

    padding:
        18px 20px;

    text-align: center;

    background:
        rgba(255,255,255,.045);

    border:
        1px solid rgba(255,255,255,.09);

    border-radius: 15px;

    backdrop-filter:
        blur(12px);

    transition: var(--transition);
}

.stat:hover {

    transform:
        translateY(-5px);

    border-color:
        rgba(255,40,40,.35);

    background:
        rgba(255,0,0,.06);
}

.stat-number {

    display: block;

    color: #ff3434;

    font-size: 2.2rem;

    line-height: 1;

    font-weight: 800;

    margin-bottom: 7px;

    text-shadow:
        0 0 15px rgba(255,0,0,.35);
}

.stat-label {

    color: #999;

    font-size: .75rem;

    text-transform: uppercase;

    letter-spacing: 1px;
}

/* World Image */

.world-image {

    position: relative;

    text-align: center;
}

.world-image::before {

    content: "";

    position: absolute;

    inset: 10%;

    background:
        radial-gradient(
            circle,
            rgba(255,0,0,.25),
            transparent 70%
        );

    filter:
        blur(30px);

    z-index: -1;
}

.world-image img {

    max-width: 100%;

    border-radius: 25px;

    border:
        1px solid rgba(255,60,60,.22);

    box-shadow:
        0 30px 80px rgba(0,0,0,.55),
        0 0 40px rgba(255,0,0,.12);
}

.floating {

    animation:
        floating 4s ease-in-out infinite;
}

@keyframes floating {

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

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

/* =========================================================
   CLASSES
========================================================= */

.classes {

    padding:
        110px 0;
}

.classes-slider {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 22px;

    margin-top: 55px;
}

.class-card {

    position: relative;

    padding: 32px 24px;

    text-align: center;

    background:
        linear-gradient(
            145deg,
            rgba(30,30,30,.65),
            rgba(10,10,10,.72)
        );

    backdrop-filter:
        blur(14px);

    border:
        1px solid rgba(255,255,255,.09);

    border-radius: 20px;

    cursor: pointer;

    overflow: hidden;

    transition: var(--transition);
}

.class-card::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(255,0,0,.14),
            transparent 65%
        );

    opacity: 0;

    transition: .4s;
}

.class-card:hover,
.class-card.active {

    transform:
        translateY(-10px);

    border-color:
        rgba(255,40,40,.45);

    box-shadow:
        0 25px 60px rgba(0,0,0,.45),
        0 0 35px rgba(255,0,0,.16);
}

.class-card:hover::before,
.class-card.active::before {
    opacity: 1;
}

.class-image {

    position: relative;

    width: 100px;
    height: 100px;

    margin:
        0 auto 22px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        var(--gradient-button);

    border:
        2px solid rgba(255,100,100,.2);

    font-size: 2.8rem;

    box-shadow:
        0 0 30px rgba(255,0,0,.25);

    transition: var(--transition);
}

.class-card:hover .class-image {

    transform:
        scale(1.08);

    box-shadow:
        0 0 40px rgba(255,0,0,.45);
}

.class-card h3 {

    position: relative;

    font-size: 1.35rem;

    margin-bottom: 10px;
}

.class-card p {

    position: relative;

    color: #aaa;

    font-size: .92rem;

    line-height: 1.7;
}

/* =========================================================
   DONATE
========================================================= */

.donate {

    padding:
        110px 0;
}

.donate-description {

    max-width: 700px;

    margin:
        0 auto 55px;

    text-align: center;

    color: #aaa;

    font-size: 1.05rem;
}

.donate-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

    align-items: stretch;
}

.donate-card {

    position: relative;

    display: flex;

    flex-direction: column;

    padding: 35px 28px;

    text-align: center;

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(25,25,25,.82),
            rgba(8,8,8,.78)
        );

    backdrop-filter:
        blur(16px);

    border:
        1px solid rgba(255,60,60,.16);

    box-shadow:
        0 20px 50px rgba(0,0,0,.4);

    transition: var(--transition);
}

.donate-card:hover {

    transform:
        translateY(-10px);

    border-color:
        rgba(255,40,40,.5);

    box-shadow:
        0 25px 70px rgba(0,0,0,.5),
        0 0 40px rgba(255,0,0,.2);
}

.donate-card h3 {

    color: #fff;

    font-size: 1.35rem;

    margin-bottom: 18px;
}

.price {

    font-size: 2.3rem;

    font-weight: 900;

    margin-bottom: 15px;

    background:
        var(--gradient-gold);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-clip: text;
}

.donate-card ul {

    list-style: none;

    margin:
        15px 0 25px;

    color: #bbb;

    flex: 1;
}

.donate-card li {

    padding: 9px 0;

    border-bottom:
        1px solid rgba(255,255,255,.05);
}

.donate-card li:last-child {
    border-bottom: none;
}

.destaque {

    transform:
        scale(1.04);

    border:
        1px solid rgba(255,212,59,.65);

    box-shadow:
        0 0 40px rgba(255,190,0,.12);
}

.destaque:hover {

    transform:
        scale(1.04)
        translateY(-10px);
}

.tag {

    position: absolute;

    top: -13px;
    left: 50%;

    transform:
        translateX(-50%);

    padding:
        6px 18px;

    border-radius: 30px;

    color: #000;

    background:
        var(--gradient-gold);

    font-size: .72rem;

    font-weight: 900;

    text-transform: uppercase;

    letter-spacing: .7px;

    box-shadow:
        0 5px 20px rgba(255,190,0,.3);
}

/* =========================================================
   DOWNLOAD
========================================================= */

.download {

    padding:
        110px 0;

    text-align: center;
}

.download-content {

    max-width: 850px;

    margin: auto;
}

.download-description {

    max-width: 700px;

    margin:
        0 auto 40px;

    color: #aaa;

    font-size: 1.05rem;
}

.system-requirements {

    margin-top: 50px;

    padding: 30px;

    background:
        rgba(15,15,15,.68);

    backdrop-filter:
        blur(15px);

    border:
        1px solid rgba(255,60,60,.16);

    border-radius: 22px;

    box-shadow:
        0 20px 50px rgba(0,0,0,.35);
}

.system-requirements h4 {

    color: var(--gold);

    font-size: 1.2rem;

    margin-bottom: 22px;
}

.requirements-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 12px;
}

.requirement {

    padding:
        12px 15px;

    text-align: left;

    background:
        rgba(255,255,255,.04);

    border:
        1px solid rgba(255,255,255,.06);

    border-radius: 10px;

    color: #bbb;

    font-size: .9rem;
}

/* =========================================================
   EXTRA DOWNLOADS
========================================================= */

.extra-downloads {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

    margin:
        50px 0;
}

.download-item {

    display: flex;

    align-items: center;

    gap: 16px;

    padding: 20px;

    color: #fff;

    text-align: left;

    text-decoration: none;

    background:
        linear-gradient(
            145deg,
            rgba(25,25,25,.75),
            rgba(10,10,10,.7)
        );

    backdrop-filter:
        blur(12px);

    border:
        1px solid rgba(255,60,60,.16);

    border-radius: 18px;

    transition: var(--transition);
}

.download-item:hover {

    transform:
        translateY(-7px);

    border-color:
        rgba(255,40,40,.5);

    box-shadow:
        0 15px 45px rgba(0,0,0,.45),
        0 0 25px rgba(255,0,0,.16);
}

.download-item i {

    flex-shrink: 0;

    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 15px;

    font-size: 20px;

    background:
        var(--gradient-button);

    box-shadow:
        0 0 20px rgba(255,0,0,.22);
}

.download-item h4 {

    color: #ffd43b;

    margin-bottom: 3px;

    font-size: 1rem;
}

.download-item span {

    color: #999;

    font-size: .82rem;
}

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

.footer {

    padding:
        80px 0 25px;

    border-top:
        1px solid rgba(255,50,50,.12);
}

.footer-content {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 40px;

    margin-bottom: 45px;
}

.footer-section h3,
.footer-section h4 {

    margin-bottom: 15px;

    color: #ff4040;
}

.footer-section h3 {

    font-family: 'Cinzel', serif;

    font-size: 1.4rem;
}

.footer-section p {

    color: #999;

    font-size: .9rem;

    line-height: 1.7;
}

.footer-section ul {

    list-style: none;
}

.footer-section ul li {

    margin-bottom: 8px;
}

.footer-section ul li a {

    color: #999;

    text-decoration: none;

    transition: var(--transition);
}

.footer-section ul li a:hover {

    color: #fff;

    padding-left: 5px;
}

/* Social */

.social-links {

    display: flex;

    gap: 10px;

    margin-top: 20px;
}

.social-link {

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #fff;

    text-decoration: none;

    background:
        rgba(255,255,255,.06);

    border:
        1px solid rgba(255,255,255,.1);

    transition: var(--transition);
}

.social-link:hover {

    transform:
        translateY(-5px);

    color: #fff;

    background:
        var(--gradient-button);

    border-color:
        transparent;

    box-shadow:
        0 0 20px rgba(255,0,0,.35);
}

.footer-bottom {

    padding-top: 25px;

    border-top:
        1px solid rgba(255,255,255,.07);

    text-align: center;

    color: #666;

    font-size: .85rem;
}

/* =========================================================
   FLOATING SOCIAL
========================================================= */

.floating-social {

    position: fixed;

    right: 20px;
    top: 50%;

    transform:
        translateY(-50%);

    display: flex;

    flex-direction: column;

    gap: 10px;

    z-index: 900;
}

.floating-btn {

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #fff;

    text-decoration: none;

    font-size: 1.1rem;

    border:
        1px solid rgba(255,255,255,.15);

    box-shadow:
        0 8px 25px rgba(0,0,0,.35);

    transition: var(--transition);
}

.floating-btn.discord {
    background: #5865f2;
}

.floating-btn.facebook {
    background: #1877f2;
}

.floating-btn.youtube {
    background: #ff0000;
}

.floating-btn:hover {

    transform:
        scale(1.12)
        translateX(-4px);

    box-shadow:
        0 10px 30px rgba(0,0,0,.5);
}

/* =========================================================
   AOS
========================================================= */

[data-aos] {

    opacity: 0;

    transition:
        opacity .7s ease,
        transform .7s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {

    transform:
        translateY(40px);
}

[data-aos="fade-up"].aos-animate {

    transform:
        translateY(0);
}

/* =========================================================
   LOADER
========================================================= */

.page-loader {

    position: fixed;

    inset: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at center,
            #180000,
            #050505 65%
        );

    z-index: 10000;

    transition:
        opacity .6s ease,
        visibility .6s ease;
}

.page-loader.hidden {

    opacity: 0;

    visibility: hidden;

    pointer-events: none;
}

.loader-content {

    width: 100%;

    max-width: 400px;

    padding: 20px;

    text-align: center;
}

.loader-logo-img {

    width: 320px;

    max-width: 80%;

    margin-bottom: 35px;

    filter:
        drop-shadow(
            0 0 15px rgba(255,0,0,.7)
        )
        drop-shadow(
            0 0 35px rgba(255,120,0,.45)
        );

    animation:
        pulseLogo 2s infinite;
}

.loader-bar {

    width: 100%;

    height: 6px;

    background:
        rgba(255,255,255,.08);

    border-radius: 20px;

    overflow: hidden;

    box-shadow:
        inset 0 0 10px rgba(0,0,0,.5);
}

.loader-progress {

    height: 100%;

    width: 0%;

    background:
        linear-gradient(
            90deg,
            #ff0000,
            #ff6a00,
            #ffd700
        );

    box-shadow:
        0 0 15px rgba(255,60,0,.7);

    transition:
        width .3s ease;
}

@keyframes pulseLogo {

    0%,
    100% {
        transform:
            scale(1);
    }

    50% {
        transform:
            scale(1.05);
    }
}

/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1200px) {

    .features-grid {

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

    .classes-slider {

        grid-template-columns:
            repeat(2, 1fr);
    }

    .footer-content {

        grid-template-columns:
            repeat(2, 1fr);
    }
}

/* =========================================================
   RESPONSIVE — 900px
========================================================= */

@media (max-width: 900px) {

    .nav-menu {

        display: none;
    }

    .hamburger {

        display: flex;
    }

    .world-content {

        grid-template-columns: 1fr;

        gap: 45px;

        text-align: center;
    }

    .world-stats {

        justify-content: center;
    }

    .world-image {

        order: -1;
    }

    .donate-grid {

        grid-template-columns:
            1fr;
    }

    .destaque {

        transform: none;
    }

    .destaque:hover {

        transform:
            translateY(-10px);
    }

    .extra-downloads {

        grid-template-columns:
            1fr;
    }

    .floating-social {

        right: 12px;
    }
}

/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 768px) {

    .container {

        width: min(94%, 1200px);
    }

    .nav-container {

        min-height: 68px;
    }

    .nav-logo h2 {

        font-size: 1.3rem;
    }

    .hero {

        min-height: 100svh;

        padding:
            100px 15px 70px;
    }

    .hero-logo img {

        width: 320px;
    }

    .hero-description {

        line-height: 1.65;
    }

    .hero-buttons {

        flex-direction: column;

        width: 100%;
    }

    .hero-buttons .btn {

        width: min(100%, 320px);
    }

    .features,
    .world,
    .classes,
    .download,
    .donate {

        padding:
            80px 0;
    }

    .features-grid {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 15px;

        margin-top: 40px;
    }

    .feature-card {

        padding:
            25px 18px;
    }

    .feature-icon {

        width: 65px;
        height: 65px;

        font-size: 1.5rem;
    }

    .feature-card h3 {

        font-size: 1.05rem;
    }

    .feature-card p {

        font-size: .85rem;
    }

    .classes-slider {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 15px;

        margin-top: 40px;
    }

    .class-card {

        padding:
            25px 15px;
    }

    .class-image {

        width: 75px;
        height: 75px;

        font-size: 2rem;
    }

    .requirements-grid {

        grid-template-columns:
            1fr;
    }

    .footer-content {

        grid-template-columns:
            1fr 1fr;

        gap: 30px;
    }

    .floating-social {

        top: auto;

        bottom: 15px;

        transform: none;

        flex-direction: row;
    }

    .floating-btn {

        width: 42px;
        height: 42px;

        font-size: .95rem;
    }
}

/* =========================================================
   RESPONSIVE — SMALL MOBILE
========================================================= */

@media (max-width: 500px) {

    .nav-container {

        padding:
            0 5px;
    }

    .nav-logo h2 {

        font-size: 1.15rem;

        letter-spacing: 1px;
    }

    .account-btn {

        display: none;
    }

    .hero {

        padding:
            90px 15px 60px;
    }

    .hero-logo img {

        width: 280px;
    }

    .game-title {

        font-size:
            2.2rem;

        letter-spacing:
            1px;
    }

    .game-subtitle {

        font-size:
            .78rem;

        letter-spacing:
            2px;
    }

    .hero-slogan {

        font-size:
            1.3rem;
    }

    .hero-description {

        font-size:
            .92rem;
    }

    .section-title {

        font-size:
            2rem;
    }

    .features-grid {

        grid-template-columns:
            1fr;
    }

    .classes-slider {

        grid-template-columns:
            1fr;
    }

    .world-stats {

        display: grid;

        grid-template-columns:
            repeat(2, 1fr);
    }

    .stat {

        min-width:
            0;
    }

    .stat-number {

        font-size:
            1.8rem;
    }

    .download-buttons {

        flex-direction:
            column;
    }

    .download-buttons .btn {

        width:
            100%;
    }

    .system-requirements {

        padding:
            22px 16px;
    }

    .footer-content {

        grid-template-columns:
            1fr;

        text-align:
            center;
    }

    .social-links {

        justify-content:
            center;
    }

    .floating-social {

        right:
            50%;

        transform:
            translateX(50%);

        bottom:
            12px;
    }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        animation-duration:
            .01ms !important;

        animation-iteration-count:
            1 !important;

        scroll-behavior:
            auto !important;

        transition-duration:
            .01ms !important;
    }
}

/* =========================================================
   SILVERPK - INDICADOR DE STATUS DO SERVIDOR
========================================================= */
.server-status {
    --status-color: #87a2bd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.55rem;
    padding: 0.7rem 1rem;
    border: 1px solid rgba(80, 161, 255, 0.35);
    border-radius: 999px;
    background: rgba(7, 16, 33, 0.9);
    box-shadow: inset 0 0 14px rgba(15, 92, 181, 0.13), 0 4px 16px rgba(0, 0, 0, 0.36);
    color: #e5f0ff;
    font-family: 'Roboto', sans-serif;
    font-size: 0.84rem;
    line-height: 1.2;
    white-space: nowrap;
}
.server-status[data-state="online"] { --status-color: #2be779; border-color: rgba(43, 231, 121, 0.5); }
.server-status[data-state="offline"] { --status-color: #ff4c5e; border-color: rgba(255, 76, 94, 0.5); }
.server-status[data-state="error"] { --status-color: #ffb84d; border-color: rgba(255, 184, 77, 0.5); }
.server-status__dot {
    width: 11px;
    height: 11px;
    flex: 0 0 11px;
    border-radius: 50%;
    background: var(--status-color);
    box-shadow: 0 0 0 3px rgba(255,255,255,0.045), 0 0 12px var(--status-color);
}
.server-status__label { color: #b6c9e1; font-weight: 400; }
.server-status__text { color: var(--status-color); font-weight: 700; }
.navbar .server-status { margin-left: auto; }
.hero-text > .server-status { margin: 1.15rem auto 1.3rem; }
@media (max-width: 1200px) {
    .navbar .server-status { display: none; }
}
@media (max-width: 500px) {
    .hero-text > .server-status { max-width: 100%; white-space: normal; }
}
