
@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;600;700;800;900&display=swap');

/* ==========================================================================
ROOT
========================================================================== */

:root {
    --bg: #070707;
    --bg2: #0d0d0d;

    --panel: #111111;
    --panel2: #151515;

    --text: #f3f3f3;
    --muted: #8d8d8d;

    --line: rgba(255,255,255,.09);

    --accent: #f15a24;
    --accent2: #ff7a3d;

    --max: 1240px;
}

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

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background: var(--bg);
    color: var(--text);
    font-family: "Vazirmatn", Tahoma, Arial, sans-serif;
    overflow-x: hidden;
}

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

button {
    font: inherit;
}

.container {
    width: min(calc(100% - 48px), var(--max));
    margin: auto;
}

/* ==========================================================================
NOISE
========================================================================== */

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: .035;

    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

/* ==========================================================================
HEADER
========================================================================== */

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;

    background: rgba(7,7,7,.78);
    border-bottom: 1px solid rgba(255,255,255,.07);

    backdrop-filter: blur(16px);
}

.nav-wrap {
    height: 76px;
    display: flex;
    align-items: center;
    gap: 38px;
}

/* ==========================================================================
LOGO
========================================================================== */

.logo {
    display: flex;
    align-items: center;
    direction: ltr;

    font-size: 19px;
    font-weight: 900;
    letter-spacing: -1px;

    white-space: nowrap;
}

.logo span {
    color: #fff;
}

.logo b {
    color: var(--accent);
    font-weight: 900;
}

/* ==========================================================================
NAV
========================================================================== */

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;

    margin-left: auto;
    margin-right: auto;
}

.main-nav a,
.nav-login {
    color: #a7a7a7;
    font-size: 12px;
    transition: .2s ease;
}

.main-nav a:hover,
.nav-login:hover {
    color: #fff;
}

/* ==========================================================================
NAV ACTIONS
========================================================================== */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-cta {
    display: inline-flex;
    height: 38px;

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

    padding: 0 20px;

    background: var(--accent);
    color: #fff;

    font-size: 11px;
    font-weight: 800;

    transition: .2s;
}

.nav-cta:hover {
    background: var(--accent2);
    transform: translateY(-1px);
}

/* ==========================================================================
MOBILE MENU
========================================================================== */

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    border: 1px solid var(--line);
    background: transparent;

    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 19px;
    height: 1px;

    background: #fff;

    margin: 5px auto;
}

.mobile-nav {
    display: none;

    padding: 10px 24px 24px;

    border-top: 1px solid var(--line);

    background: #090909;
}

.mobile-nav a {
    display: block;

    padding: 14px 0;

    color: #bbb;

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

    font-size: 13px;
}

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

.hero {
    min-height: 800px;

    position: relative;

    display: flex;

    align-items: center;

    overflow: hidden;

    border-bottom: 1px solid var(--line);
}


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

.hero-art {
    position: absolute;
    inset: 0;

    z-index: 0;

    background:
        /* تیرگی خیلی ملایم برای خوانایی متن */
linear-gradient(
    90deg,
    rgba(5, 5, 5, .68) 0%,
    rgba(5, 5, 5, .54) 45%,
    rgba(5, 5, 5, .70) 100%
),
        /* نور نارنجی فعلی */
        radial-gradient(
            circle at 74% 42%,
            rgba(241, 90, 36, .22),
            transparent 24%
        ),

        /* نور سفید */
        radial-gradient(
            circle at 18% 20%,
            rgba(255, 255, 255, .06),
            transparent 24%
        ),

        /* تصویر پس زمینه */
        url("../images/hero-bg.jpg");

    background-size:
        cover,
        cover,
        cover,
        cover;

    background-position:
        center,
        center,
        center,
        center;

    background-repeat: no-repeat;
}


/* ==========================================================================
ORANGE CIRCLE EFFECT
========================================================================== */

.hero-art::after {
    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    right: 8%;
    top: 13%;

    border: 1px solid rgba(241, 90, 36, .18);

    border-radius: 50%;

    box-shadow:
        0 0 0 70px rgba(241, 90, 36, .025),
        0 0 0 140px rgba(241, 90, 36, .018);

    pointer-events: none;
}


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

