/* =========================================================
   VAMPIRE NODES — DISCORD LANDING PAGE
   Main Neon / Glassmorphism Styles
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');


/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background: #030303;
    color: #ffffff;
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
}


/* =========================
   BACKGROUND
========================= */

.background {
    position: fixed;
    inset: 0;
    z-index: -10;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 15% 50%,
            rgba(255, 0, 30, 0.12),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 40%,
            rgba(255, 0, 0, 0.10),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #000000 0%,
            #080000 45%,
            #020202 100%
        );
}


/* red atmospheric glow */

.background::before {
    content: "";
    position: absolute;
    inset: -30%;
    background:
        radial-gradient(
            circle,
            rgba(255, 0, 0, 0.12),
            transparent 25%
        );
    animation: atmosphere 12s ease-in-out infinite alternate;
}

@keyframes atmosphere {
    0% {
        transform: translate(-8%, -4%) scale(1);
    }

    50% {
        transform: translate(6%, 5%) scale(1.2);
    }

    100% {
        transform: translate(-4%, 8%) scale(1);
    }
}


/* =========================
   GLOW ORBS
========================= */

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.35;
    pointer-events: none;
}

.glow-1 {
    width: 420px;
    height: 420px;
    background: #ff0015;
    top: -180px;
    left: -150px;
    animation: glowMove1 9s ease-in-out infinite alternate;
}

.glow-2 {
    width: 360px;
    height: 360px;
    background: #ff003c;
    right: -150px;
    top: 25%;
    animation: glowMove2 11s ease-in-out infinite alternate;
}

.glow-3 {
    width: 300px;
    height: 300px;
    background: #7a0000;
    bottom: -120px;
    left: 40%;
    animation: glowMove3 8s ease-in-out infinite alternate;
}

@keyframes glowMove1 {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(100px, 80px);
    }
}

@keyframes glowMove2 {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(-100px, 80px);
    }
}

@keyframes glowMove3 {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(60px, -80px);
    }
}


/* =========================
   PARTICLE FIELD
========================= */

.particles {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(255,255,255,0.8) 1px, transparent 1px),
        radial-gradient(circle, rgba(255,0,0,0.7) 1px, transparent 1px);

    background-size:
        110px 110px,
        170px 170px;

    background-position:
        0 0,
        40px 70px;

    opacity: 0.18;
    animation: particlesMove 25s linear infinite;
}

@keyframes particlesMove {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-180px);
    }
}


/* =========================
   TOP BAR
========================= */

.topbar {
    width: min(1400px, 92%);
    margin: 28px auto 0;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 12px 18px;

    border: 1px solid rgba(255, 0, 30, 0.35);
    border-radius: 18px;

    background: rgba(10, 0, 0, 0.45);
    backdrop-filter: blur(20px);

    box-shadow:
        0 0 25px rgba(255, 0, 0, 0.08),
        inset 0 0 25px rgba(255, 0, 0, 0.03);
}


/* =========================
   BRAND
========================= */

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand img {
    width: 48px;
    height: 48px;
    object-fit: contain;

    filter:
        drop-shadow(0 0 8px rgba(255,0,0,0.8))
        drop-shadow(0 0 20px rgba(255,0,0,0.35));

    animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% {
        filter:
            drop-shadow(0 0 6px rgba(255,0,0,0.7));
    }

    50% {
        filter:
            drop-shadow(0 0 12px rgba(255,0,0,1))
            drop-shadow(0 0 28px rgba(255,0,0,0.45));
    }
}

.brand-name {
    display: flex;
    gap: 5px;
    font-size: 18px;
    letter-spacing: 1px;
}

.brand-name span {
    color: #ff1b2d;
    font-weight: 800;
}

.brand-name strong {
    color: #ffffff;
    font-weight: 800;
}


/* =========================
   STATUS
========================= */

