/* =====================================================
   VEXON
   MAIN + SECTIONS STYLE
===================================================== */


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

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(86, 0, 255, 0.13),
            transparent 35%
        ),
        #03040a;
    color: #ffffff;
    font-family: "Vazirmatn", sans-serif;
    overflow-x: hidden;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

img {
    max-width: 100%;
}


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

.background-effects {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: -10;

    background:
        linear-gradient(
            180deg,
            #03040a 0%,
            #05050d 50%,
            #03040a 100%
        );
}


/* =====================================================
   NEBULAS
===================================================== */

.nebula {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.18;
    animation: nebulaMove 12s ease-in-out infinite alternate;
}

.nebula-purple {
    top: -220px;
    right: -180px;
    background: #7b2cff;
}

.nebula-green {
    top: 35%;
    left: -260px;
    background: #00ff9d;
}

.nebula-blue {
    bottom: -300px;
    right: 30%;
    background: #147cff;
}

@keyframes nebulaMove {
    from {
        transform: translate3d(0, 0, 0) scale(1);
    }

    to {
        transform: translate3d(40px, -30px, 0) scale(1.1);
    }
}


/* =====================================================
   STARS
===================================================== */

.stars {
    position: absolute;
    inset: 0;
    opacity: 0.6;

    background-image:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.9) 1px,
            transparent 1px
        );

    background-size: 120px 120px;

    animation:
        starsMove
        40s
        linear
        infinite;
}

.stars-two {
    background-size: 180px 180px;
    opacity: 0.35;
    animation-duration: 65s;
}

.stars-three {
    background-size: 260px 260px;
    opacity: 0.2;
    animation-duration: 90s;
}

@keyframes starsMove {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(120px);
    }
}


/* =====================================================
   PLANETS
===================================================== */

.planet {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(2px);
}

.planet-purple {
    width: 180px;
    height: 180px;
    right: 4%;
    top: 28%;

    background:
        radial-gradient(
            circle at 30% 30%,
            #c99cff,
            #6928ff 55%,
            #18004f
        );

    box-shadow:
        0 0 80px rgba(126, 47, 255, 0.5);
}

.planet-blue {
    width: 100px;
    height: 100px;
    left: 5%;
    bottom: 20%;

    background:
        radial-gradient(
            circle at 30% 30%,
            #9fdcff,
            #187cff 55%,
            #001b48
        );

    box-shadow:
        0 0 60px rgba(0, 126, 255, 0.4);
}


/* =====================================================
   CITY
===================================================== */

.city {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;

    height: 90px;

    display: flex;
    align-items: flex-end;

    gap: 12px;
    opacity: 0.18;
}

.city span {
    display: block;
    width: 8%;
    min-width: 25px;

    background:
        linear-gradient(
            180deg,
            #15182a,
            #080912
        );

    border-top:
        1px solid rgba(0, 255, 160, 0.15);

    box-shadow:
        0 0 20px rgba(0, 255, 160, 0.05);
}

.city span:nth-child(1) {
    height: 45%;
}

.city span:nth-child(2) {
    height: 70%;
}

.city span:nth-child(3) {
    height: 55%;
}

.city span:nth-child(4) {
    height: 90%;
}

.city span:nth-child(5) {
    height: 60%;
}

.city span:nth-child(6) {
    height: 80%;
}

.city span:nth-child(7) {
    height: 48%;
}

.city span:nth-child(8) {
    height: 75%;
}

.city span:nth-child(9) {
    height: 57%;
}

.city span:nth-child(10) {
    height: 86%;
}

.city span:nth-child(11) {
    height: 50%;
}


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

.navbar {
    position: relative;

    width: min(1400px, 94%);
    min-height: 76px;

    margin: 20px auto 0;
    padding: 12px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    background:
        rgba(7, 8, 18, 0.72);

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

    border-radius: 18px;

    backdrop-filter: blur(20px);

    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.3);
}


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

.logo {
    font-family: "Orbitron", sans-serif;
    font-size: 25px;
    font-weight: 900;
    letter-spacing: 3px;

    color: #ffffff;

    text-shadow:
        0 0 10px rgba(255, 255, 255, 0.35);

    transition: 0.3s;
}

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

.logo-x {
    color: #9b4dff;

    text-shadow:
        0 0 8px #9b4dff,
        0 0 22px #6e00ff;
}


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

.nav-links {
    display: flex;
    align-items: center;
    gap: 7px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 7px;

    padding: 11px 13px;

    border-radius: 10px;

    color: #aaaabd;

    font-size: 13px;
    font-weight: 600;

    transition:
        color 0.25s,
        background 0.25s,
        transform 0.25s;
}

.nav-link:hover {
    color: #ffffff;

    background:
        rgba(255, 255, 255, 0.05);

    transform: translateY(-2px);
}

.nav-link.active {
    color: #ffffff;

    background:
        rgba(0, 255, 157, 0.08);

    box-shadow:
        inset 0 0 20px rgba(0, 255, 157, 0.03);
}

.nav-icon {
    font-size: 16px;
}


/* =====================================================
   PROFILE
===================================================== */

.header-profile {
    display: flex;
    align-items: center;

    gap: 10px;

    min-width: 150px;

    padding: 9px 12px;

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

    border-radius: 12px;

    background:
        rgba(255, 255, 255, 0.025);

    transition: 0.3s;
}

.header-profile:hover {
    background:
        rgba(255, 255, 255, 0.06);

    transform: translateY(-2px);
}

.header-profile-icon {
    width: 37px;
    height: 37px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    background:
        rgba(132, 62, 255, 0.12);

    font-size: 18px;
}

.header-profile strong {
    display: block;
    font-size: 12px;
}

.header-profile span {
    display: block;
    margin-top: 2px;

    color: #77778c;

    font-size: 9px;
}

.header-profile b {
    margin-right: auto;

    color: #77778c;

    font-size: 20px;
}


/* =====================================================
   HOME — HERO
===================================================== */

.hero {
    width: min(1300px, 92%);
    min-height: 620px;

    margin: 35px auto 0;

    display: grid;

    grid-template-columns:
        1fr
        0.9fr;

    align-items: center;

    gap: 30px;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}


/* =====================================================
   MAIN VEXON LOGO
===================================================== */

.vexon-main-logo {
    width: min(370px, 75%);
    height: auto;

    display: block;

    margin: 0 auto 18px;

    transform: scale(1.04);

    filter:
        drop-shadow(
            0 0 18px
            rgba(139, 57, 255, 0.35)
        );

    animation:
        mainLogoFloat
        5s
        ease-in-out
        infinite;
}

@keyframes mainLogoFloat {
    0%,
    100% {
        transform:
            translateY(0)
            scale(1.04);
    }

    50% {
        transform:
            translateY(-5px)
            scale(1.045);
    }
}


/* =====================================================
   NEON SLOGAN
===================================================== */

.neon-slogan {
    margin-top: 5px;

    font-family: "Vazirmatn", sans-serif;

    font-size: clamp(28px, 4vw, 50px);

    font-weight: 900;

    line-height: 1.6;

    letter-spacing: -1px;

    color: #ffffff;

    text-shadow:
        0 0 5px rgba(255, 255, 255, 0.8),
        0 0 12px rgba(255, 255, 255, 0.4);
}

.neon-slogan span {
    color: #a76cff;

    text-shadow:
        0 0 5px #a76cff,
        0 0 15px #8b3dff,
        0 0 30px rgba(139, 61, 255, 0.8);
}