.hero-grid {
    position: absolute;
    inset: 0;

    z-index: 1;

    opacity: .10;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, .12) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255, 255, 255, .12) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 90%
        );

    pointer-events: none;
}


/* ==========================================================================
HERO NOISE / DARK OVERLAY
========================================================================== */

.hero-noise {
    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, .12),
            transparent 60%,
            rgba(0, 0, 0, .16)
        );

    pointer-events: none;
}


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

.hero-inner {
    position: relative;

    z-index: 2;

    display: grid;

    /*
        متن سمت راست
        ویدیو سمت چپ
    */

    grid-template-columns: 1fr 520px;

    align-items: center;

    gap: 60px;

    padding-top: 80px;
}

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

.hero-copy {
    max-width: 720px;
}

.eyebrow,
.section-head small,
.center-head small,
.community-inner > small {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: var(--accent2);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.4px;
}

.eyebrow i {
    width: 6px;
    height: 6px;

    background: var(--accent);

    border-radius: 50%;

    box-shadow:
        0 0 13px var(--accent);
}

.hero h1 {
    margin-top: 20px;

    font-size:
        clamp(48px, 7vw, 96px);

    line-height: 1.05;

    letter-spacing: -4px;

    font-weight: 900;

    max-width: 800px;
}

.hero h1 span {
    color: var(--accent);
}

.hero-copy > p {
    max-width: 590px;

    color: #999;

    font-size: 14px;

    line-height: 2.1;

    margin: 25px 0 30px;
}

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

.hero-actions {
    display: flex;

    gap: 12px;

    flex-wrap: wrap;
}

.button {
    min-height: 48px;

    display: inline-flex;

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

    gap: 12px;

    padding: 0 22px;

    font-size: 11px;

    font-weight: 800;

    transition: .2s;
}

.button-primary {
    background: var(--accent);
    color: #fff;
}

.button-primary:hover {
    background: var(--accent2);
    transform: translateY(-2px);
}

.button-ghost {
    border: 1px solid rgba(255,255,255,.13);

    color: #ddd;

    background:
        rgba(255,255,255,.025);
}

.button-ghost:hover {
    border-color:
        rgba(241,90,36,.5);

    color: #fff;
}

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

.hero-metrics {
    display: flex;

    align-items: center;

    gap: 30px;

    margin-top: 55px;
}

.hero-metrics div {
    display: flex;

    flex-direction: column;

    gap: 2px;
}

.hero-metrics strong {
    font-size: 19px;
}

.hero-metrics small {
    color: #666;

    font-size: 9px;
}

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

.hero-video-panel {
    width: 520px !important;
    max-width: 520px !important;
    min-width: 520px !important;
    height: 400px;

    position: relative;
    overflow: hidden;

    border: 1px solid rgba(255,255,255,.12);
    background: #050505;

    box-shadow:
        0 30px 100px rgba(0,0,0,.45),
        0 0 50px rgba(241,90,36,.06);
}

.hero-trailer {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: #000;
}
.hero-video-panel::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    left: -120px;
    bottom: -130px;

    border-radius: 50%;

    background:
        rgba(241,90,36,.16);

    filter: blur(25px);

    pointer-events: none;

    z-index: 0;
}

.hero-trailer {
    position: absolute;

    z-index: 2;

    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    background: #000;
}

/* اگر پنل‌های قدیمی HTML باقی مانده باشند، مخفی شوند */

.hero-video-panel .panel-top,
.hero-video-panel .panel-big,
.hero-video-panel .panel-lines,
.hero-video-panel .panel-bottom {
    display: none !important;
}

/* ==========================================================================
SCROLL HINT
========================================================================== */

.scroll-hint {
    position: absolute;

    z-index: 3;

    bottom: 25px;

    right: 50%;

    transform: translateX(50%);

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 8px;

    color: #555;

    font-size: 9px;
}