.status {
    display: flex;
    align-items: center;
    gap: 9px;

    padding: 10px 15px;

    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 999px;

    background: rgba(255,255,255,0.03);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.status-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;

    background: #00ff66;

    box-shadow:
        0 0 8px #00ff66,
        0 0 18px rgba(0,255,102,0.6);

    animation: statusPulse 1.8s infinite;
}

@keyframes statusPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(0.7);
        opacity: 0.5;
    }
}


/* =========================
   HERO
========================= */

.hero {
    width: min(1400px, 92%);
    margin: 80px auto 60px;

    display: grid;
    grid-template-columns: 1fr 0.9fr;

    gap: 80px;
    align-items: center;
}


/* =========================
   HERO CONTENT
========================= */

.hero-content {
    animation: heroEnter 1s ease forwards;
}

@keyframes heroEnter {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* =========================
   WELCOME
========================= */

.welcome {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #bdbdbd;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 4px;

    margin-bottom: 18px;
}

.welcome span {
    width: 30px;
    height: 1px;
    background: #ff172b;

    box-shadow: 0 0 10px #ff172b;
}


/* =========================
   HERO TITLE
========================= */

.hero h1 {
    font-size: clamp(58px, 7vw, 105px);

    line-height: 0.9;

    font-weight: 900;

    letter-spacing: -5px;

    color: #ffffff;

    text-shadow:
        0 0 25px rgba(255,255,255,0.08);
}

.hero h1 strong {
    display: block;

    color: #ff182c;

    text-shadow:
        0 0 12px rgba(255,0,30,0.7),
        0 0 35px rgba(255,0,30,0.25);

    animation: redTextPulse 3s ease-in-out infinite;
}

@keyframes redTextPulse {
    0%, 100% {
        text-shadow:
            0 0 12px rgba(255,0,30,0.6);
    }

    50% {
        text-shadow:
            0 0 18px rgba(255,0,30,0.9),
            0 0 45px rgba(255,0,30,0.35);
    }
}


/* =========================
   SUBTITLE
========================= */

.hero h2 {
    margin-top: 28px;

    font-size: 18px;

    letter-spacing: 2px;

    color: #d0d0d0;
}

.hero h2 span {
    color: #ff182c;

    text-shadow:
        0 0 12px rgba(255,0,30,0.8);
}


/* =========================
   DESCRIPTION
========================= */

.description {
    max-width: 620px;

    margin-top: 20px;

    color: #999;

    line-height: 1.8;

    font-size: 15px;
}


/* =========================
   FEATURES
========================= */

.features {
    margin-top: 32px;

    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 12px;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 14px;

    padding: 17px;

    border-radius: 14px;

    border: 1px solid rgba(255,0,30,0.18);

    background:
        linear-gradient(
            135deg,
            rgba(255,0,30,0.07),
            rgba(255,255,255,0.015)
        );

    backdrop-filter: blur(14px);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);

    border-color: rgba(255,0,30,0.7);

    box-shadow:
        0 10px 35px rgba(255,0,30,0.12),
        inset 0 0 20px rgba(255,0,30,0.04);
}

.feature-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 12px;

    color: #ff172b;

    border: 1px solid rgba(255,0,30,0.45);

    background: rgba(255,0,30,0.08);

    font-size: 20px;

    box-shadow:
        0 0 15px rgba(255,0,30,0.12);
}

.feature-card h3 {
    font-size: 12px;

    letter-spacing: 1px;

    margin-bottom: 5px;
}

.feature-card p {
    color: #777;

    font-size: 11px;
}


/* =========================
   MEMBER INFO
========================= */

.member-info {
    width: fit-content;

    display: flex;
    align-items: center;
    gap: 14px;

    margin-top: 28px;

    padding: 12px 20px;

    border-radius: 14px;

    background: rgba(255,255,255,0.025);

    border: 1px solid rgba(255,255,255,0.08);
}