.neon-slogan strong {
    display: inline-block;

    color: #00ff9d;

    font-weight: 900;

    text-shadow:
        0 0 5px #00ff9d,
        0 0 15px #00ff9d,
        0 0 30px rgba(0, 255, 157, 0.7);
}


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

.hero-description {
    max-width: 570px;

    margin: 10px auto 0;

    color: #a4a4b7;

    font-size: 15px;
    line-height: 2;
    font-weight: 500;
}


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

.hero-buttons {
    margin-top: 27px;

    display: flex;
    justify-content: center;

    gap: 14px;

    flex-wrap: wrap;
}

.hero-button {
    min-width: 220px;

    display: flex;
    align-items: center;

    gap: 13px;

    padding: 13px 17px;

    border-radius: 14px;

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

    background:
        rgba(255, 255, 255, 0.035);

    transition:
        transform 0.25s,
        border 0.25s,
        box-shadow 0.25s;
}

.hero-button:hover {
    transform: translateY(-4px);

    border-color:
        rgba(255, 255, 255, 0.15);
}

.green-button:hover {
    box-shadow:
        0 10px 35px
        rgba(0, 255, 157, 0.12);
}

.purple-button:hover {
    box-shadow:
        0 10px 35px
        rgba(139, 61, 255, 0.15);
}

.button-icon {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 11px;

    background:
        rgba(255, 255, 255, 0.05);

    font-size: 20px;
}

.hero-button strong {
    display: block;
    text-align: right;

    font-size: 13px;
}

.hero-button small {
    display: block;

    margin-top: 3px;

    color: #7d7d91;

    font-size: 9px;
}


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

.hero-visual {
    position: relative;

    min-height: 520px;

    display: flex;

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

.bubble-glow {
    position: absolute;

    width: 380px;
    height: 380px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(123, 58, 255, 0.25),
            transparent 65%
        );

    filter: blur(20px);

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

@keyframes bubbleGlow {
    0%,
    100% {
        transform: scale(0.95);
        opacity: 0.65;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

.vexon-bubble-image {
    position: relative;
    z-index: 2;

    width: min(560px, 100%);
    height: auto;

    display: block;

    filter:
        drop-shadow(
            0 25px 55px
            rgba(0, 0, 0, 0.4)
        );

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

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

    50% {
        transform:
            translateY(-12px)
            rotate(1deg);
    }
}


/* =====================================================
   DASHBOARD
===================================================== */

.dashboard-section {
    width: min(1400px, 92%);

    margin:
        30px auto 100px;

    display: grid;

    grid-template-columns:
        minmax(0, 1.7fr)
        minmax(300px, 0.8fr);

    gap: 20px;
}

.featured-games,
.news-panel {
    padding: 22px;

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

    border-radius: 20px;

    background:
        rgba(8, 9, 18, 0.62);

    backdrop-filter: blur(20px);

    box-shadow:
        0 20px 70px
        rgba(0, 0, 0, 0.2);
}

.panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-bottom: 20px;
}

.panel-label {
    display: block;

    color: #00ff9d;

    font-family: "Orbitron", sans-serif;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 4px;
}

.panel-header h2 {
    font-size: 20px;
    font-weight: 800;
}

.view-all {
    color: #88889c;
    font-size: 11px;

    transition: 0.25s;
}

.view-all:hover {
    color: #00ff9d;
}

.game-cards {
    display: grid;

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

    gap: 13px;
}

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

    padding: 18px;

    display: flex;
    align-items: center;

    gap: 14px;

    position: relative;

    overflow: hidden;

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

    border-radius: 15px;

    background:
        rgba(255, 255, 255, 0.025);

    transition:
        transform 0.25s,
        border 0.25s,
        background 0.25s;
}

.game-card:hover {
    transform: translateY(-5px);

    background:
        rgba(255, 255, 255, 0.045);
}

.green-card:hover {
    border-color:
        rgba(0, 255, 157, 0.25);
}

.purple-card:hover {
    border-color:
        rgba(151, 74, 255, 0.25);
}

.blue-card:hover {
    border-color:
        rgba(50, 130, 255, 0.25);
}

.gold-card:hover {
    border-color:
        rgba(255, 195, 60, 0.25);
}

.game-card-icon {
    flex-shrink: 0;

    width: 55px;
    height: 55px;

    display: grid;
    place-items: center;

    border-radius: 14px;

    background:
        rgba(255, 255, 255, 0.045);

    font-size: 25px;
}

.game-card-content {
    min-width: 0;
    flex: 1;
}

.game-category {
    display: block;

    margin-bottom: 5px;

    color: #77778c;

    font-family: "Orbitron", sans-serif;

    font-size: 7px;

    letter-spacing: 1px;
}

.game-card h3 {
    font-size: 15px;
    font-weight: 800;

    margin-bottom: 5px;
}

.game-card p {
    color: #77778c;

    font-size: 10px;
    line-height: 1.7;
}

.game-play {
    position: absolute;

    bottom: 12px;
    left: 13px;

    padding: 6px 9px;

    border-radius: 7px;

    color: #aaaabc;

    font-size: 9px;

    background:
        rgba(255, 255, 255, 0.04);

    transition: 0.25s;
}

.game-play:hover {
    color: #ffffff;

    background:
        rgba(0, 255, 157, 0.1);
}


/* =====================================================
   NEWS PANEL
===================================================== */

.news-list {
    display: flex;
    flex-direction: column;

    gap: 10px;
}

.news-item {
    display: flex;
    align-items: flex-start;

    gap: 12px;

    padding: 13px;

    border-radius: 12px;

    background:
        rgba(255, 255, 255, 0.025);

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

.news-icon {
    flex-shrink: 0;

    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    font-family: "Orbitron", sans-serif;

    font-size: 7px;
    font-weight: 800;
}

.news-icon.red {
    color: #ff5470;

    background:
        rgba(255, 84, 112, 0.1);
}

.news-icon.purple {
    color: #a76cff;

    background:
        rgba(167, 108, 255, 0.1);
}

.news-icon.green {
    color: #00ff9d;

    background:
        rgba(0, 255, 157, 0.1);
}

.news-item h3 {
    font-size: 11px;

    margin-bottom: 4px;
}

.news-item p {
    color: #77778c;

    font-size: 9px;
    line-height: 1.8;
}


/* =====================================================
   CAFE PAGE — HERO
===================================================== */

.feature-section {
    width: min(1250px, 92%);

    min-height: 550px;

    margin: 55px auto 30px;

    display: grid;

    grid-template-columns:
        1.05fr
        0.95fr;

    align-items: center;

    gap: 55px;
}

.feature-content {
    text-align: right;

    position: relative;
    z-index: 2;
}

.section-label {
    display: inline-flex;
    align-items: center;

    padding: 8px 13px;

    margin-bottom: 18px;

    border-radius: 10px;

    background:
        rgba(0, 255, 157, 0.07);

    border:
        1px solid rgba(0, 255, 157, 0.12);

    color: #00ff9d;

    font-family: "Orbitron", sans-serif;

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

    letter-spacing: 1px;

    box-shadow:
        0 0 25px rgba(0, 255, 157, 0.04);
}

.feature-content h1 {
    font-size: clamp(38px, 5vw, 68px);

    font-weight: 900;

    line-height: 1.3;

    margin-bottom: 18px;
}

.feature-content h1 span {
    display: block;

    margin-top: 8px;

    color: #a76cff;

    text-shadow:
        0 0 7px #a76cff,
        0 0 18px rgba(139, 61, 255, 0.7),
        0 0 35px rgba(139, 61, 255, 0.35);
}

.feature-content p {
    max-width: 650px;

    color: #9999ad;

    font-size: 15px;

    line-height: 2.1;

    margin-bottom: 28px;
}


/* =====================================================
   PRIMARY BUTTON
===================================================== */

.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 190px;

    padding: 13px 20px;

    border-radius: 13px;

    color: #ffffff;

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

    background:
        linear-gradient(
            135deg,
            rgba(123, 44, 255, 0.85),
            rgba(0, 255, 157, 0.6)
        );

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

    box-shadow:
        0 10px 35px rgba(103, 44, 255, 0.15);

    transition:
        transform 0.25s,
        box-shadow 0.25s,
        filter 0.25s;
}

.primary-button:hover {
    transform: translateY(-4px);

    filter: brightness(1.12);

    box-shadow:
        0 15px 40px rgba(103, 44, 255, 0.25),
        0 0 25px rgba(0, 255, 157, 0.1);
}


/* =====================================================
   CAFE DIGITAL CARD
===================================================== */

.cafe-card {
    min-height: 430px;

    position: relative;

    display: flex;

    flex-direction: column;

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

    gap: 10px;

    padding: 40px;

    overflow: hidden;

    border-radius: 30px;

    background:
        linear-gradient(
            145deg,
            rgba(124, 44, 255, 0.10),
            rgba(0, 255, 157, 0.035)
        );

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

    backdrop-filter: blur(25px);

    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.35),
        inset 0 0 70px rgba(123, 44, 255, 0.035);

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

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

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

.cafe-card::before {
    content: "";

    position: absolute;
    inset: 1px;

    border-radius: 29px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.04),
            transparent 35%
        );

    pointer-events: none;
}