.scroll-hint b {
    color: var(--accent);

    font-size: 16px;
}

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

.section {
    padding: 115px 0;

    border-bottom:
        1px solid var(--line);
}

.section-head {
    display: flex;

    justify-content: space-between;

    align-items: end;

    gap: 30px;

    margin-bottom: 45px;
}

.section-head h2,
.center-head h2 {
    margin-top: 10px;

    font-size:
        clamp(32px, 4vw, 54px);

    line-height: 1.1;

    letter-spacing: -2px;
}

.section-head em,
.center-head em,
.community-inner em {
    color: var(--accent);

    font-style: normal;
}

.section-head p {
    max-width: 430px;

    color: #777;

    font-size: 12px;

    line-height: 2;
}

.text-link {
    color: #aaa;

    font-size: 10px;

    border-bottom:
        1px solid #555;

    padding-bottom: 5px;
}

/* ==========================================================================
GAMES
========================================================================== */

.game-grid {
    display: grid;

    grid-template-columns:
        1.4fr 1fr 1fr;

    min-height: 470px;
}

.game-card {
    min-height: 470px;

    position: relative;

    overflow: hidden;

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

    background: #101010;
}

.game-card-main {
    min-height: 520px;
}

.game-bg {
    position: absolute;

    inset: 0;

    transition:
        transform .5s ease;
}

.game-card:hover .game-bg {
    transform: scale(1.05);
}

.game-bg-1 {
    background:
        radial-gradient(
            circle at 60% 30%,
            rgba(241,90,36,.48),
            transparent 24%
        ),

        linear-gradient(
            145deg,
            #151515,
            #080808 70%
        );
}

.game-bg-2 {
    background:
        radial-gradient(
            circle at 35% 35%,
            rgba(160,170,180,.18),
            transparent 20%
        ),

        linear-gradient(
            145deg,
            #202020,
            #080808 70%
        );
}

.game-bg-3 {
    background:
        radial-gradient(
            circle at 70% 35%,
            rgba(241,90,36,.28),
            transparent 20%
        ),

        linear-gradient(
            145deg,
            #241c19,
            #090909 70%
        );
}

.game-bg::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            #050505 3%,
            transparent 70%
        );
}

.game-number {
    position: absolute;

    z-index: 2;

    top: 20px;
    right: 20px;

    color: #666;

    font-size: 10px;
}

.game-content {
    position: absolute;

    z-index: 2;

    right: 28px;
    left: 28px;
    bottom: 28px;
}

.game-content small {
    color: var(--accent2);

    font-size: 9px;

    font-weight: 800;
}

.game-content h3 {
    font-size: 29px;

    margin: 8px 0;

    direction: ltr;

    text-align: right;
}

.game-content p {
    color: #aaa;

    font-size: 11px;

    line-height: 1.9;

    max-width: 390px;
}

.game-content a {
    display: inline-block;

    margin-top: 18px;

    color: #fff;

    font-size: 10px;

    font-weight: 800;
}

/* ==========================================================================
SERVERS
========================================================================== */

.server-list {
    border-top:
        1px solid var(--line);
}

.server-row {
    display: grid;

    grid-template-columns:
        64px 1.5fr 1fr 170px 80px;

    align-items: center;

    gap: 22px;

    min-height: 94px;

    padding: 16px 20px;

    border:
        1px solid var(--line);

    border-top: 0;

    background: #0b0b0b;

    transition: .2s;
}

.server-row:hover {
    background: #101010;

    border-color:
        rgba(241,90,36,.25);
}

.server-game {
    width: 48px;
    height: 48px;

    display: grid;

    place-items: center;

    background: #151515;

    border:
        1px solid var(--line);

    color: var(--accent);

    font-weight: 900;

    font-size: 12px;
}

.server-info {
    display: flex;

    flex-direction: column;

    gap: 3px;
}

.server-info strong {
    font-size: 12px;
}

.server-info span,
.server-map {
    font-size: 9px;

    color: #666;
}

.server-map {
    direction: ltr;

    text-align: right;
}