.member-icon {
    font-size: 30px;
    color: #ff172b;

    text-shadow:
        0 0 15px rgba(255,0,30,0.8);
}

.member-info strong {
    display: block;

    color: #ff172b;

    font-size: 22px;
}

.member-info span {
    color: #777;

    font-size: 10px;

    letter-spacing: 2px;
}


/* =========================
   DISCORD CARD
========================= */

.discord-card {
    position: relative;

    padding: 48px 40px;

    border-radius: 30px;

    border: 1px solid rgba(255,0,30,0.5);

    background:
        linear-gradient(
            145deg,
            rgba(255,0,30,0.08),
            rgba(255,255,255,0.025)
        );

    backdrop-filter: blur(25px);

    box-shadow:
        0 0 50px rgba(255,0,30,0.08),
        inset 0 0 40px rgba(255,0,30,0.025);

    overflow: hidden;

    animation: cardEnter 1s ease 0.2s both;
}

@keyframes cardEnter {
    from {
        opacity: 0;
        transform: translateX(50px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}


/* card moving light */

.discord-card::before {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    top: -120px;
    right: -80px;

    border-radius: 50%;

    background: #ff001e;

    filter: blur(100px);

    opacity: 0.18;

    animation: cardGlow 5s ease-in-out infinite alternate;
}

@keyframes cardGlow {
    from {
        transform: translate(0,0);
    }

    to {
        transform: translate(-100px,150px);
    }
}


/* =========================
   CARD LOGO
========================= */

.card-logo {
    display: flex;
    justify-content: center;

    position: relative;

    z-index: 2;
}

.logo-ring {
    width: 150px;
    height: 150px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    border: 1px solid rgba(255,0,30,0.7);

    background:
        radial-gradient(
            circle,
            rgba(255,0,30,0.15),
            rgba(0,0,0,0.3) 65%
        );

    box-shadow:
        0 0 25px rgba(255,0,30,0.3),
        0 0 70px rgba(255,0,30,0.08);

    animation: ringPulse 3s ease-in-out infinite;
}

@keyframes ringPulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.04);
    }
}

.logo-ring img {
    width: 115px;
    height: 115px;

    object-fit: contain;

    filter:
        drop-shadow(0 0 12px rgba(255,0,30,0.9))
        drop-shadow(0 0 30px rgba(255,0,30,0.3));
}


/* =========================
   CARD TITLE
========================= */

.card-title {
    text-align: center;

    margin-top: 30px;
}

.card-title span {
    display: block;

    color: #ddd;

    font-size: 16px;

    letter-spacing: 3px;
}

.card-title strong {
    display: block;

    margin-top: 3px;

    font-size: 42px;

    letter-spacing: 1px;

    color: #ff182c;

    text-shadow:
        0 0 18px rgba(255,0,30,0.6);
}


/* =========================
   CARD SUBTITLE
========================= */

.card-subtitle {
    text-align: center;

    color: #999;

    margin-top: 10px;

    font-size: 13px;
}

.card-subtitle span {
    color: #ff182c;
}


/* =========================
   BENEFITS
========================= */

.benefits {
    margin-top: 28px;

    display: grid;

    gap: 15px;
}

.benefits div {
    display: flex;
    align-items: center;
    gap: 12px;

    color: #bbb;

    font-size: 13px;
}

.benefits span {
    width: 23px;
    height: 23px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: #ff182c;

    border: 1px solid rgba(255,0,30,0.5);

    box-shadow:
        0 0 10px rgba(255,0,30,0.15);
}


/* =========================
   JOIN BUTTON
========================= */

.join-button {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 16px;

    width: 100%;

    margin-top: 32px;

    padding: 20px;

    border-radius: 15px;

    text-decoration: none;

    color: #ffffff;

    font-weight: 900;

    font-size: 16px;

    letter-spacing: 1px;

    background:
        linear-gradient(
            90deg,
            #9c0010,
            #ff001e,
            #9c0010
        );

    background-size: 200% 100%;

    box-shadow:
        0 0 20px rgba(255,0,30,0.4),
        0 0 50px rgba(255,0,30,0.12);

    border: 1px solid rgba(255,100,100,0.6);

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

    animation: buttonGradient 4s linear infinite;
}

