:root {
    --bg-dark: #07090d;
    --card-bg: rgba(12, 18, 30, 0.6);
    --text-color: #f1f5f9;
    --text-muted: #94a3b8;
    --primary-color: #1daef2;
    --secondary-color: #136ab8;
    --accent-color: #269ce3;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --border-color: rgba(29, 174, 242, 0.2);
    --glass-border: rgba(29, 174, 242, 0.15);
    --nav-bg: rgba(7, 9, 13, 0.8);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
}

a {
    text-decoration: none;
}

html {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    overflow-x: hidden;
}

html::-webkit-scrollbar {
    width: 10px;
}

html::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

html::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    border-radius: 10px;
    border: 2px solid var(--bg-dark);
}

html::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

html::-webkit-scrollbar-button {
    display: none !important;
    height: 0 !important;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-color);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow: visible;
    position: relative;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #05070a;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(38, 156, 227, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(29, 174, 242, 0.08) 0%, transparent 50%);
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(29, 174, 242, 0.1) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}



.bg-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    animation: orbFloat 25s infinite alternate ease-in-out;
}

.orb-1 {
    width: 800px;
    height: 800px;
    background: rgba(29, 174, 242, 0.5);
    top: -20%;
    left: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 700px;
    height: 700px;
    background: rgba(38, 156, 227, 0.4);
    bottom: -10%;
    right: -10%;
    animation-delay: -5s;
}