.server-players strong {
    font-size: 12px;
}

.server-players strong span {
    color: #555;

    font-weight: 400;
}

.server-players div {
    height: 3px;

    margin-top: 7px;

    background: #242424;
}

.server-players i {
    display: block;

    height: 100%;

    background: var(--accent);
}

.join-server {
    border:
        1px solid rgba(241,90,36,.35);

    background: transparent;

    color: var(--accent2);

    min-height: 34px;

    cursor: pointer;

    font-size: 10px;

    font-weight: 800;

    transition: .2s;
}

.join-server:hover {
    background: var(--accent);

    color: #fff;
}

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

.center-head {
    text-align: center;

    max-width: 650px;

    margin:
        0 auto 50px;
}

.center-head p {
    color: #777;

    font-size: 12px;

    margin-top: 12px;
}

.feature-grid {
    display: grid;

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

    border-top:
        1px solid var(--line);

    border-left:
        1px solid var(--line);
}

.feature {
    min-height: 310px;

    position: relative;

    padding: 28px;

    border-right:
        1px solid var(--line);

    border-bottom:
        1px solid var(--line);

    transition: .25s;
}

.feature:hover {
    background:
        rgba(255,255,255,.025);

    border-color:
        rgba(241,90,36,.22);
}

.feature > span {
    color: #555;

    font-size: 10px;
}

.feature h3 {
    font-size: 17px;

    margin:
        50px 0 12px;
}

.feature p {
    color: #777;

    font-size: 10px;

    line-height: 2;
}

.feature > b {
    position: absolute;

    left: 28px;
    bottom: 25px;

    color: #555;
}

.feature a {
    position: absolute;

    right: 28px;
    bottom: 25px;

    color: var(--accent);

    font-size: 10px;

    font-weight: 800;
}

/* ==========================================================================
COMMUNITY
========================================================================== */

.community {
    position: relative;

    overflow: hidden;

    min-height: 560px;

    display: grid;

    place-items: center;

    text-align: center;

    background:
        radial-gradient(
            circle at center,
            rgba(241,90,36,.18),
            transparent 28%
        ),
        #090909;
}

.community::before,
.community::after {
    content: "";

    position: absolute;

    width: 1px;
    height: 100%;

    top: 0;

    background:
        linear-gradient(
            transparent,
            rgba(241,90,36,.4),
            transparent
        );
}

.community::before {
    right: 25%;
}

.community::after {
    left: 25%;
}

.community-glow {
    position: absolute;

    width: 500px;
    height: 500px;

    border:
        1px solid rgba(241,90,36,.13);

    border-radius: 50%;

    box-shadow:
        0 0 0 90px rgba(241,90,36,.025),
        0 0 0 180px rgba(241,90,36,.015);
}

.community-inner {
    position: relative;

    z-index: 2;
}

.community-inner h2 {
    font-size:
        clamp(45px,7vw,85px);

    line-height: 1.05;

    letter-spacing: -4px;

    margin: 18px 0;
}

.community-inner p {
    color: #777;

    font-size: 12px;

    margin-bottom: 25px;
}

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

.footer {
    background: #060606;
}

.footer-inner {
    display: flex;

    justify-content: space-between;

    gap: 50px;

    padding: 70px 0;
}

.footer-brand p {
    color: #666;

    font-size: 10px;

    margin-top: 15px;
}

.footer-links {
    display: flex;

    gap: 80px;
}

.footer-links div {
    display: flex;

    flex-direction: column;

    gap: 11px;
}

.footer-links small {
    color: #444;

    font-size: 9px;

    font-weight: 800;

    margin-bottom: 4px;
}

.footer-links a {
    color: #777;

    font-size: 10px;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    border-top:
        1px solid var(--line);

    padding: 20px 0;

    display: flex;

    justify-content: space-between;

    color: #444;

    font-size: 9px;
}

/* ==========================================================================
TOAST
========================================================================== */