@keyframes buttonGradient {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

.join-button::before {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 80%;
    height: 100%;

    background:
        linear-gradient(
            100deg,
            transparent,
            rgba(255,255,255,0.35),
            transparent
        );

    transform: skewX(-20deg);

    animation: buttonShine 3.5s infinite;
}

@keyframes buttonShine {
    0% {
        left: -120%;
    }

    45%, 100% {
        left: 140%;
    }
}

.join-button:hover {
    transform: translateY(-4px) scale(1.015);

    box-shadow:
        0 0 30px rgba(255,0,30,0.65),
        0 0 80px rgba(255,0,30,0.25);
}

.discord-icon {
    font-size: 22px;
}

.arrow {
    font-size: 25px;

    transition: transform 0.3s ease;
}

.join-button:hover .arrow {
    transform: translateX(7px);
}


/* =========================
   NO LOGIN
========================= */

.no-login {
    text-align: center;

    margin-top: 16px;

    color: #666;

    font-size: 10px;

    letter-spacing: 1.5px;
}

.no-login span {
    color: #ff182c;

    margin: 0 5px;
}


/* =========================
   STATS
========================= */

.stats {
    width: min(1200px, 90%);

    margin: 30px auto 70px;

    display: flex;
    align-items: center;
    justify-content: space-around;

    padding: 22px;

    border-radius: 20px;

    background: rgba(255,255,255,0.025);

    border: 1px solid rgba(255,0,30,0.2);

    backdrop-filter: blur(20px);

    box-shadow:
        0 0 35px rgba(255,0,30,0.04);
}

.stat {
    text-align: center;
}

.stat strong {
    display: block;

    color: #ff182c;

    font-size: 24px;

    text-shadow:
        0 0 15px rgba(255,0,30,0.5);
}

.stat span {
    display: block;

    margin-top: 5px;

    color: #666;

    font-size: 9px;

    letter-spacing: 2px;
}

.stat-divider {
    width: 1px;
    height: 38px;

    background: rgba(255,255,255,0.1);
}


/* =========================
   FOOTER
========================= */

footer {
    text-align: center;

    padding: 20px 20px 35px;
}

footer p {
    color: #777;

    font-size: 11px;

    letter-spacing: 2px;
}

footer p span {
    color: #ff182c;

    text-shadow:
        0 0 10px rgba(255,0,30,0.5);
}

.footer-line {
    width: min(500px, 80%);

    height: 1px;

    margin: 18px auto;

    background:
        linear-gradient(
            90deg,
            transparent,
            #ff182c,
            transparent
        );

    box-shadow:
        0 0 10px rgba(255,0,30,0.4);
}

footer small {
    color: #444;

    font-size: 10px;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 950px) {

    .hero {
        grid-template-columns: 1fr;

        gap: 50px;

        margin-top: 55px;
    }

    .hero-content {
        text-align: center;
    }

    .welcome {
        justify-content: center;
    }

    .description {
        margin-left: auto;
        margin-right: auto;
    }

    .features {
        text-align: left;
    }

    .member-info {
        margin-left: auto;
        margin-right: auto;
    }

    .discord-card {
        max-width: 650px;
        width: 100%;
        margin: auto;
    }
}


@media (max-width: 600px) {

    .topbar {
        margin-top: 15px;

        width: 94%;

        padding: 9px 12px;
    }

    .brand img {
        width: 40px;
        height: 40px;
    }

    .brand-name {
        font-size: 14px;
    }

    .status {
        padding: 8px 10px;

        font-size: 9px;
    }

    .hero {
        width: 94%;

        margin-top: 45px;

        gap: 35px;
    }

    .hero h1 {
        font-size: 55px;

        letter-spacing: -3px;
    }

    .hero h2 {
        font-size: 13px;

        line-height: 1.6;
    }

    .description {
        font-size: 13px;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .discord-card {
        padding: 35px 22px;

        border-radius: 22px;
    }

    .logo-ring {
        width: 125px;
        height: 125px;
    }

    .logo-ring img {
        width: 95px;
        height: 95px;
    }

    .card-title strong {
        font-size: 35px;
    }

    .benefits div {
        font-size: 12px;
    }

    .join-button {
        padding: 18px 12px;

        font-size: 13px;
    }

    .stats {
        width: 94%;

        display: grid;

        grid-template-columns: repeat(2, 1fr);

        gap: 20px;
    }

    .stat-divider {
        display: none;
    }
}


@media (max-width: 380px) {

    .hero h1 {
        font-size: 45px;
    }

    .brand-name {
        display: none;
    }

    .card-title strong {
        font-size: 30px;
    }
}

/* =========================
   MOUSE GLOW
========================= */

.mouse-glow {
    position: fixed;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    pointer-events: none;

    transform: translate(-50%, -50%);

    background:
        radial-gradient(
            circle,
            rgba(255, 0, 30, 0.16),
            transparent 70%
        );

    filter: blur(20px);

    z-index: 1;
}


/* =========================
   JAVASCRIPT PARTICLES
========================= */

.particles span {
    position: absolute;

    display: block;

    border-radius: 50%;

    background: #ff182c;

    box-shadow:
        0 0 6px #ff182c,
        0 0 15px rgba(255, 0, 30, 0.8);

    animation:
        floatingParticle linear infinite;
}


@keyframes floatingParticle {

    0% {
        transform:
            translateY(80px)
            scale(0.5);

        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    50% {
        transform:
            translateY(-80px)
            scale(1);
    }

    80% {
        opacity: 0.8;
    }

    100% {
        transform:
            translateY(-180px)
            scale(0.3);

        opacity: 0;
    }
}

/* =========================================================
   VAMPIRE NODES — GLOBAL DOTTED GLOBE
========================================================= */

.network-section {
    position: relative;

    width: min(1250px, 92%);

    margin: 100px auto 80px;

    padding: 75px 45px;

    overflow: hidden;

    border-radius: 30px;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(255, 0, 30, 0.07),
            transparent 45%
        ),
        rgba(5, 5, 5, 0.82);

    border:
        1px solid rgba(255, 0, 30, 0.22);

    backdrop-filter: blur(20px);

    box-shadow:
        0 0 60px rgba(255, 0, 30, 0.05);
}


/* =========================
   HEADING
========================= */

.network-heading {
    position: relative;

    z-index: 5;

    text-align: center;
}

.network-label {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 12px;

    color: #777;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 4px;
}

.network-label span {
    width: 35px;

    height: 1px;

    background: #ff182c;

    box-shadow:
        0 0 12px #ff182c;
}

.network-heading h2 {
    margin-top: 15px;

    font-size:
        clamp(38px, 5vw, 65px);

    font-weight: 900;

    letter-spacing: -2px;
}

.network-heading h2 strong {
    color: #ff182c;

    text-shadow:
        0 0 15px rgba(255, 0, 30, 0.8),
        0 0 45px rgba(255, 0, 30, 0.25);
}

.network-heading p {
    max-width: 600px;

    margin: 15px auto 0;

    color: #666;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   GLOBE AREA
========================================================= */

.vn-globe-area {

    position: relative;

    z-index: 3;

    display: grid;

    grid-template-columns:
        minmax(400px, 1.3fr)
        minmax(280px, 0.7fr);

    align-items: center;

    gap: 70px;

    margin-top: 55px;
}


/* =========================================================
   GLOBE
========================================================= */

.vn-globe {

    position: relative;

    width: min(560px, 80vw);

    aspect-ratio: 1;

    margin: auto;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 30%,
            rgba(255, 0, 30, 0.10),
            rgba(0, 0, 0, 0.95) 65%
        );

    border:
        1px solid rgba(255, 0, 30, 0.28);

    box-shadow:

        0 0 25px rgba(255, 0, 30, 0.15),

        0 0 100px rgba(255, 0, 30, 0.08),

        inset 0 0 80px rgba(255, 0, 30, 0.08);

    overflow: hidden;

    transform-style: preserve-3d;

    animation:
        globeFloat 6s ease-in-out infinite;
}


@keyframes globeFloat {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-8px);
    }
}