.cafe-glow {
    position: absolute;

    width: 260px;
    height: 260px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(123, 44, 255, 0.32),
            transparent 68%
        );

    filter: blur(25px);

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

@keyframes cafeGlow {
    0%,
    100% {
        transform: scale(0.92);
        opacity: 0.65;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

.cafe-icon {
    position: relative;
    z-index: 2;

    width: 115px;
    height: 115px;

    display: grid;
    place-items: center;

    margin-bottom: 12px;

    border-radius: 32px;

    font-size: 55px;

    background:
        linear-gradient(
            135deg,
            rgba(123, 44, 255, 0.16),
            rgba(0, 255, 157, 0.06)
        );

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

    box-shadow:
        0 0 45px rgba(123, 44, 255, 0.15);
}

.cafe-card strong {
    position: relative;
    z-index: 2;

    font-family: "Orbitron", sans-serif;

    font-size: 25px;

    letter-spacing: 3px;

    color: #ffffff;

    text-shadow:
        0 0 12px rgba(255, 255, 255, 0.35);
}

.cafe-card > span {
    position: relative;
    z-index: 2;

    color: #a76cff;

    font-family: "Orbitron", sans-serif;

    font-size: 10px;

    letter-spacing: 4px;

    font-weight: 700;
}

.cafe-status {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;

    gap: 8px;

    margin-top: 18px;

    padding: 8px 12px;

    border-radius: 20px;

    color: #00ff9d;

    font-family: "Orbitron", sans-serif;

    font-size: 8px;

    letter-spacing: 2px;

    background:
        rgba(0, 255, 157, 0.055);

    border:
        1px solid rgba(0, 255, 157, 0.1);
}

.cafe-status i {
    width: 7px;
    height: 7px;

    display: block;

    border-radius: 50%;

    background: #00ff9d;

    box-shadow:
        0 0 10px #00ff9d;

    animation:
        onlinePulse
        1.6s
        ease-in-out
        infinite;
}

@keyframes onlinePulse {
    0%,
    100% {
        opacity: 0.45;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.15);
    }
}


/* =====================================================
   CAFE — GENERAL SECTION
===================================================== */

.section {
    width: min(1250px, 92%);

    margin:
        70px auto 0;
}

.section-title {
    text-align: center;

    margin-bottom: 30px;
}

.section-title > span {
    display: inline-block;

    margin-bottom: 8px;

    color: #00ff9d;

    font-family: "Orbitron", sans-serif;

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

    letter-spacing: 2px;
}

.section-title h2 {
    font-size: clamp(27px, 4vw, 40px);

    font-weight: 900;

    margin-bottom: 8px;
}

.section-title p {
    color: #7e7e92;

    font-size: 12px;
}


/* =====================================================
   GAME ROOMS
===================================================== */

.games-grid {
    display: grid;

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

    gap: 15px;
}

.game-box {
    min-height: 280px;

    position: relative;

    padding: 24px;

    overflow: hidden;

    display: flex;
    flex-direction: column;

    border-radius: 20px;

    background:
        rgba(255, 255, 255, 0.025);

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

    backdrop-filter: blur(18px);

    transition:
        transform 0.3s,
        border 0.3s,
        background 0.3s,
        box-shadow 0.3s;
}

.game-box::before {
    content: "";

    position: absolute;

    width: 160px;
    height: 160px;

    top: -90px;
    right: -80px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(123, 44, 255, 0.18),
            transparent 70%
        );

    filter: blur(10px);

    pointer-events: none;
}

.game-box:hover {
    transform: translateY(-7px);

    background:
        rgba(255, 255, 255, 0.04);

    border-color:
        rgba(167, 108, 255, 0.2);

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.25);
}