.toast {
    position: fixed;

    z-index: 10000;

    bottom: 25px;
    right: 25px;

    padding: 13px 17px;

    background: #171717;

    border:
        1px solid rgba(241,90,36,.4);

    color: #ddd;

    font-size: 10px;

    opacity: 0;

    transform:
        translateY(12px);

    pointer-events: none;

    transition: .25s;
}

.toast.show {
    opacity: 1;

    transform: none;
}

/* ==========================================================================
REVEAL
========================================================================== */

.reveal {
    opacity: 0;

    transform:
        translateY(22px);

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

.reveal.visible {
    opacity: 1;

    transform: none;
}

/* ==========================================================================
TABLET
========================================================================== */

@media (max-width: 1000px) {

    .main-nav {
        gap: 16px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-video-panel {
        display: none;
    }

    .game-grid {
        grid-template-columns:
            1fr 1fr;
    }

    .game-card-main {
        grid-column: 1 / -1;
    }

    .feature-grid {
        grid-template-columns:
            1fr 1fr;
    }

    .server-row {
        grid-template-columns:
            55px 1.5fr 1fr 120px 70px;
    }
}

/* ==========================================================================
MOBILE
========================================================================== */

@media (max-width: 760px) {

    .container {
        width:
            min(
                calc(100% - 30px),
                var(--max)
            );
    }

    .main-nav,
    .nav-actions {
        display: none;
    }

    .menu-toggle {
        display: block;

        margin-right: auto;
    }

    .mobile-nav.open {
        display: block;
    }

    .nav-wrap {
        height: 68px;
    }

    .hero {
        min-height: 720px;
    }

    .hero-inner {
        padding-top: 75px;
    }

    .hero h1 {
        font-size: 48px;

        letter-spacing: -2px;
    }

    .hero-copy > p {
        font-size: 12px;
    }

    .hero-metrics {
        gap: 17px;

        margin-top: 35px;
    }

    .hero-metrics strong {
        font-size: 15px;
    }

    .hero-metrics small {
        font-size: 8px;
    }

    .section {
        padding: 80px 0;
    }

    .section-head {
        display: block;
    }

    .section-head p {
        margin-top: 15px;
    }

    .section-head .text-link {
        display: inline-block;

        margin-top: 18px;
    }

    .game-grid {
        grid-template-columns: 1fr;
    }

    .game-card,
    .game-card-main {
        min-height: 410px;
    }

    .server-row {
        grid-template-columns:
            48px 1fr 70px;

        gap: 12px;
    }

    .server-map {
        display: none;
    }

    .server-players {
        display: none;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature {
        min-height: 250px;
    }

    .footer-inner {
        display: block;

        padding: 50px 0;
    }

    .footer-links {
        margin-top: 40px;

        gap: 35px;

        flex-wrap: wrap;
    }

    .footer-bottom {
        display: block;

        line-height: 2;
    }

    .footer-bottom span {
        display: block;
    }

    .footer-bottom span + span {
        margin-top: 5px;
    }
}

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

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

    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;

        transform: none;

        transition: none;
    }
}

/* =========================================================
   SUPERNOVA GAMING LOADER
========================================================= */

#supernova-loader {

    position: fixed;

    inset: 0;

    z-index: 999999;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            rgba(255, 75, 0, .10),
            transparent 30%
        ),
        radial-gradient(
            circle at 50% 50%,
            #111,
            #050606 65%,
            #020303
        );

    opacity: 1;

    visibility: visible;

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


/* خطوط ظریف پس‌زمینه */

#supernova-loader::before {

    content: "";

    position: absolute;

    inset: 0;

    opacity: .12;

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

    background-size: 45px 45px;

    mask-image:
        radial-gradient(
            circle,
            black,
            transparent 75%
        );
}


/* خط نور وسط */

#supernova-loader::after {

    content: "";

    position: absolute;

    left: 50%;

    top: 0;

    width: 1px;

    height: 100%;

    background:
        linear-gradient(
            transparent,
            rgba(255,75,0,.15),
            transparent
        );
}


.loader-content {

    position: relative;

    z-index: 2;

    width: min(360px, calc(100% - 40px));

    text-align: center;
}