/* =========================================================
   GLOBE GRID
========================================================= */

.vn-globe-grid {

    position: absolute;

    inset: 5%;

    border-radius: 50%;

    opacity: 0.5;

    background:

        repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 37px,
            rgba(255, 255, 255, 0.08) 38px,
            transparent 39px
        ),

        repeating-linear-gradient(
            90deg,
            transparent 0px,
            transparent 37px,
            rgba(255, 255, 255, 0.08) 38px,
            transparent 39px
        );

    -webkit-mask-image:
        radial-gradient(
            circle,
            black 55%,
            transparent 72%
        );

    mask-image:
        radial-gradient(
            circle,
            black 55%,
            transparent 72%
        );

    animation:
        gridMove 14s linear infinite;
}


@keyframes gridMove {

    from {
        transform:
            rotate(0deg)
            scale(1);
    }

    to {
        transform:
            rotate(360deg)
            scale(1.05);
    }
}


/* =========================================================
   WORLD DOTS
========================================================= */

.world-dots {

    position: absolute;

    inset: 8%;

    border-radius: 50%;

    transform-style: preserve-3d;

    animation:
        worldRotate 18s linear infinite;

    background-image:

        radial-gradient(
            circle,
            rgba(255, 24, 44, 0.95) 1.3px,
            transparent 1.7px
        );

    background-size:
        7px 7px;

    opacity: 0.75;

    -webkit-mask-image:

        radial-gradient(
            ellipse 48% 44% at 42% 43%,
            black 0%,
            black 55%,
            transparent 73%
        );

    mask-image:

        radial-gradient(
            ellipse 48% 44% at 42% 43%,
            black 0%,
            black 55%,
            transparent 73%
        );
}