.game-icon {
    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    margin-bottom: 18px;

    border-radius: 16px;

    font-size: 27px;

    background:
        rgba(255, 255, 255, 0.045);

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

.game-tag {
    display: inline-block;

    color: #77778c;

    font-family: "Orbitron", sans-serif;

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 1.3px;

    margin-bottom: 7px;
}

.game-box h3 {
    font-size: 20px;

    font-weight: 900;

    margin-bottom: 7px;
}

.game-box p {
    color: #77778c;

    font-size: 10px;

    line-height: 1.9;

    margin-bottom: 20px;
}

.card-button {
    margin-top: auto;

    align-self: flex-start;

    padding: 7px 14px;

    border-radius: 8px;

    color: #ccccda;

    font-size: 9px;
    font-weight: 700;

    background:
        rgba(255, 255, 255, 0.04);

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

    transition:
        background 0.25s,
        color 0.25s,
        transform 0.25s;
}

.card-button:hover {
    color: #ffffff;

    background:
        rgba(0, 255, 157, 0.1);

    transform: translateY(-2px);
}


/* =====================================================
   HOW IT WORKS
===================================================== */

.guide-section {
    width: min(1100px, 92%);

    margin:
        100px auto 100px;
}

.guide-grid {
    display: grid;

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

    gap: 18px;
}

.guide-card {
    position: relative;

    min-height: 230px;

    padding: 26px;

    overflow: hidden;

    text-align: center;

    border-radius: 20px;

    background:
        rgba(255, 255, 255, 0.025);

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

    transition:
        transform 0.3s,
        border 0.3s,
        background 0.3s;
}

.guide-card:hover {
    transform: translateY(-6px);

    background:
        rgba(255, 255, 255, 0.04);

    border-color:
        rgba(0, 255, 157, 0.18);
}

.guide-card > span {
    position: absolute;

    top: 15px;
    right: 18px;

    color: rgba(255, 255, 255, 0.15);

    font-family: "Orbitron", sans-serif;

    font-size: 18px;

    font-weight: 900;
}

.guide-card > div {
    width: 60px;
    height: 60px;

    display: grid;
    place-items: center;

    margin: 15px auto 16px;

    border-radius: 18px;

    background:
        rgba(123, 44, 255, 0.08);

    font-size: 27px;

    box-shadow:
        0 0 30px rgba(123, 44, 255, 0.08);
}

.guide-card h3 {
    font-size: 15px;

    margin-bottom: 7px;
}

.guide-card p {
    color: #77778c;

    font-size: 10px;

    line-height: 1.9;
}


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

footer {
    width: min(1250px, 92%);

    margin: 0 auto 30px;

    padding:
        30px
        20px;

    text-align: center;

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

    color: #707084;

    font-size: 10px;
}

.footer-logo {
    margin-bottom: 8px;

    color: #ffffff;

    font-family: "Orbitron", sans-serif;

    font-size: 24px;
    font-weight: 900;

    letter-spacing: 3px;
}

.footer-logo span {
    color: #9b4dff;

    text-shadow:
        0 0 10px #7b2cff;
}

footer > p {
    color: #8a8a9d;

    font-family: "Orbitron", sans-serif;

    font-size: 8px;

    letter-spacing: 2px;

    margin-bottom: 15px;
}

.footer-socials {
    display: flex;

    justify-content: center;

    gap: 10px;

    margin-bottom: 14px;
}

.footer-socials span {
    width: 35px;
    height: 35px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    background:
        rgba(255, 255, 255, 0.035);

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

    transition:
        transform 0.25s,
        background 0.25s;
}

.footer-socials span:hover {
    transform: translateY(-3px);

    background:
        rgba(123, 44, 255, 0.09);
}


/* =====================================================
   MOBILE BOTTOM NAV
===================================================== */

.mobile-bottom-nav {
    display: none;
}


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

@media (max-width: 1100px) {

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

    .feature-section {
        gap: 35px;
    }
}


@media (max-width: 900px) {

    body {
        padding-bottom: 72px;
    }


    /* NAVBAR */

    .navbar {
        width: 94%;

        min-height: 62px;

        margin-top: 10px;

        padding: 10px 14px;
    }

    .nav-links {
        display: none;
    }

    .header-profile {
        min-width: auto;
        padding: 6px;
    }

    .header-profile > div:nth-child(2),
    .header-profile b {
        display: none;
    }

    .logo {
        font-size: 21px;
    }


    /* HOME HERO */

    .hero {
        width: 92%;

        margin-top: 15px;

        min-height: auto;

        display: flex;

        flex-direction: column;

        gap: 5px;
    }

    .hero-content {
        order: 1;

        width: 100%;

        padding-top: 20px;
    }

    .hero-visual {
        order: 2;

        width: 100%;

        min-height: auto;

        margin-top: 5px;
    }

    .vexon-main-logo {
        width: min(300px, 75%);

        margin-bottom: 10px;

        transform: scale(1.035);
    }

    .neon-slogan {
        font-size: clamp(25px, 7vw, 38px);

        line-height: 1.8;
    }

    .hero-description {
        font-size: 12px;

        line-height: 2;
    }

    .hero-buttons {
        margin-top: 20px;

        flex-direction: column;

        align-items: stretch;

        width: min(400px, 100%);

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

    .hero-button {
        min-width: 0;

        width: 100%;
    }

    .vexon-bubble-image {
        width: min(430px, 100%);

        margin-top: -5px;
    }

    .bubble-glow {
        width: 280px;
        height: 280px;
    }


    /* DASHBOARD */

    .dashboard-section {
        width: 92%;

        margin-top: 20px;

        margin-bottom: 35px;

        display: flex;

        flex-direction: column;
    }

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

    .featured-games,
    .news-panel {
        padding: 16px;

        border-radius: 16px;
    }


    /* CAFE */

    .feature-section {
        width: 92%;

        margin-top: 35px;

        min-height: auto;

        display: flex;

        flex-direction: column;

        gap: 30px;
    }

    .feature-content {
        width: 100%;

        text-align: center;

        padding-top: 15px;
    }

    .feature-content h1 {
        font-size: clamp(34px, 9vw, 52px);
    }

    .feature-content p {
        margin-left: auto;
        margin-right: auto;

        font-size: 12px;
    }

    .cafe-card {
        width: min(520px, 100%);

        min-height: 360px;

        margin: 0 auto;
    }

    .section {
        margin-top: 55px;
    }

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

    .guide-section {
        margin-top: 70px;

        margin-bottom: 60px;
    }

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

    .game-box {
        min-height: 245px;
    }


    /* FOOTER */

    footer {
        width: 92%;

        margin-bottom: 20px;
    }


    /* MOBILE NAV */

    .mobile-bottom-nav {
        position: fixed;

        display: flex;

        align-items: stretch;

        justify-content: space-around;

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

        width: 100%;

        height: 66px;

        z-index: 9999;

        padding:
            7px
            8px
            calc(7px + env(safe-area-inset-bottom));

        background:
            rgba(5, 6, 14, 0.96);

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

        box-shadow:
            0 -10px 35px rgba(0, 0, 0, 0.45);

        backdrop-filter:
            blur(18px);
    }

    .mobile-nav-item {
        flex: 1;

        display: flex;

        flex-direction: column;

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

        gap: 3px;

        color: #707084;

        font-size: 18px;

        transition: 0.2s;
    }

    .mobile-nav-item small {
        font-family: "Vazirmatn", sans-serif;

        font-size: 8px;

        font-weight: 600;
    }

    .mobile-nav-item.active {
        color: #00ff9d;

        text-shadow:
            0 0 10px
            rgba(0, 255, 157, 0.5);
    }

    .home-v-icon {
        width: 29px;
        height: 29px;

        display: grid;
        place-items: center;

        border-radius: 8px;

        font-family: "Orbitron", sans-serif;

        font-size: 13px;
        font-weight: 900;

        color: #ffffff;

        background:
            linear-gradient(
                135deg,
                #7b2cff,
                #00ff9d
            );

        box-shadow:
            0 0 16px
            rgba(123, 44, 255, 0.4);
    }
}


/* =====================================================
   SMALL PHONES
===================================================== */

@media (max-width: 480px) {

    .navbar {
        border-radius: 14px;
    }

    .hero-content {
        padding-top: 12px;
    }

    .vexon-main-logo {
        width: 250px;
    }

    .neon-slogan {
        font-size: 25px;

        line-height: 1.9;
    }

    .hero-description {
        font-size: 11px;
    }

    .hero-button {
        padding: 11px 13px;
    }

    .button-icon {
        width: 38px;
        height: 38px;
    }

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

        padding: 14px;
    }

    .game-card-icon {
        width: 48px;
        height: 48px;

        font-size: 21px;
    }

    .game-card h3 {
        font-size: 13px;
    }

    .game-card p {
        font-size: 9px;
    }

    .mobile-bottom-nav {
        height: 64px;
    }

    /* CAFE */

    .feature-content h1 {
        font-size: 32px;
    }

    .feature-content p {
        font-size: 11px;
    }

    .primary-button {
        width: 100%;
    }

    .cafe-card {
        min-height: 320px;

        padding: 25px 15px;
    }

    .cafe-icon {
        width: 90px;
        height: 90px;

        font-size: 43px;

        border-radius: 25px;
    }

    .cafe-card strong {
        font-size: 19px;

        letter-spacing: 2px;
    }

    .cafe-card > span {
        font-size: 8px;

        letter-spacing: 2px;
    }

    .section-title h2 {
        font-size: 27px;
    }

    .section-title p {
        font-size: 10px;
    }

    .game-box {
        padding: 20px;

        min-height: 230px;
    }

    .guide-card {
        min-height: 210px;

        padding: 22px;
    }
}

/* =====================================================
   PROFILE PAGE
===================================================== */

.profile-section {
    width: min(1150px, 92%);
    min-height: 620px;

    margin: 55px auto 80px;

    display: grid;

    grid-template-columns:
        1fr
        0.85fr;

    align-items: center;

    gap: 55px;
}

.profile-page-content {
    position: relative;
    z-index: 2;

    text-align: right;
}

.profile-page-content h1 {
    margin-bottom: 18px;

    font-size: clamp(38px, 5vw, 64px);

    font-weight: 900;

    line-height: 1.35;
}

.profile-page-content h1 span {
    display: block;

    margin-top: 8px;

    color: #a76cff;

    text-shadow:
        0 0 7px #a76cff,
        0 0 18px rgba(139, 61, 255, 0.7),
        0 0 35px rgba(139, 61, 255, 0.35);
}

.profile-page-content p {
    max-width: 650px;

    color: #9999ad;

    font-size: 14px;

    line-height: 2.1;
}


/* =====================================================
   BIG PROFILE CARD
===================================================== */

.profile-big-card {
    position: relative;

    min-height: 430px;

    padding: 40px;

    display: flex;

    flex-direction: column;

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

    gap: 10px;

    overflow: hidden;

    border-radius: 30px;

    background:
        linear-gradient(
            145deg,
            rgba(123, 44, 255, 0.10),
            rgba(0, 255, 157, 0.035)
        );

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

    backdrop-filter: blur(25px);

    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.35),
        inset 0 0 70px rgba(123, 44, 255, 0.035);

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

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

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

.profile-big-card::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(123, 44, 255, 0.25),
            transparent 68%
        );

    filter: blur(25px);

    pointer-events: none;

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