/* =========================================================
   ORBIT
========================================================= */

.loader-orbit {

    position: relative;

    width: 150px;

    height: 150px;

    margin: 0 auto 30px;

    display: grid;

    place-items: center;
}


.loader-core {

    position: relative;

    z-index: 5;

    width: 72px;

    height: 72px;

    display: grid;

    place-items: center;

    background:
        radial-gradient(
            circle,
            #191a1a,
            #080909
        );

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

    box-shadow:
        0 0 15px rgba(255,75,0,.25),
        0 0 50px rgba(255,75,0,.10),
        inset 0 0 20px rgba(255,75,0,.08);

    transform: rotate(45deg);
}


.loader-core span {

    color: #ff4b00;

    font-family:
        Arial,
        sans-serif;

    font-size: 22px;

    font-weight: 900;

    letter-spacing: -2px;

    transform: rotate(-45deg);

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


/* حلقه‌ها */

.orbit-ring {

    position: absolute;

    inset: 8px;

    border-radius: 50%;

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

    border-top-color: #ff4b00;

    border-right-color: rgba(255,75,0,.7);

    animation:
        loaderSpin 1.5s linear infinite;
}


.ring-two {

    inset: 23px;

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

    border-bottom-color: #ff6b32;

    animation:
        loaderSpinReverse 1s linear infinite;
}


@keyframes loaderSpin {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


@keyframes loaderSpinReverse {

    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }

}


/* =========================================================
   BRAND
========================================================= */

.loader-brand {

    color: #fff;

    font-family:
        Arial,
        sans-serif;

    font-size: 25px;

    font-weight: 900;

    letter-spacing: 7px;

    margin-left: 7px;

    text-shadow:
        0 0 20px rgba(255,75,0,.25);
}


.loader-status {

    margin-top: 10px;

    color: #555;

    font-family:
        Arial,
        sans-serif;

    font-size: 8px;

    letter-spacing: 3px;

}


/* =========================================================
   BAR
========================================================= */

.loader-bar {

    position: relative;

    width: 100%;

    height: 2px;

    margin-top: 28px;

    overflow: hidden;

    background: #1b1c1c;
}


#loader-progress {

    width: 0%;

    height: 100%;

    background:
        linear-gradient(
            90deg,
            #ff2600,
            #ff4b00,
            #ff7a45
        );

    box-shadow:
        0 0 12px rgba(255,75,0,.8);

    transition:
        width .08s linear;
}


/* =========================================================
   BOTTOM
========================================================= */

.loader-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 10px;

    color: #444;

    font-family:
        Arial,
        sans-serif;

    font-size: 7px;

    letter-spacing: 2px;
}


#loader-percent {

    color: #ff4b00;

    font-weight: bold;
}


/* =========================================================
   EXIT
========================================================= */

#supernova-loader.loader-hidden {

    opacity: 0;

    visibility: hidden;

    pointer-events: none;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .loader-orbit {

        width: 125px;

        height: 125px;

    }

    .loader-core {

        width: 62px;

        height: 62px;

    }

    .loader-brand {

        font-size: 20px;

        letter-spacing: 5px;

    }

}

/* =========================================================
   SUPERNOVA GAMING CURSOR
========================================================= */