@keyframes worldRotate {

    from {
        transform:
            rotateY(0deg)
            rotateZ(0deg);
    }

    to {
        transform:
            rotateY(360deg)
            rotateZ(1deg);
    }
}


/* =========================================================
   WORLD CONTINENT AREAS
========================================================= */

.world-dots::before {

    content: "";

    position: absolute;

    inset: 10%;

    border-radius: 50%;

    background-image:

        radial-gradient(
            circle,
            #ff182c 1.5px,
            transparent 2px
        );

    background-size:
        8px 8px;

    opacity: 0.7;

    filter:
        drop-shadow(
            0 0 5px
            rgba(255, 0, 30, 0.8)
        );

    clip-path:

        polygon(
            5% 15%,
            25% 7%,
            42% 14%,
            49% 29%,
            43% 39%,
            35% 44%,
            29% 57%,
            22% 65%,
            15% 58%,
            12% 43%,
            4% 35%,
            5% 15%,

            58% 18%,
            74% 12%,
            88% 20%,
            93% 34%,
            87% 44%,
            76% 43%,
            68% 51%,
            60% 46%,
            58% 18%,

            62% 54%,
            74% 57%,
            84% 68%,
            78% 82%,
            67% 87%,
            58% 77%,
            55% 65%,
            62% 54%
        );
}


/* =========================================================
   CONNECTION ARCS
========================================================= */