@keyframes profileGlow {
    0%,
    100% {
        transform: scale(0.9);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

.profile-big-avatar {
    position: relative;
    z-index: 2;

    width: 125px;
    height: 125px;

    display: grid;
    place-items: center;

    margin-bottom: 15px;

    border-radius: 35px;

    font-size: 58px;

    background:
        linear-gradient(
            135deg,
            rgba(123, 44, 255, 0.17),
            rgba(0, 255, 157, 0.06)
        );

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

    box-shadow:
        0 0 50px rgba(123, 44, 255, 0.18);
}

.profile-big-card strong {
    position: relative;
    z-index: 2;

    font-family: "Orbitron", sans-serif;

    font-size: 25px;

    letter-spacing: 2px;

    color: #ffffff;

    text-shadow:
        0 0 12px rgba(255, 255, 255, 0.35);
}

.profile-big-card > span {
    position: relative;
    z-index: 2;

    color: #a76cff;

    font-family: "Orbitron", sans-serif;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;
}


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

.big-level-bar {
    position: relative;
    z-index: 2;

    width: min(280px, 100%);
    height: 9px;

    margin-top: 14px;

    overflow: hidden;

    border-radius: 20px;

    background:
        rgba(255, 255, 255, 0.06);

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

.big-level-bar i {
    display: block;

    width: 42%;
    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            #7b2cff,
            #00ff9d
        );

    box-shadow:
        0 0 15px rgba(0, 255, 157, 0.3);
}


/* =====================================================
   PROFILE COINS
===================================================== */

.profile-big-coins {
    position: relative;
    z-index: 2;

    margin-top: 18px;

    padding: 9px 14px;

    border-radius: 12px;

    color: #ffd966;

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

    background:
        rgba(255, 217, 102, 0.06);

    border:
        1px solid rgba(255, 217, 102, 0.1);
}


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

@media (max-width: 900px) {

    .profile-section {
        width: 92%;

        min-height: auto;

        margin-top: 35px;
        margin-bottom: 60px;

        display: flex;

        flex-direction: column;

        gap: 30px;
    }

    .profile-page-content {
        width: 100%;

        text-align: center;

        padding-top: 15px;
    }

    .profile-page-content h1 {
        font-size: clamp(34px, 9vw, 52px);
    }

    .profile-page-content p {
        margin-left: auto;
        margin-right: auto;

        font-size: 12px;
    }

    .profile-big-card {
        width: min(520px, 100%);

        min-height: 360px;

        margin: 0 auto;

        padding: 30px 20px;
    }
}


@media (max-width: 480px) {

    .profile-page-content h1 {
        font-size: 32px;
    }

    .profile-page-content p {
        font-size: 11px;
    }

    .profile-big-card {
        min-height: 320px;

        border-radius: 24px;
    }

    .profile-big-avatar {
        width: 95px;
        height: 95px;

        border-radius: 27px;

        font-size: 45px;
    }

    .profile-big-card strong {
        font-size: 19px;
    }

    .big-level-bar {
        width: 220px;
    }
}

/* =====================================================
   LEADERBOARD PAGE
===================================================== */

.leaderboard {
    width: min(900px, 100%);

    margin: 35px auto 110px;

    display: flex;
    flex-direction: column;

    gap: 14px;
}

.rank {
    position: relative;

    min-height: 92px;

    display: flex;
    align-items: center;

    gap: 18px;

    padding: 16px 22px;

    border-radius: 18px;

    background:
        rgba(255, 255, 255, 0.025);

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

    backdrop-filter: blur(18px);

    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.18);

    transition:
        transform 0.3s,
        background 0.3s,
        border 0.3s,
        box-shadow 0.3s;
}

.rank:hover {
    transform: translateY(-5px);

    background:
        rgba(255, 255, 255, 0.045);

    border-color:
        rgba(167, 108, 255, 0.18);

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.28);
}


/* اول */

.rank-first {
    min-height: 105px;

    background:
        linear-gradient(
            135deg,
            rgba(123, 44, 255, 0.11),
            rgba(0, 255, 157, 0.035)
        );

    border-color:
        rgba(167, 108, 255, 0.18);

    box-shadow:
        0 20px 65px rgba(123, 44, 255, 0.10);
}

.rank-first:hover {
    border-color:
        rgba(167, 108, 255, 0.3);

    box-shadow:
        0 25px 75px rgba(123, 44, 255, 0.16);
}


/* شماره رتبه */

.rank-number {
    width: 38px;

    flex-shrink: 0;

    color: #88889c;

    font-family: "Orbitron", sans-serif;

    font-size: 15px;
    font-weight: 900;

    text-align: center;
}

.rank-first .rank-number {
    color: #ffd966;

    text-shadow:
        0 0 10px rgba(255, 217, 102, 0.5);
}


/* آواتار */

.rank-avatar {
    width: 52px;
    height: 52px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 15px;

    background:
        rgba(255, 255, 255, 0.045);

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

    font-size: 24px;
}

.rank-first .rank-avatar {
    width: 62px;
    height: 62px;

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 217, 102, 0.12),
            rgba(123, 44, 255, 0.10)
        );

    border-color:
        rgba(255, 217, 102, 0.14);

    box-shadow:
        0 0 30px rgba(255, 217, 102, 0.08);
}


/* اطلاعات بازیکن */

.rank-info {
    min-width: 0;

    flex: 1;
}

.rank-info strong {
    display: block;

    margin-bottom: 4px;

    color: #ffffff;

    font-size: 14px;
    font-weight: 900;
}

.rank-info span {
    display: block;

    color: #6f6f84;

    font-family: "Orbitron", sans-serif;

    font-size: 7px;

    letter-spacing: 1.2px;
}