@media (min-width: 761px) {

    html,
    body,
    a,
    button,
    input,
    textarea,
    select,
    [role="button"] {
        cursor: none !important;
    }

    /* =====================================================
       CORE
    ===================================================== */

    #sn-cursor {

        position: fixed;

        width: 9px;
        height: 9px;

        left: 0;
        top: 0;

        border-radius: 50%;

        background: #ff5a1f;

        pointer-events: none;

        z-index: 1000001;

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

        box-shadow:
            0 0 6px #ff5a1f,
            0 0 16px rgba(241,90,36,.9),
            0 0 35px rgba(241,90,36,.45);

        transition:
            width .15s ease,
            height .15s ease,
            background .15s ease,
            box-shadow .15s ease;
    }


    /* =====================================================
       OUTER HUD RING
    ===================================================== */

    #sn-cursor-ring {

        position: fixed;

        width: 34px;
        height: 34px;

        left: 0;
        top: 0;

        border:
            1px solid rgba(241,90,36,.65);

        border-radius: 50%;

        pointer-events: none;

        z-index: 1000000;

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

        box-shadow:
            0 0 15px rgba(241,90,36,.14),
            inset 0 0 10px rgba(241,90,36,.05);

        transition:
            width .25s cubic-bezier(.2,.8,.2,1),
            height .25s cubic-bezier(.2,.8,.2,1),
            border-color .2s ease,
            background .2s ease,
            box-shadow .2s ease;
    }


    /* =====================================================
       HUD CORNERS
    ===================================================== */

    #sn-cursor-ring::before,
    #sn-cursor-ring::after {

        content: "";

        position: absolute;

        width: 6px;
        height: 6px;

        border-color: #ff6b32;

        opacity: .9;
    }

    #sn-cursor-ring::before {

        top: -3px;
        left: -3px;

        border-top: 1px solid;
        border-left: 1px solid;
    }

    #sn-cursor-ring::after {

        right: -3px;
        bottom: -3px;

        border-right: 1px solid;
        border-bottom: 1px solid;
    }


    /* =====================================================
       COORDINATES
    ===================================================== */

    #sn-cursor-coordinates {

        position: fixed;

        left: 0;
        top: 0;

        color: rgba(241,90,36,.65);

        font-family: Arial, sans-serif;

        font-size: 7px;

        letter-spacing: 1px;

        pointer-events: none;

        z-index: 999999;

        opacity: 0;

        transition: opacity .2s ease;
    }


    /* =====================================================
       HOVER
    ===================================================== */

    body.sn-cursor-hover #sn-cursor {

        width: 5px;
        height: 5px;

        background: #fff;

        box-shadow:
            0 0 8px #fff,
            0 0 20px #f15a24,
            0 0 40px rgba(241,90,36,.9);
    }

    body.sn-cursor-hover #sn-cursor-ring {

        width: 52px;
        height: 52px;

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

        background:
            rgba(241,90,36,.035);

        box-shadow:
            0 0 25px rgba(241,90,36,.25),
            inset 0 0 20px rgba(241,90,36,.08);
    }

    body.sn-cursor-hover #sn-cursor-coordinates {
        opacity: 1;
    }


    /* =====================================================
       CLICK
    ===================================================== */

    body.sn-cursor-click #sn-cursor {

        width: 14px;
        height: 14px;
    }

    body.sn-cursor-click #sn-cursor-ring {

        width: 24px;
        height: 24px;

        border-color: #fff;

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


    /* =====================================================
       OUTSIDE WINDOW
    ===================================================== */

    body.sn-cursor-hidden #sn-cursor,
    body.sn-cursor-hidden #sn-cursor-ring,
    body.sn-cursor-hidden #sn-cursor-coordinates {

        opacity: 0;
    }


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

    #supernova-loader,
    #supernova-loader * {

        cursor: none !important;
    }
}

/* =========================================================
   SUPERNOVA HUD SCROLLBAR
========================================================= */

html {
    scrollbar-width: thin;
    scrollbar-color: #f15a24 #070707;
}

/* Chrome / Edge / Opera */

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

::-webkit-scrollbar-track {
    background:
        linear-gradient(
            90deg,
            #050505,
            #090909
        );

    border-left:
        1px solid rgba(241,90,36,.08);
}

::-webkit-scrollbar-thumb {

    background:
        linear-gradient(
            180deg,
            #ff8a50 0%,
            #f15a24 45%,
            #9d2f0c 100%
        );

    border-radius: 2px;

    border:
        2px solid #070707;

    box-shadow:
        0 0 8px rgba(241,90,36,.5),
        inset 0 0 5px rgba(255,255,255,.15);
}

::-webkit-scrollbar-thumb:hover {

    background:
        linear-gradient(
            180deg,
            #ffb18b,
            #ff6a2c,
            #f15a24
        );

    box-shadow:
        0 0 14px rgba(241,90,36,.9),
        0 0 30px rgba(241,90,36,.25);
}