.orb-3 {
    width: 900px;
    height: 900px;
    background: rgba(19, 106, 184, 0.3);
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes orbFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(100px, 50px) scale(1.1);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

h1,
h2,
h3 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(to right, #fff, var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 1000;
    padding: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(7, 9, 13, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 100px;
}

nav.scrolled {
    background: rgba(7, 9, 13, 0.6);
    border-color: rgba(29, 174, 242, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(29, 174, 242, 0.1);
    top: 10px;
    width: 95%;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 42px;
    width: auto;
    border-radius: 8px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 1.15rem;
    transition: all 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-actions .btn {
    padding: 0.6rem 1.4rem;
    font-size: 0.95rem;
    border-radius: 100px;
    letter-spacing: 0.3px;
}

.nav-actions .btn-outline {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.nav-actions .btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.nav-actions .btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2), 0 4px 15px rgba(29, 174, 242, 0.3);
    border: 1px solid rgba(29, 174, 242, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-actions .btn-primary:hover {
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.3), 0 8px 20px rgba(29, 174, 242, 0.5);
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    nav.active .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(7, 9, 13, 0.95);
        backdrop-filter: blur(20px);
        padding: 2rem;
        border-radius: 0 0 24px 24px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-top: none;
        gap: 1.5rem;
    }

    nav.active .nav-actions .btn {
        display: none;
    }
}

.btn {
    padding: 1.1rem 2.2rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: none;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.btn i {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2), 0 4px 15px rgba(29, 174, 242, 0.3);
    border: 1px solid rgba(29, 174, 242, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.7s ease;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.3), 0 12px 25px rgba(29, 174, 242, 0.5);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover i {
    transform: translateX(5px);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline:hover i {
    color: #5865F2;
    transform: scale(1.15) rotate(-5deg);
}

.hero {
    padding: 135px 0 45px;
    text-align: left;
    position: relative;
    overflow: hidden;
    min-height: 72vh;
    display: flex;
    align-items: center;
}

.hero-glow {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(29, 174, 242, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.hero-content {
    max-width: 850px;
    position: relative;
    z-index: 5;
    margin-left: -300px;
}

.character-bg {
    position: absolute;
    bottom: -30px;
    right: -4%;
    height: 76vh;
    z-index: 1;
    pointer-events: none;
    opacity: 0.8;
    display: flex;
    align-items: flex-end;
}

.character-bg img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 50px rgba(29, 174, 242, 0.2));
    mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 100%),
        linear-gradient(to left, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 100%),
        linear-gradient(to left, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 100%);
}

@media (max-width: 1400px) {
    .hero-content {
        margin-left: 0;
    }

    .character-bg {
        right: -5%;
    }
}

@media (max-width: 1200px) {
    .hero h1 {
        font-size: 4rem;
    }

    .character-bg {
        opacity: 0.3;
        right: -10%;
    }
}

@media (max-width: 992px) {
    .hero {
        text-align: center;
        padding-top: 140px;
        min-height: auto;
    }

    .hero .container {
        justify-content: center;
    }

    .hero-content {
        max-width: 100%;
        margin-left: 0;
    }

    .hero h1 {
        text-align: center;
        font-size: 3.5rem;
    }

    .hero p {
        text-align: center;
        margin: 0 auto 2.5rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .character-bg {
        display: none;
    }
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.trust-badge .stars {
    color: #f59e0b;
    display: flex;
    gap: 2px;
}

.hero h1 {
    font-size: 5.15rem;
    line-height: 1.1;
    margin-bottom: 1.7rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 750;
}

.text-gradient {
    background: linear-gradient(135deg, #1daef2 0%, #269ce3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.35rem;
    color: var(--text-muted);
    max-width: 780px;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}



.tech-bar {
    padding: 1.5rem 0;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.tech-icons {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
    font-weight: 700;
    font-size: 1.4rem;
    transition: all 0.3s;
}

.tech-logo {
    width: 45px;
    height: 45px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
    transition: all 0.3s;
}

.tech-item:hover .tech-logo {
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.4));
    transform: scale(1.1);
}

.tech-item i {
    font-size: 1.4rem;
    color: var(--primary-color);
}

.tech-item:hover {
    color: #fff;
    transform: translateY(-2px);
}


.features {
    padding: 100px 0;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(29, 174, 242, 0.08) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header p {
    color: var(--text-muted);
}

.features-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.bento-card {
    background: linear-gradient(145deg, rgba(12, 18, 30, 0.8) 0%, rgba(7, 9, 13, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 10px 30px rgba(0, 0, 0, 0.5);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
}

.bento-card:hover {
    border-color: var(--primary-color);
    background: linear-gradient(145deg, rgba(18, 28, 48, 0.9) 0%, rgba(7, 9, 13, 0.95) 100%);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(29, 174, 242, 0.15);
}

.bento-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.bento-img {
    position: absolute;
    top: 0;
    right: -20px;
    width: 70%;
    height: 100%;
    object-fit: cover;
    opacity: 0.05;
    mask-image: linear-gradient(to right, transparent 0%, black 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 100%);
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 0;
    filter: grayscale(1);
}

.bento-card:hover .bento-img {
    opacity: 0.25;
    right: 0;
    filter: grayscale(0.2);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 65px;
    height: 65px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    flex-shrink: 0;
    color: var(--text-muted);
}

.bento-card:hover .feature-icon {
    background: linear-gradient(135deg, rgba(29, 174, 242, 0.2) 0%, rgba(38, 156, 227, 0.1) 100%);
    border-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 0 20px rgba(29, 174, 242, 0.3), inset 0 2px 10px rgba(255,255,255,0.1);
    transform: scale(1.05);
}

.feature-icon i {
    color: #fff;
    filter: drop-shadow(0 0 10px rgba(29, 174, 242, 0.8));
}

.bento-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: #fff;
    z-index: 2;
}

.bento-card p {
    color: var(--text-muted);
    flex-grow: 1;
}

.hardware-card {
    grid-column: span 2;
}

.security-card {
    grid-column: span 1;
}

.network-card {
    grid-column: span 1;
}

.panel-card {
    grid-column: span 2;
}

.tech-specs {
    margin-top: 1.5rem;
    display: flex;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.tech-specs span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: 'JetBrains Mono', monospace;
}

.tech-specs i {
    color: var(--success);
}

.ddos-card-reversed {
    grid-template-columns: 0.9fr 1.1fr;
}

@media (max-width: 992px) {
    .ddos-card-reversed {
        grid-template-columns: 1fr;
    }
}

.pricing {
    padding: 60px 0;
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 30%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(29, 174, 242, 0.08) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.price-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 3.5rem;
    border-radius: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.price-card:hover {
    border-color: rgba(29, 174, 242, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(29, 174, 242, 0.15);
}

.price-card.popular {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(29, 174, 242, 0.2);
}

.price-card.popular::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.price-badge {
    position: absolute;
    top: 25px;
    right: -45px;
    background: linear-gradient(135deg, var(--primary-color), #136ab8);
    backdrop-filter: blur(8px);
    color: #fff;
    width: 200px;
    padding: 8px 0;
    padding-left: 15px;
    text-align: center;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price-card .price {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #fff;
}

.price-card .price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.price-features {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
}

.price-features li {
    margin-bottom: 1rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.price-features li i {
    color: var(--success);
}

footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--glass-border);
    margin-top: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-links li {
    list-style: none;
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.about {
    padding: 60px 0;
    position: relative;
    text-align: center;
}

.about-header {
    max-width: 800px;
    margin: 0 auto 4rem;
    position: relative;
}

.about-header .section-badge {
    background: rgba(29, 174, 242, 0.1);
    color: var(--primary);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(29, 174, 242, 0.2);
}

.about-header h2 {
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    background: linear-gradient(to bottom, #fff, rgba(255, 255, 255, 0.4));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1.8px;
}

.about-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto;
}

.unified-about-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    background: rgba(12, 18, 30, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}

.about-text-panel {
    padding: 3rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text-panel h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1.25rem;
}

.about-text-panel p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.badge {
    background: rgba(29, 174, 242, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(29, 174, 242, 0.2);
}

.about-showcase-wrapper {
    position: relative;
    height: 100%;
    min-height: 380px;
}

.about-showcase-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    mask-image: linear-gradient(to right, transparent, black 25%);
    -webkit-mask-image: linear-gradient(to right, transparent, black 25%);
}

.showcase-overlay {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    z-index: 2;
    text-align: right;
}

.showcase-overlay h3 {
    font-size: 2rem;
    color: #fff;
    margin: 0;
    font-weight: 800;
    letter-spacing: -1px;
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1200px) {
    .features-bento {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    .hardware-card, .panel-card {
        grid-column: span 2;
    }
}

@media (max-width: 992px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero {
        padding: 130px 0 40px;
        text-align: center;
    }
    
    .hero .container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-content {
        margin-left: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero h1 {
        font-size: 3.8rem;
    }

    .hero p {
        font-size: 1.15rem;
        max-width: 100%;
    }

    .features-bento {
        grid-template-columns: 1fr;
    }

    .hardware-card,
    .security-card,
    .network-card,
    .panel-card {
        grid-column: span 1;
    }

    .bento-card {
        padding: 2rem;
    }

    .unified-about-card {
        grid-template-columns: 1fr;
    }

    .about-showcase-wrapper img {
        mask-image: linear-gradient(to bottom, transparent, black 25%);
        -webkit-mask-image: linear-gradient(to bottom, transparent, black 25%);
        height: 300px;
    }

    .about-text-panel {
        padding: 2rem;
    }

    .showcase-overlay {
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .showcase-overlay h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .nav-container {
        padding: 0.75rem 1.25rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }

    nav.active .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(7, 9, 13, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 2rem;
        border-radius: 0 0 20px 20px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-top: none;
        gap: 1.5rem;
        align-items: center;
    }

    nav.active .nav-actions {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 0 1rem;
        margin-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding-top: 1.5rem;
    }
    
    nav.active .nav-actions .btn {
        display: flex;
        width: 100%;
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 350px;
        gap: 1rem;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .tech-icons {
        gap: 1.5rem;
        justify-content: center;
    }
    
    .tech-logo {
        width: 35px;
        height: 35px;
    }
    
    .tech-item i {
        font-size: 1.2rem;
    }

    .price-card {
        padding: 2.5rem 2rem;
    }
    
    .price-card.popular {
        transform: scale(1);
    }
    
    .price-badge {
        right: -55px;
        top: 30px;
    }

    .footer-content {
        gap: 2.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.3rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .about-header h2 {
        font-size: 2.2rem;
    }
    
    .about-text-panel h3 {
        font-size: 1.6rem;
    }

    .bento-card {
        padding: 1.5rem;
    }
    
    .feature-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .price-card .price {
        font-size: 2.5rem;
    }
}

.toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.toast {
    background: rgba(12, 18, 30, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(29, 174, 242, 0.3);
    color: #fff;
    padding: 1.25rem 2rem;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(29, 174, 242, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    transform: translateX(120%);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.toast.active {
    transform: translateX(0);
}

.toast i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.toast-content h4 {
    margin: 0;
    font-size: 1rem;
}

.toast-content p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.legal-page {
    padding: 150px 0 100px;
}

.legal-header {
    text-align: center;
    margin-bottom: 4rem;
}

.legal-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.legal-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.legal-layout {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.legal-sidebar {
    width: 280px;
    flex-shrink: 0;
    position: sticky;
    top: 120px;
    background: rgba(12, 18, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
}

.legal-sidebar h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #fff;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.legal-nav a {
    color: var(--text-muted);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.legal-nav a:hover, .legal-nav a.active {
    background: rgba(29, 174, 242, 0.1);
    color: #fff;
    border-left: 3px solid var(--primary-color);
}

.legal-content {
    flex: 1;
    background: rgba(12, 18, 30, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.legal-section {
    margin-bottom: 4rem;
    scroll-margin-top: 150px;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #fff;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-section h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #e2e8f0;
}

.legal-section p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-section ul {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    line-height: 1.7;
}

.legal-section ul li {
    margin-bottom: 0.5rem;
}

@media (max-width: 992px) {
    .legal-layout {
        flex-direction: column;
    }
    
    .legal-sidebar {
        width: 100%;
        position: static;
        margin-bottom: 2rem;
    }
    
    .legal-content {
        padding: 2rem;
    }
}



.community-block {
    padding: 80px 0 40px;
}

.community-card {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.1) 0%, rgba(88, 101, 242, 0.05) 100%);
    border: 1px solid rgba(88, 101, 242, 0.3);
    border-radius: 32px;
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.community-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(88, 101, 242, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.discord-icon-large {
    font-size: 4rem;
    color: #5865F2;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px rgba(88, 101, 242, 0.4));
}

.community-card h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.community-card p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.faq {
    padding: 40px 0 100px;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #fff;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-muted);
}

.faq-item.active {
    border-color: var(--primary-color);
    background: rgba(29, 174, 242, 0.05);
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 500px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.bg-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}
.layer-1 {
    width: 2px;
    height: 2px;
    background: transparent;
    box-shadow: 870px 925px #1daef2, 1932px 134px #1daef2, 1587px 1582px #1daef2, 1093px 763px #1daef2, 1577px 16px #1daef2, 1116px 240px #1daef2, 1334px 1707px #1daef2, 597px 1313px #1daef2, 1724px 742px #1daef2, 945px 1727px #1daef2, 357px 507px #1daef2, 1445px 1320px #1daef2, 232px 1997px #1daef2, 1221px 1227px #1daef2, 1040px 287px #1daef2, 660px 1729px #1daef2, 411px 1360px #1daef2, 431px 585px #1daef2, 494px 1767px #1daef2, 1863px 1355px #1daef2, 540px 467px #1daef2, 934px 1808px #1daef2, 461px 1759px #1daef2, 1903px 844px #1daef2, 1834px 214px #1daef2, 380px 1758px #1daef2, 311px 946px #1daef2, 1172px 1746px #1daef2, 1239px 1919px #1daef2, 250px 986px #1daef2, 1182px 1342px #1daef2, 1691px 569px #1daef2, 1908px 1840px #1daef2, 1395px 1090px #1daef2, 1470px 945px #1daef2, 851px 831px #1daef2, 953px 614px #1daef2, 243px 1627px #1daef2, 395px 465px #1daef2, 1870px 593px #1daef2, 1085px 725px #1daef2, 1670px 1162px #1daef2, 1172px 1196px #1daef2, 151px 383px #1daef2, 740px 474px #1daef2, 161px 872px #1daef2, 48px 1402px #1daef2, 1708px 160px #1daef2, 371px 90px #1daef2, 510px 1946px #1daef2, 635px 1111px #1daef2, 840px 577px #1daef2, 47px 879px #1daef2, 1833px 1508px #1daef2, 1045px 1670px #1daef2, 608px 1805px #1daef2, 1195px 732px #1daef2, 1711px 1270px #1daef2, 736px 1273px #1daef2, 1823px 1884px #1daef2, 1858px 613px #1daef2, 422px 18px #1daef2, 1939px 846px #1daef2, 117px 242px #1daef2, 781px 138px #1daef2, 782px 1487px #1daef2, 608px 280px #1daef2, 217px 1317px #1daef2, 182px 1080px #1daef2, 1970px 425px #1daef2, 90px 903px #1daef2, 895px 511px #1daef2, 1436px 1802px #1daef2, 499px 114px #1daef2, 1098px 319px #1daef2, 722px 1296px #1daef2, 69px 1424px #1daef2, 757px 1186px #1daef2, 1457px 254px #1daef2, 1780px 715px #1daef2, 1349px 1371px #1daef2, 1423px 79px #1daef2, 1738px 1570px #1daef2, 193px 83px #1daef2, 1269px 776px #1daef2, 1659px 630px #1daef2, 1919px 1932px #1daef2, 1571px 1257px #1daef2, 1840px 1813px #1daef2, 117px 663px #1daef2, 79px 1371px #1daef2, 592px 1129px #1daef2, 897px 7px #1daef2, 928px 680px #1daef2, 1408px 19px #1daef2, 1360px 820px #1daef2, 1152px 12px #1daef2, 1672px 1809px #1daef2, 790px 852px #1daef2, 200px 895px #1daef2, 1945px 1060px #1daef2, 1981px 54px #1daef2, 556px 1956px #1daef2, 1133px 242px #1daef2, 1650px 1779px #1daef2, 346px 284px #1daef2, 1960px 128px #1daef2, 1128px 92px #1daef2, 1329px 1050px #1daef2, 1732px 1050px #1daef2, 393px 43px #1daef2, 585px 1690px #1daef2, 1232px 342px #1daef2, 1917px 654px #1daef2, 778px 620px #1daef2, 306px 781px #1daef2, 749px 1593px #1daef2, 1432px 841px #1daef2, 1310px 167px #1daef2, 429px 397px #1daef2, 1641px 867px #1daef2, 1541px 654px #1daef2, 576px 998px #1daef2, 1px 1636px #1daef2, 1965px 20px #1daef2, 588px 1669px #1daef2, 278px 252px #1daef2, 429px 1447px #1daef2, 1461px 209px #1daef2, 1345px 1962px #1daef2, 1980px 1425px #1daef2, 349px 125px #1daef2, 1397px 449px #1daef2, 161px 1891px #1daef2, 1986px 297px #1daef2, 646px 1473px #1daef2, 87px 491px #1daef2, 254px 481px #1daef2, 1053px 212px #1daef2, 289px 1327px #1daef2, 186px 1130px #1daef2, 1659px 1893px #1daef2, 1777px 1563px #1daef2, 547px 206px #1daef2, 576px 547px #1daef2, 404px 905px #1daef2, 619px 974px #1daef2, 1497px 1271px #1daef2, 1256px 1273px #1daef2, 125px 1696px #1daef2;
    animation: animParticle 120s linear infinite;
    border-radius: 50%;
}
.layer-1:after {
    content: "";
    position: absolute;
    top: 2000px;
    width: 2px;
    height: 2px;
    background: transparent;
    box-shadow: 870px 925px #1daef2, 1932px 134px #1daef2, 1587px 1582px #1daef2, 1093px 763px #1daef2, 1577px 16px #1daef2, 1116px 240px #1daef2, 1334px 1707px #1daef2, 597px 1313px #1daef2, 1724px 742px #1daef2, 945px 1727px #1daef2, 357px 507px #1daef2, 1445px 1320px #1daef2, 232px 1997px #1daef2, 1221px 1227px #1daef2, 1040px 287px #1daef2, 660px 1729px #1daef2, 411px 1360px #1daef2, 431px 585px #1daef2, 494px 1767px #1daef2, 1863px 1355px #1daef2, 540px 467px #1daef2, 934px 1808px #1daef2, 461px 1759px #1daef2, 1903px 844px #1daef2, 1834px 214px #1daef2, 380px 1758px #1daef2, 311px 946px #1daef2, 1172px 1746px #1daef2, 1239px 1919px #1daef2, 250px 986px #1daef2, 1182px 1342px #1daef2, 1691px 569px #1daef2, 1908px 1840px #1daef2, 1395px 1090px #1daef2, 1470px 945px #1daef2, 851px 831px #1daef2, 953px 614px #1daef2, 243px 1627px #1daef2, 395px 465px #1daef2, 1870px 593px #1daef2, 1085px 725px #1daef2, 1670px 1162px #1daef2, 1172px 1196px #1daef2, 151px 383px #1daef2, 740px 474px #1daef2, 161px 872px #1daef2, 48px 1402px #1daef2, 1708px 160px #1daef2, 371px 90px #1daef2, 510px 1946px #1daef2, 635px 1111px #1daef2, 840px 577px #1daef2, 47px 879px #1daef2, 1833px 1508px #1daef2, 1045px 1670px #1daef2, 608px 1805px #1daef2, 1195px 732px #1daef2, 1711px 1270px #1daef2, 736px 1273px #1daef2, 1823px 1884px #1daef2, 1858px 613px #1daef2, 422px 18px #1daef2, 1939px 846px #1daef2, 117px 242px #1daef2, 781px 138px #1daef2, 782px 1487px #1daef2, 608px 280px #1daef2, 217px 1317px #1daef2, 182px 1080px #1daef2, 1970px 425px #1daef2, 90px 903px #1daef2, 895px 511px #1daef2, 1436px 1802px #1daef2, 499px 114px #1daef2, 1098px 319px #1daef2, 722px 1296px #1daef2, 69px 1424px #1daef2, 757px 1186px #1daef2, 1457px 254px #1daef2, 1780px 715px #1daef2, 1349px 1371px #1daef2, 1423px 79px #1daef2, 1738px 1570px #1daef2, 193px 83px #1daef2, 1269px 776px #1daef2, 1659px 630px #1daef2, 1919px 1932px #1daef2, 1571px 1257px #1daef2, 1840px 1813px #1daef2, 117px 663px #1daef2, 79px 1371px #1daef2, 592px 1129px #1daef2, 897px 7px #1daef2, 928px 680px #1daef2, 1408px 19px #1daef2, 1360px 820px #1daef2, 1152px 12px #1daef2, 1672px 1809px #1daef2, 790px 852px #1daef2, 200px 895px #1daef2, 1945px 1060px #1daef2, 1981px 54px #1daef2, 556px 1956px #1daef2, 1133px 242px #1daef2, 1650px 1779px #1daef2, 346px 284px #1daef2, 1960px 128px #1daef2, 1128px 92px #1daef2, 1329px 1050px #1daef2, 1732px 1050px #1daef2, 393px 43px #1daef2, 585px 1690px #1daef2, 1232px 342px #1daef2, 1917px 654px #1daef2, 778px 620px #1daef2, 306px 781px #1daef2, 749px 1593px #1daef2, 1432px 841px #1daef2, 1310px 167px #1daef2, 429px 397px #1daef2, 1641px 867px #1daef2, 1541px 654px #1daef2, 576px 998px #1daef2, 1px 1636px #1daef2, 1965px 20px #1daef2, 588px 1669px #1daef2, 278px 252px #1daef2, 429px 1447px #1daef2, 1461px 209px #1daef2, 1345px 1962px #1daef2, 1980px 1425px #1daef2, 349px 125px #1daef2, 1397px 449px #1daef2, 161px 1891px #1daef2, 1986px 297px #1daef2, 646px 1473px #1daef2, 87px 491px #1daef2, 254px 481px #1daef2, 1053px 212px #1daef2, 289px 1327px #1daef2, 186px 1130px #1daef2, 1659px 1893px #1daef2, 1777px 1563px #1daef2, 547px 206px #1daef2, 576px 547px #1daef2, 404px 905px #1daef2, 619px 974px #1daef2, 1497px 1271px #1daef2, 1256px 1273px #1daef2, 125px 1696px #1daef2;
    border-radius: 50%;
}
.layer-2 {
    width: 3px;
    height: 3px;
    background: transparent;
    box-shadow: 1249px 56px #1daef2, 1005px 1085px #1daef2, 525px 1901px #1daef2, 1176px 1955px #1daef2, 473px 1184px #1daef2, 1106px 1147px #1daef2, 71px 1151px #1daef2, 1745px 1818px #1daef2, 1764px 691px #1daef2, 993px 1828px #1daef2, 1281px 1633px #1daef2, 1693px 413px #1daef2, 1591px 1204px #1daef2, 1764px 1930px #1daef2, 1804px 688px #1daef2, 352px 543px #1daef2, 727px 1115px #1daef2, 119px 738px #1daef2, 168px 1253px #1daef2, 869px 450px #1daef2, 1169px 1809px #1daef2, 1619px 1858px #1daef2, 1964px 1251px #1daef2, 1160px 1820px #1daef2, 1108px 147px #1daef2, 919px 178px #1daef2, 155px 1112px #1daef2, 210px 1359px #1daef2, 1215px 643px #1daef2, 207px 392px #1daef2, 1293px 279px #1daef2, 1782px 966px #1daef2, 1038px 1066px #1daef2, 746px 1449px #1daef2, 506px 131px #1daef2, 1204px 453px #1daef2, 1831px 926px #1daef2, 698px 538px #1daef2, 90px 1943px #1daef2, 956px 1474px #1daef2, 40px 1441px #1daef2, 569px 388px #1daef2, 560px 1394px #1daef2, 580px 963px #1daef2, 1853px 1466px #1daef2, 367px 408px #1daef2, 856px 1367px #1daef2, 1480px 1973px #1daef2, 1498px 1291px #1daef2, 1027px 654px #1daef2, 1654px 970px #1daef2, 1921px 889px #1daef2, 1125px 863px #1daef2, 7px 1849px #1daef2, 1369px 1590px #1daef2, 1811px 1776px #1daef2, 1948px 1641px #1daef2, 1236px 1000px #1daef2, 360px 882px #1daef2, 62px 274px #1daef2, 1922px 1424px #1daef2, 1884px 1907px #1daef2, 1886px 1625px #1daef2, 535px 1362px #1daef2, 717px 1221px #1daef2, 379px 1659px #1daef2, 1954px 628px #1daef2, 1488px 52px #1daef2, 827px 1925px #1daef2, 481px 210px #1daef2, 52px 1261px #1daef2, 1596px 1533px #1daef2, 145px 1133px #1daef2, 1666px 1200px #1daef2, 996px 297px #1daef2;
    animation: animParticle 80s linear infinite;
    border-radius: 50%;
    opacity: 0.7;
}
.layer-2:after {
    content: "";
    position: absolute;
    top: 2000px;
    width: 3px;
    height: 3px;
    background: transparent;
    box-shadow: 1249px 56px #1daef2, 1005px 1085px #1daef2, 525px 1901px #1daef2, 1176px 1955px #1daef2, 473px 1184px #1daef2, 1106px 1147px #1daef2, 71px 1151px #1daef2, 1745px 1818px #1daef2, 1764px 691px #1daef2, 993px 1828px #1daef2, 1281px 1633px #1daef2, 1693px 413px #1daef2, 1591px 1204px #1daef2, 1764px 1930px #1daef2, 1804px 688px #1daef2, 352px 543px #1daef2, 727px 1115px #1daef2, 119px 738px #1daef2, 168px 1253px #1daef2, 869px 450px #1daef2, 1169px 1809px #1daef2, 1619px 1858px #1daef2, 1964px 1251px #1daef2, 1160px 1820px #1daef2, 1108px 147px #1daef2, 919px 178px #1daef2, 155px 1112px #1daef2, 210px 1359px #1daef2, 1215px 643px #1daef2, 207px 392px #1daef2, 1293px 279px #1daef2, 1782px 966px #1daef2, 1038px 1066px #1daef2, 746px 1449px #1daef2, 506px 131px #1daef2, 1204px 453px #1daef2, 1831px 926px #1daef2, 698px 538px #1daef2, 90px 1943px #1daef2, 956px 1474px #1daef2, 40px 1441px #1daef2, 569px 388px #1daef2, 560px 1394px #1daef2, 580px 963px #1daef2, 1853px 1466px #1daef2, 367px 408px #1daef2, 856px 1367px #1daef2, 1480px 1973px #1daef2, 1498px 1291px #1daef2, 1027px 654px #1daef2, 1654px 970px #1daef2, 1921px 889px #1daef2, 1125px 863px #1daef2, 7px 1849px #1daef2, 1369px 1590px #1daef2, 1811px 1776px #1daef2, 1948px 1641px #1daef2, 1236px 1000px #1daef2, 360px 882px #1daef2, 62px 274px #1daef2, 1922px 1424px #1daef2, 1884px 1907px #1daef2, 1886px 1625px #1daef2, 535px 1362px #1daef2, 717px 1221px #1daef2, 379px 1659px #1daef2, 1954px 628px #1daef2, 1488px 52px #1daef2, 827px 1925px #1daef2, 481px 210px #1daef2, 52px 1261px #1daef2, 1596px 1533px #1daef2, 145px 1133px #1daef2, 1666px 1200px #1daef2, 996px 297px #1daef2;
    border-radius: 50%;
}
.layer-3 {
    width: 4px;
    height: 4px;
    background: transparent;
    box-shadow: 1044px 1641px #1daef2, 1390px 1191px #1daef2, 616px 1142px #1daef2, 44px 603px #1daef2, 560px 105px #1daef2, 715px 115px #1daef2, 550px 728px #1daef2, 1449px 1186px #1daef2, 6px 460px #1daef2, 1678px 1905px #1daef2, 389px 1254px #1daef2, 716px 548px #1daef2, 1948px 122px #1daef2, 1024px 343px #1daef2, 85px 1893px #1daef2, 1143px 4px #1daef2, 1555px 1656px #1daef2, 1833px 1367px #1daef2, 990px 101px #1daef2, 1061px 1065px #1daef2, 1268px 932px #1daef2, 207px 278px #1daef2, 972px 937px #1daef2, 292px 1623px #1daef2, 236px 485px #1daef2, 677px 909px #1daef2, 1271px 1450px #1daef2, 921px 1293px #1daef2, 847px 509px #1daef2, 1348px 847px #1daef2, 1916px 836px #1daef2, 248px 280px #1daef2, 1431px 1216px #1daef2, 1074px 1182px #1daef2, 1110px 161px #1daef2;
    animation: animParticle 50s linear infinite;
    border-radius: 50%;
    opacity: 0.5;
}
.layer-3:after {
    content: "";
    position: absolute;
    top: 2000px;
    width: 4px;
    height: 4px;
    background: transparent;
    box-shadow: 1044px 1641px #1daef2, 1390px 1191px #1daef2, 616px 1142px #1daef2, 44px 603px #1daef2, 560px 105px #1daef2, 715px 115px #1daef2, 550px 728px #1daef2, 1449px 1186px #1daef2, 6px 460px #1daef2, 1678px 1905px #1daef2, 389px 1254px #1daef2, 716px 548px #1daef2, 1948px 122px #1daef2, 1024px 343px #1daef2, 85px 1893px #1daef2, 1143px 4px #1daef2, 1555px 1656px #1daef2, 1833px 1367px #1daef2, 990px 101px #1daef2, 1061px 1065px #1daef2, 1268px 932px #1daef2, 207px 278px #1daef2, 972px 937px #1daef2, 292px 1623px #1daef2, 236px 485px #1daef2, 677px 909px #1daef2, 1271px 1450px #1daef2, 921px 1293px #1daef2, 847px 509px #1daef2, 1348px 847px #1daef2, 1916px 836px #1daef2, 248px 280px #1daef2, 1431px 1216px #1daef2, 1074px 1182px #1daef2, 1110px 161px #1daef2;
    border-radius: 50%;
}
@keyframes animParticle {
    from { transform: translateY(0px); }
    to { transform: translateY(-2000px); }
}