/* XP */

.rank > b {
    flex-shrink: 0;

    color: #00ff9d;

    font-family: "Orbitron", sans-serif;

    font-size: 10px;

    letter-spacing: 1px;

    padding: 8px 11px;

    border-radius: 9px;

    background:
        rgba(0, 255, 157, 0.055);

    border:
        1px solid rgba(0, 255, 157, 0.08);
}

.rank-first > b {
    color: #ffd966;

    background:
        rgba(255, 217, 102, 0.055);

    border-color:
        rgba(255, 217, 102, 0.10);

    text-shadow:
        0 0 8px rgba(255, 217, 102, 0.25);
}


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

@media (max-width: 900px) {

    .leaderboard {
        width: 100%;

        margin-top: 25px;
        margin-bottom: 70px;

        gap: 11px;
    }

    .rank {
        min-height: 82px;

        padding: 13px 14px;

        gap: 12px;

        border-radius: 15px;
    }

    .rank-first {
        min-height: 92px;
    }

    .rank-number {
        width: 25px;

        font-size: 12px;
    }

    .rank-avatar {
        width: 45px;
        height: 45px;

        border-radius: 13px;

        font-size: 21px;
    }

    .rank-first .rank-avatar {
        width: 52px;
        height: 52px;

        border-radius: 15px;
    }

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

    .rank-info span {
        font-size: 6px;
    }

    .rank > b {
        font-size: 8px;

        padding: 7px 8px;
    }
}


@media (max-width: 480px) {

    .leaderboard {
        margin-bottom: 55px;
    }

    .rank {
        padding: 12px 10px;

        gap: 9px;
    }

    .rank-number {
        width: 20px;

        font-size: 10px;
    }

    .rank-avatar {
        width: 40px;
        height: 40px;

        font-size: 18px;
    }

    .rank-first .rank-avatar {
        width: 46px;
        height: 46px;
    }

    .rank-info strong {
        font-size: 11px;
    }

    .rank-info span {
        font-size: 5px;

        letter-spacing: 0.8px;
    }

    .rank > b {
        font-size: 7px;

        padding: 6px 7px;
    }
}

/* =====================================================
   CREATORS PAGE
===================================================== */

.creators-section {
    width: min(1050px, 92%);

    min-height: 620px;

    margin: 55px auto 100px;

    position: relative;
}

.creators-section .section-title {
    margin-bottom: 35px;
}

.creators-section .section-title h1 {
    font-size: clamp(34px, 5vw, 50px);
    font-weight: 900;
}

.creators-grid {
    display: grid;

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

    gap: 20px;

    max-width: 850px;

    margin: 0 auto;
}

.creator-card {
    position: relative;

    min-height: 300px;

    padding: 30px;

    display: flex;
    flex-direction: column;

    align-items: center;

    text-align: center;

    overflow: hidden;

    border-radius: 24px;

    background:
        rgba(255, 255, 255, 0.025);

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

    backdrop-filter: blur(20px);

    box-shadow:
        0 20px 70px rgba(0, 0, 0, 0.25);

    transition:
        transform 0.3s,
        border 0.3s,
        background 0.3s,
        box-shadow 0.3s;
}

.creator-card::before {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    top: -120px;
    left: -100px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(123, 44, 255, 0.2),
            transparent 70%
        );

    filter: blur(18px);

    pointer-events: none;
}

.creator-card:hover {
    transform: translateY(-7px);

    background:
        rgba(255, 255, 255, 0.045);

    border-color:
        rgba(167, 108, 255, 0.2);

    box-shadow:
        0 25px 75px rgba(0, 0, 0, 0.3);
}

.creator-icon {
    position: relative;
    z-index: 2;

    width: 82px;
    height: 82px;

    display: grid;
    place-items: center;

    margin-bottom: 18px;

    border-radius: 24px;

    font-size: 38px;

    background:
        linear-gradient(
            135deg,
            rgba(123, 44, 255, 0.14),
            rgba(0, 255, 157, 0.05)
        );

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

    box-shadow:
        0 0 35px rgba(123, 44, 255, 0.1);
}

.creator-card > span {
    position: relative;
    z-index: 2;

    margin-bottom: 6px;

    color: #00ff9d;

    font-size: 9px;
    font-weight: 700;
}

.creator-card h3 {
    position: relative;
    z-index: 2;

    margin-bottom: 8px;

    font-family: "Orbitron", sans-serif;

    font-size: 22px;
    font-weight: 900;

    letter-spacing: 1px;

    color: #ffffff;

    text-shadow:
        0 0 10px rgba(255, 255, 255, 0.18);
}

.creator-card p {
    position: relative;
    z-index: 2;

    max-width: 300px;

    color: #77778c;

    font-size: 10px;

    line-height: 1.9;
}


/* =====================================================
   FEATURED CREATOR
===================================================== */

.featured-creator {
    background:
        linear-gradient(
            145deg,
            rgba(123, 44, 255, 0.11),
            rgba(0, 255, 157, 0.035)
        );

    border-color:
        rgba(167, 108, 255, 0.18);

    box-shadow:
        0 25px 80px rgba(123, 44, 255, 0.1);
}

.featured-creator .creator-icon {
    background:
        linear-gradient(
            135deg,
            rgba(123, 44, 255, 0.2),
            rgba(0, 255, 157, 0.08)
        );

    box-shadow:
        0 0 45px rgba(123, 44, 255, 0.17);
}

.featured-creator > span {
    color: #a76cff;
}

.featured-creator:hover {
    border-color:
        rgba(167, 108, 255, 0.32);

    box-shadow:
        0 30px 90px rgba(123, 44, 255, 0.16);
}


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

@media (max-width: 900px) {

    .creators-section {
        width: 92%;

        min-height: auto;

        margin-top: 35px;

        margin-bottom: 65px;
    }

    .creators-grid {
        grid-template-columns: 1fr;

        max-width: 520px;

        gap: 15px;
    }

    .creator-card {
        min-height: 270px;

        padding: 25px;
    }
}

@media (max-width: 480px) {

    .creators-section .section-title h1 {
        font-size: 32px;
    }

    .creator-card {
        min-height: 250px;

        padding: 22px;

        border-radius: 20px;
    }

    .creator-icon {
        width: 70px;
        height: 70px;

        border-radius: 20px;

        font-size: 32px;
    }

    .creator-card h3 {
        font-size: 18px;
    }

    .creator-card p {
        font-size: 9px;
    }
}

/* =====================================================
   DESKTOP V HOME ICON
===================================================== */

.desktop-v-icon {
    width: 29px;
    height: 29px;

    display: grid;
    place-items: center;

    border-radius: 8px;

    font-family: "Orbitron", sans-serif;
    font-size: 13px;
    font-weight: 900;

    color: #00ff9d;

    background: #03040a;

    border: 1px solid rgba(0, 255, 157, 0.18);

    box-shadow:
        0 0 12px rgba(0, 255, 157, 0.12);

    text-shadow:
        0 0 8px #00ff9d;

    transition:
        transform 0.25s,
        box-shadow 0.25s,
        border-color 0.25s;
}

.nav-link:hover .desktop-v-icon {
    transform: scale(1.08);

    border-color:
        rgba(0, 255, 157, 0.4);

    box-shadow:
        0 0 18px rgba(0, 255, 157, 0.25);
}


/* =====================================================
   CREATORS FOOTER LINK
===================================================== */