/* =========================================================
   SUPERNOVA SPACE BACKGROUND
========================================================= */

#supernova-stars {
    position: fixed;
    inset: 0;

    width: 100%;
    height: 100%;

    z-index: -5;

    pointer-events: none;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(241, 90, 36, .045),
            transparent 35%
        ),
        #070707;
}

/* لایه نور خیلی ظریف روی سایت */

body::after {
    content: "";

    position: fixed;
    inset: 0;

    pointer-events: none;

    z-index: -4;

    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(255,255,255,.025),
            transparent 28%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(241,90,36,.035),
            transparent 30%
        );

    animation: supernovaAmbient 10s ease-in-out infinite alternate;
}

@keyframes supernovaAmbient {

    from {
        opacity: .45;
        transform: scale(1);
    }

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

}


/* در صفحه‌های موبایل کمی سبک‌تر */

@media (max-width: 760px) {

    #supernova-stars {
        opacity: .75;
    }

}
/* =========================================================
   SUPERNOVA GLOBAL SPACE BACKGROUND
========================================================= */

body {
    position: relative;
    background: #050606;
}

/* لایه اصلی ستاره‌ها */

body::after {
    content: "";
    position: fixed;
    inset: 0;

    z-index: -10;
    pointer-events: none;

    background-image:
        radial-gradient(
            1px 1px at 8% 14%,
            rgba(255,255,255,.75),
            transparent 2px
        ),
        radial-gradient(
            1px 1px at 22% 73%,
            rgba(255,255,255,.55),
            transparent 2px
        ),
        radial-gradient(
            1px 1px at 37% 28%,
            rgba(255,255,255,.7),
            transparent 2px
        ),
        radial-gradient(
            1px 1px at 51% 82%,
            rgba(255,255,255,.45),
            transparent 2px
        ),
        radial-gradient(
            1px 1px at 64% 19%,
            rgba(255,255,255,.65),
            transparent 2px
        ),
        radial-gradient(
            1px 1px at 78% 61%,
            rgba(255,255,255,.55),
            transparent 2px
        ),
        radial-gradient(
            1px 1px at 91% 34%,
            rgba(255,255,255,.7),
            transparent 2px
        ),
        radial-gradient(
            1px 1px at 15% 45%,
            rgba(241,90,36,.7),
            transparent 2px
        ),
        radial-gradient(
            1px 1px at 72% 88%,
            rgba(241,90,36,.5),
            transparent 2px
        );

    background-size:
        280px 280px,
        360px 360px,
        420px 420px,
        310px 310px,
        390px 390px,
        450px 450px,
        330px 330px,
        500px 500px,
        600px 600px;

    opacity: .65;

    animation: supernovaStars 35s linear infinite;
}


/* =========================================================
   STAR MOVEMENT
========================================================= */

@keyframes supernovaStars {

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

    50% {
        transform:
            translate3d(-10px, 8px, 0)
            scale(1.01);
    }

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

}


/* =========================================================
   SPACE GLOW
========================================================= */

body {
    background:
        radial-gradient(
            circle at 50% 15%,
            rgba(241,90,36,.055),
            transparent 25%
        ),
        radial-gradient(
            circle at 15% 65%,
            rgba(241,90,36,.035),
            transparent 25%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(241,90,36,.035),
            transparent 25%
        ),
        #050606;
}


/* =========================================================
   COMMUNITY TRANSPARENT
========================================================= */

.community {
    background:
        radial-gradient(
            circle at center,
            rgba(241,90,36,.15),
            transparent 30%
        ),
        rgba(9,9,9,.72);
}


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

.section {
    background:
        linear-gradient(
            180deg,
            rgba(5,5,5,.35),
            rgba(5,5,5,.55)
        );
}


/* =========================================================
   GAMES SECTION
========================================================= */

.game-card {
    background:
        rgba(10,10,10,.82);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

    body::after {
        opacity: .45;
        animation-duration: 50s;
    }

}