.vn-arc {

    position: absolute;

    left: 50%;

    top: 50%;

    width: 75%;

    height: 35%;

    border:

        1px solid
        rgba(255, 24, 44, 0.5);

    border-left-color:
        transparent;

    border-right-color:
        transparent;

    border-radius: 50%;

    transform-origin: center;

    filter:
        drop-shadow(
            0 0 7px
            rgba(255, 0, 30, 0.7)
        );
}


.arc-1 {

    transform:
        translate(-50%, -50%)
        rotate(20deg);

    animation:
        arcPulse 3s ease-in-out infinite;
}


.arc-2 {

    transform:
        translate(-50%, -50%)
        rotate(-35deg)
        scaleY(0.7);

    animation:
        arcPulse 4s ease-in-out infinite reverse;
}


.arc-3 {

    transform:
        translate(-50%, -50%)
        rotate(65deg)
        scaleY(0.55);

    animation:
        arcPulse 3.5s ease-in-out infinite;
}


@keyframes arcPulse {

    0%,
    100% {
        opacity: 0.25;
    }

    50% {
        opacity: 1;
    }
}


/* =========================================================
   LOCATION NODES
========================================================= */

.vn-location {

    position: absolute;

    z-index: 10;

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 8px 12px;

    border:

        1px solid
        rgba(255, 24, 44, 0.55);

    background:
        rgba(5, 5, 5, 0.8);

    backdrop-filter:
        blur(10px);

    border-radius: 20px;

    color: #aaa;

    font-size: 8px;

    letter-spacing: 1px;

    box-shadow:
        0 0 20px
        rgba(255, 0, 30, 0.12);
}


.vn-location span {

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background:
        #ff182c;

    box-shadow:

        0 0 7px #ff182c,
        0 0 18px #ff182c;

    animation:
        nodePulse 1.5s ease-in-out infinite;
}


@keyframes nodePulse {

    0%,
    100% {
        transform:
            scale(1);
    }

    50% {
        transform:
            scale(1.8);
    }
}


.location-1 {

    left: 12%;

    top: 31%;
}


.location-2 {

    right: 7%;

    top: 40%;
}


.location-3 {

    left: 35%;

    bottom: 10%;
}


/* =========================================================
   SIDE CARDS
========================================================= */

.vn-network-info {

    display: grid;

    gap: 14px;
}


.vn-info-card {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 18px;

    border-radius: 16px;

    background:
        rgba(255, 255, 255, 0.025);

    border:
        1px solid
        rgba(255, 0, 30, 0.15);

    transition:
        all 0.3s ease;
}


.vn-info-card:hover {

    transform:
        translateX(8px);

    border-color:
        rgba(255, 0, 30, 0.6);

    background:
        rgba(255, 0, 30, 0.04);

    box-shadow:
        0 0 30px
        rgba(255, 0, 30, 0.10);
}


.vn-info-icon {

    width: 44px;

    height: 44px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border-radius: 12px;

    color:
        #ff182c;

    font-size: 18px;

    border:
        1px solid
        rgba(255, 0, 30, 0.35);

    background:
        rgba(255, 0, 30, 0.06);

    box-shadow:
        inset 0 0 15px
        rgba(255, 0, 30, 0.05);
}


.vn-info-card strong {

    display: block;

    font-size: 11px;

    letter-spacing: 1px;
}


.vn-info-card p {

    margin-top: 5px;

    color: #666;

    font-size: 10px;

    line-height: 1.5;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 850px) {

    .vn-globe-area {

        grid-template-columns:
            1fr;

        gap: 45px;
    }

    .vn-network-info {

        width: 100%;

        max-width: 550px;

        margin: auto;
    }

}


@media (max-width: 550px) {

    .network-section {

        padding:
            55px 18px;
    }

    .vn-globe {

        width:
            88vw;
    }

    .location-1 {

        left: 2%;
    }

    .location-2 {

        right: 2%;
    }

    .vn-location {

        font-size: 7px;

        padding:
            6px 8px;
    }

} 