.creators-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 6px;
    margin-bottom: 12px;

    padding: 8px 14px;

    border-radius: 9px;

    color: #8f8fa3;

    font-size: 9px;
    font-weight: 700;

    background: rgba(255, 255, 255, 0.025);

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

    transition:
        color 0.25s,
        background 0.25s,
        border-color 0.25s,
        transform 0.25s;
}

.creators-link:hover {
    color: #00ff9d;

    background:
        rgba(0, 255, 157, 0.06);

    border-color:
        rgba(0, 255, 157, 0.15);

    transform: translateY(-2px);
}



/* =====================================================
   REDUCE MOTION
===================================================== */

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

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;

        scroll-behavior: auto !important;

        transition-duration: 0.01ms !important;
    }
}

/* =====================================================
   AUTH / REGISTER PAGE
===================================================== */

.auth-section {
    width: min(1000px, 92%);

    min-height: 650px;

    margin: 45px auto 90px;

    display: flex;

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

    position: relative;
}


/* =====================================================
   AUTH CARD
===================================================== */

.auth-card {
    position: relative;

    width: min(500px, 100%);

    padding: 42px 38px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    overflow: hidden;

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(123, 44, 255, 0.10),
            rgba(0, 255, 157, 0.035)
        );

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

    backdrop-filter: blur(24px);

    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.35),
        inset 0 0 80px rgba(123, 44, 255, 0.025);

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

@keyframes authCardFloat {

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

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


/* =====================================================
   AUTH GLOW
===================================================== */

.auth-glow {
    position: absolute;

    width: 320px;
    height: 320px;

    top: -170px;
    left: 50%;

    transform: translateX(-50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(123, 44, 255, 0.25),
            transparent 68%
        );

    filter: blur(25px);

    pointer-events: none;

    animation:
        authGlowMove
        5s
        ease-in-out
        infinite;
}

@keyframes authGlowMove {

    0%,
    100% {
        transform:
            translateX(-50%)
            scale(0.9);
        opacity: 0.65;
    }

    50% {
        transform:
            translateX(-50%)
            scale(1.08);
        opacity: 1;
    }
}


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

.auth-logo {
    position: relative;
    z-index: 2;

    width: 72px;
    height: 72px;

    display: grid;
    place-items: center;

    margin-bottom: 18px;

    border-radius: 20px;

    background:
        #03040a;

    border:
        1px solid rgba(0, 255, 157, 0.18);

    color: #00ff9d;

    font-family: "Orbitron", sans-serif;

    font-size: 28px;
    font-weight: 900;

    letter-spacing: 1px;

    text-shadow:
        0 0 8px #00ff9d,
        0 0 20px rgba(0, 255, 157, 0.45);

    box-shadow:
        0 0 25px rgba(0, 255, 157, 0.10),
        inset 0 0 20px rgba(0, 255, 157, 0.04);
}

.auth-logo span {
    color: #a76cff;

    text-shadow:
        0 0 8px #a76cff,
        0 0 18px rgba(167, 108, 255, 0.4);
}


/* =====================================================
   AUTH LABEL
===================================================== */

.auth-label {
    position: relative;
    z-index: 2;

    margin-bottom: 10px;

    color: #00ff9d;

    font-family: "Orbitron", sans-serif;

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

    letter-spacing: 2px;
}


/* =====================================================
   AUTH TITLE
===================================================== */

.auth-card h1 {
    position: relative;
    z-index: 2;

    margin-bottom: 9px;

    color: #ffffff;

    font-size: 32px;
    font-weight: 900;

    line-height: 1.4;

    text-shadow:
        0 0 12px rgba(255, 255, 255, 0.12);
}


/* =====================================================
   AUTH DESCRIPTION
===================================================== */

.auth-description {
    position: relative;
    z-index: 2;

    max-width: 360px;

    margin-bottom: 27px;

    color: #858599;

    font-size: 11px;

    line-height: 1.9;
}


/* =====================================================
   AUTH FORM
===================================================== */

.auth-form {
    position: relative;
    z-index: 2;

    width: 100%;

    display: flex;
    flex-direction: column;

    text-align: right;
}

.auth-form label {
    margin-bottom: 7px;

    color: #c8c8d4;

    font-size: 10px;
    font-weight: 700;
}


/* =====================================================
   AUTH INPUT
===================================================== */

.auth-input-wrap {
    width: 100%;

    min-height: 50px;

    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 17px;

    padding: 0 14px;

    border-radius: 12px;

    background:
        rgba(255, 255, 255, 0.025);

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

    transition:
        border-color 0.25s,
        background 0.25s,
        box-shadow 0.25s,
        transform 0.25s;
}

.auth-input-wrap > span {
    flex-shrink: 0;

    width: 25px;

    text-align: center;

    font-size: 16px;

    opacity: 0.85;
}

.auth-input-wrap:focus-within {
    background:
        rgba(123, 44, 255, 0.045);

    border-color:
        rgba(167, 108, 255, 0.35);

    box-shadow:
        0 0 25px rgba(123, 44, 255, 0.08),
        inset 0 0 15px rgba(123, 44, 255, 0.025);

    transform: translateY(-1px);
}

.auth-input-wrap input {
    width: 100%;

    min-width: 0;

    padding: 14px 0;

    border: 0;
    outline: 0;

    background: transparent;

    color: #ffffff;

    font-family: "Vazirmatn", sans-serif;

    font-size: 11px;
}

.auth-input-wrap input::placeholder {
    color: #5e5e72;
}

.auth-input-wrap input:focus::placeholder {
    color: #717185;
}


/* =====================================================
   AUTOFILL
===================================================== */

.auth-input-wrap input:-webkit-autofill,
.auth-input-wrap input:-webkit-autofill:hover,
.auth-input-wrap input:-webkit-autofill:focus {
    -webkit-text-fill-color: #ffffff;

    -webkit-box-shadow:
        0 0 0 1000px #0a0b13 inset;

    transition:
        background-color
        9999s
        ease-in-out
        0s;
}


/* =====================================================
   AUTH MAIN BUTTON
===================================================== */

.auth-button {
    width: 100%;

    min-height: 50px;

    margin-top: 5px;

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

    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            rgba(123, 44, 255, 0.9),
            rgba(0, 255, 157, 0.58)
        );

    color: #ffffff;

    font-family: "Vazirmatn", sans-serif;

    font-size: 12px;
    font-weight: 900;

    cursor: pointer;

    box-shadow:
        0 12px 35px rgba(123, 44, 255, 0.16),
        inset 0 0 15px rgba(255, 255, 255, 0.05);

    transition:
        transform 0.25s,
        filter 0.25s,
        box-shadow 0.25s;
}

.auth-button:hover {
    transform: translateY(-3px);

    filter: brightness(1.1);

    box-shadow:
        0 17px 45px rgba(123, 44, 255, 0.23),
        0 0 25px rgba(0, 255, 157, 0.08);
}

.auth-button:active {
    transform: translateY(-1px) scale(0.99);
}


/* =====================================================
   AUTH DIVIDER
===================================================== */

.auth-divider {
    width: 100%;

    display: flex;
    align-items: center;

    gap: 12px;

    margin: 25px 0 16px;
}

.auth-divider span {
    flex: 1;

    height: 1px;

    background:
        rgba(255, 255, 255, 0.07);
}

.auth-divider small {
    flex-shrink: 0;

    color: #66667a;

    font-size: 8px;
}


/* =====================================================
   SECONDARY BUTTON
===================================================== */

.auth-secondary-button {
    width: 100%;

    min-height: 45px;

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

    border-radius: 12px;

    color: #b9b9c9;

    font-size: 10px;
    font-weight: 700;

    background:
        rgba(255, 255, 255, 0.025);

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

    transition:
        color 0.25s,
        background 0.25s,
        border-color 0.25s,
        transform 0.25s;
}

.auth-secondary-button:hover {
    color: #00ff9d;

    background:
        rgba(0, 255, 157, 0.045);

    border-color:
        rgba(0, 255, 157, 0.14);

    transform: translateY(-2px);
}


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

@media (max-width: 900px) {

    .auth-section {
        width: 92%;

        min-height: auto;

        margin-top: 30px;
        margin-bottom: 65px;
    }

    .auth-card {
        width: min(520px, 100%);

        padding: 35px 25px;

        border-radius: 24px;
    }

    .auth-card h1 {
        font-size: 29px;
    }
}


@media (max-width: 480px) {

    .auth-section {
        margin-top: 22px;
        margin-bottom: 55px;
    }

    .auth-card {
        padding: 28px 18px;

        border-radius: 21px;
    }

    .auth-logo {
        width: 62px;
        height: 62px;

        border-radius: 17px;

        font-size: 24px;
    }

    .auth-label {
        font-size: 7px;
    }

    .auth-card h1 {
        font-size: 26px;
    }

    .auth-description {
        font-size: 10px;

        margin-bottom: 23px;
    }

    .auth-input-wrap {
        min-height: 48px;

        margin-bottom: 14px;

        padding: 0 12px;
    }

    .auth-form label {
        font-size: 9px;
    }

    .auth-input-wrap input {
        font-size: 10px;
    }

    .auth-button {
        min-height: 48px;

        font-size: 11px;
    }

    .auth-secondary-button {
        min-height: 43px;

        font-size: 9px;
    }
}

/* =========================================
   HEADER PLAYER STATS
========================================= */

.header-profile .header-player-stats {
    font-size: 8px;
    line-height: 1.7;
    white-space: nowrap;

    color: #00ff9d;

    text-shadow:
        0 0 7px rgba(0, 255, 157, 0.35);
}

.header-profile strong {
    white-space: nowrap;
}

@media (max-width: 700px) {

    .header-profile .header-player-stats {
        font-size: 7px;
    }
}


/* =========================================
   MOBILE ACCOUNT HEADER
   نمایش نام + LV + XP + Coins روی موبایل
========================================= */

@media (max-width: 850px) {

    .navbar .header-profile {
        display: flex !important;

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

        gap: 7px;

        min-width: 0;
        width: auto;

        padding: 7px 9px;

        border-radius: 14px;
    }


    .navbar .header-profile-icon {
        flex: 0 0 auto;

        width: 30px;
        height: 30px;

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

        font-size: 17px;
    }


    .navbar .header-profile > div:nth-child(2) {
        min-width: 0;

        display: flex;
        flex-direction: column;

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

        line-height: 1.25;
    }


    .navbar .header-profile strong {
        display: block;

        max-width: 95px;

        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;

        font-size: 11px;
    }


    .navbar .header-profile span {
        display: block;

        max-width: 150px;

        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;

        font-size: 7px;

        line-height: 1.5;
    }


    .navbar .header-profile .header-player-stats {
        display: block;

        font-size: 7px;

        white-space: nowrap;

        color: #00ff9d;

        text-shadow:
            0 0 6px
            rgba(0, 255, 157, 0.35);
    }


    .navbar .header-profile > b {
        display: block;

        flex: 0 0 auto;

        font-size: 16px;

        line-height: 1;
    }
}


/* =========================================
   VERY SMALL PHONES
========================================= */

@media (max-width: 420px) {

    .navbar .header-profile {
        gap: 5px;

        padding: 6px 7px;
    }


    .navbar .header-profile-icon {
        width: 27px;
        height: 27px;

        font-size: 15px;
    }


    .navbar .header-profile strong {
        max-width: 78px;

        font-size: 9px;
    }


    .navbar .header-profile .header-player-stats {
        max-width: 115px;

        font-size: 6px;
    }


    .navbar .header-profile > b {
        display: none;
    }
}

/* =========================================
   VEXON HEADER PLAYER INFO
========================================= */

.header-player-info {
    min-width: 0;

    display: flex;
    flex-direction: column;

    justify-content: center;

    gap: 4px;
}


/* =========================================
   RGB XP BAR
========================================= */

.header-xp-bar {
    position: relative;

    width: 150px;
    height: 5px;

    overflow: hidden;

    border-radius: 999px;

    background:
        rgba(255, 255, 255, 0.08);

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

    box-shadow:
        inset 0 0 8px
        rgba(0, 0, 0, 0.55),

        0 0 7px
        rgba(0, 255, 255, 0.12);
}


.header-xp-fill {
    width: 0;

    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            #00ff9d 0%,
            #00eaff 25%,
            #7a5cff 50%,
            #ff35cf 75%,
            #00ff9d 100%
        );

    background-size:
        300% 100%;

    box-shadow:
        0 0 5px
        rgba(0, 255, 157, 0.85),

        0 0 10px
        rgba(0, 234, 255, 0.65),

        0 0 16px
        rgba(255, 53, 207, 0.45);

    animation:
        vexonRgbXP 3s linear infinite;

    transition:
        width 0.8s cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
}


@keyframes vexonRgbXP {

    0% {
        background-position:
            0% 50%;
    }

    50% {
        background-position:
            100% 50%;
    }

    100% {
        background-position:
            0% 50%;
    }

}


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

.header-player-stats {
    white-space: nowrap;

    color:
        rgba(255, 255, 255, 0.78);

    text-shadow:
        0 0 6px
        rgba(0, 255, 157, 0.18);
}


/* =========================================
   MOBILE ACCOUNT HEADER
========================================= */

@media (max-width: 850px) {

    .navbar .header-profile {

        display: flex !important;

        align-items: center;

        justify-content: center;

        gap: 6px;

        min-width: 0;

        width: auto;

        padding:
            6px 8px;

        border-radius: 14px;

    }


    .navbar .header-profile-icon {

        flex:
            0 0 auto;

        width: 28px;

        height: 28px;

        display: flex;

        align-items: center;

        justify-content: center;

        font-size: 16px;

    }


    .header-player-info {

        max-width: 150px;

        gap: 3px;

    }


    .navbar .header-profile strong {

        display: block;

        max-width: 120px;

        overflow: hidden;

        text-overflow: ellipsis;

        white-space: nowrap;

        font-size: 10px;

        line-height: 1.3;

    }


    .navbar .header-profile .header-player-stats {

        display: block;

        font-size: 6.5px;

        white-space: nowrap;

        line-height: 1.3;

    }


    .header-xp-bar {

        width: 105px;

        height: 4px;

    }


    .navbar .header-profile > b {

        display: block;

        flex:
            0 0 auto;

        font-size: 15px;

        line-height: 1;

    }

}


/* =========================================
   SMALL PHONES
========================================= */

@media (max-width: 420px) {

    .navbar .header-profile {

        gap: 4px;

        padding:
            5px 6px;

    }


    .navbar .header-profile-icon {

        width: 25px;

        height: 25px;

        font-size: 14px;

    }


    .header-player-info {

        max-width: 120px;

    }


    .navbar .header-profile strong {

        max-width: 90px;

        font-size: 9px;

    }


    .navbar .header-profile .header-player-stats {

        font-size: 5.5px;

    }


    .header-xp-bar {

        width: 82px;

        height: 3px;

    }


    .navbar .header-profile > b {

        display: none;

    }

}