:root {
    --primary: #59a6ff;
    
    --accent: #a78bfa;
    
    --accent-glow: rgba(167, 139, 250, 0.4);
    --bg-dark: #050507;
    
    --bg-card: rgba(20, 20, 30, 0.6);
    
    --text-white: #f3f4f6;
    --text-gray: #9ca3af;
    --border-color: rgba(255, 255, 255, 0.1);
    --gradient-main: linear-gradient(135deg, #3b82f6, #8b5cf6);
    --shadow-glow: 0 0 20px rgba(59, 130, 246, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 50px;
    
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background: var(--gradient-main);
    color: white;
    border: none;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.section-desc {
    text-align: center;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 4rem auto;
    font-size: 1.1rem;
}

.badge-new {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    background: rgba(59, 130, 246, 0.2);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(59, 130, 246, 0.3);
    margin-bottom: 20px;
}


.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(5, 5, 7, 0.8);
    backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.logo-container {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 40px;
    
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: #cbd5e1;
    font-size: 0.95rem;
    font-weight: 500;
}

.nav-links a:hover {
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.btn-login {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 24px;
    border-radius: 8px;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.15);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
}


.hero {
    
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 140px;
    padding-bottom: 0px;
    
}


.hero-bg-glow {
    position: absolute;
    width: 60vw;
    height: 60vw;
    top: -20vw;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 60%);
    filter: blur(100px);
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
    max-width: 650px;
    padding-right: 20px;
}


.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #34d399;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.dot-pulse {
    width: 8px;
    height: 8px;
    background: #34d399;
    border-radius: 50%;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(52, 211, 153, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(52, 211, 153, 0);
    }
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1;
    margin-bottom: 25px;
    letter-spacing: -2px;
    font-weight: 800;
    text-shadow: 0 0 30px rgba(89, 166, 255, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.glow-effect {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
    animation: glow-pulse 3s infinite;
}


.trustpilot-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 200, 0, 0.3);
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fbbf24;
    margin-top: 12px;
    box-shadow:
        0 0 20px rgba(251, 191, 36, 0.2),
        0 4px 12px rgba(0, 0, 0, 0.3);
    animation: badgeGlow 3s ease-in-out infinite;
    transition: 0.3s;
}

.trustpilot-badge:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 30px rgba(251, 191, 36, 0.4),
        0 6px 16px rgba(0, 0, 0, 0.4);
}

.trustpilot-badge .stars {
    display: flex;
    gap: 3px;
}

.trustpilot-badge .stars i {
    color: #fbbf24;
    font-size: 0.9rem;
    filter: drop-shadow(0 0 4px rgba(251, 191, 36, 0.6));
}

.trustpilot-badge .rating-text {
    color: #e5e7eb;
    font-size: 0.85rem;
}

.trustpilot-badge .rating-text strong {
    color: #fbbf24;
}

@keyframes badgeGlow {

    0%,
    100% {
        box-shadow:
            0 0 20px rgba(251, 191, 36, 0.2),
            0 4px 12px rgba(0, 0, 0, 0.3);
    }

    50% {
        box-shadow:
            0 0 30px rgba(251, 191, 36, 0.35),
            0 4px 12px rgba(0, 0, 0, 0.3);
    }
}

@keyframes glow-pulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
    }

    50% {
        box-shadow: 0 0 35px rgba(59, 130, 246, 0.8);
    }
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    margin-top: -20px;
}

.shield-graphic {
    width: 350px;
    
    height: 350px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-graphic i {
    font-size: 10rem;
    background: var(--gradient-main);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.6));
    animation: float 6s ease-in-out infinite;
    z-index: 2;
}

.orbit-1,
.orbit-2 {
    position: absolute;
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit-1 {
    width: 300px;
    height: 300px;
    animation: spin 10s linear infinite;
    border-left-color: var(--primary);
}

.orbit-2 {
    width: 450px;
    height: 450px;
    animation: spin-reverse 15s linear infinite;
    border-right-color: var(--accent);
    opacity: 0.5;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes spin {
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes spin-reverse {
    100% {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}


.features {
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    background: linear-gradient(145deg, rgba(20, 20, 30, 0.8), rgba(59, 130, 246, 0.1));
}

.feature-card i {
    font-size: 2.5rem;
    margin-bottom: 25px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}


.defense {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(to bottom, var(--bg-dark), #0a0a0f);
}

.defense-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.defense-text {
    flex: 1;
}

.defense-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.check-list {
    margin-top: 30px;
}

.check-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #e2e8f0;
}

.check-list i {
    color: var(--accent);
}

.defense-visual {
    flex: 1;
    background: var(--bg-card);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid var(--border-color);
    position: relative;
}

.tech-graphic {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.layer {
    width: 100%;
    padding: 15px;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
}

.layer-1 {
    border-color: #ef4444;
    color: #ef4444;
}


.layer-2 {
    border-color: #f59e0b;
    color: #f59e0b;
}


.layer-3 {
    border-color: #8b5cf6;
    color: #8b5cf6;
}



.arrow-down {
    color: #10b981;
    
    font-weight: 700;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}


.pricing {
    padding: 80px 0 120px;
    position: relative;
    z-index: 1;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.05) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
    align-items: center;
    
}

.pricing-card {
    background: rgba(13, 13, 18, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px 30px;
    position: relative;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    height: 100%;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


.pricing-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.5);
}


.pricing-card.popular {
    transform: scale(1.05);
    border-color: var(--primary);
    background: rgba(20, 20, 35, 0.9);
    z-index: 2;
    box-shadow: 0 0 50px rgba(59, 130, 246, 0.2);
}

.pricing-card.popular:hover {
    transform: scale(1.08) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 8px 20px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
    letter-spacing: 1px;
}


.pricing-toggle {
    text-align: center;
    margin-top: 20px;
}

.discount-badge {
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.card-glow {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: var(--primary);
    filter: blur(100px);
    opacity: 0.2;
    transition: 0.4s;
}

.pricing-card:hover .card-glow {
    opacity: 0.4;
    background: var(--accent);
}

.card-header {
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 30px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.card-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    
    color: white;
    margin-top: 5px;
    line-height: 1;
}

.currency {
    font-size: 2rem;
    font-weight: 500;
    margin-top: 8px;
    
    margin-right: 2px;
    color: var(--primary);
}

.amount {
    font-size: 3.5rem;
    
    font-weight: 800;
    letter-spacing: -2px;
    background: linear-gradient(135deg, white 0%, #cbd5e1 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.period {
    font-size: 1.1rem;
    color: var(--text-gray);
    align-self: flex-end;
    margin-bottom: 12px;
    margin-left: 5px;
    font-weight: 500;
}

.specs-list li {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    color: var(--text-gray);
    font-size: 1.05rem;
}

.specs-list li strong {
    color: white;
    margin-right: 5px;
}

.specs-list li i {
    color: var(--primary);
    width: 35px;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    text-align: center;
    width: 100%;
}


.infrastructure {
    padding: 100px 0;
    background: url('https://w.wallhaven.cc/full/85/wallhaven-8586my.png') no-repeat center center/cover;
    
    background: #08080c;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.infra-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.text-block p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #d1d5db;
}


.games {
    padding: 100px 0;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
}

.game-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    text-align: center;
}

.game-item:hover {
    border-color: var(--accent);
    background: rgba(139, 92, 246, 0.1);
    transform: translateY(-5px);
}

.game-item i {
    font-size: 2rem;
    color: white;
    margin-bottom: 15px;
}


.trustpilot {
    padding: 60px 0;
    background: linear-gradient(to right, #00b67a, #009c6b);
    text-align: center;
    color: white;
}

.tp-brand {
    margin-top: 15px;
}


.faq {
    padding: 100px 0;
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--bg-card);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.accordion-header {
    width: 100%;
    padding: 25px;
    background: transparent;
    border: none;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    cursor: pointer;
    text-align: left;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 25px;
}

.accordion-content p {
    padding-bottom: 25px;
    color: var(--text-gray);
    line-height: 1.7;
}


.anim-s-left,
.anim-s-right,
.anim-s-bottom,
.anim-s-zoom {
    opacity: 0;
    transition: all 1s cubic-bezier(0.5, 0, 0, 1);
}

.anim-s-left {
    transform: translateX(-50px);
}

.anim-s-right {
    transform: translateX(50px);
}

.anim-s-bottom {
    transform: translateY(50px);
}

.anim-s-zoom {
    transform: scale(0.95);
}

.anim-active {
    opacity: 1;
    transform: translate(0) scale(1);
}


footer {
    background: #030304;
    padding: 80px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    margin-bottom: 25px;
    font-size: 1.2rem;
    color: white;
}

.footer-col a {
    display: block;
    margin-bottom: 12px;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    color: #6b7280;
    font-size: 0.9rem;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}


@media (max-width: 960px) {
    .defense-layout {
        flex-direction: column;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {

    
    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        height: calc(100vh - 70px);
        width: 100%;
        background: #050507;
        flex-direction: column;
        justify-content: center;
        transition: 0.4s;
        border-top: 1px solid var(--border-color);
        padding: 40px;
        gap: 30px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .hamburger {
        display: block;
    }

    
    .hero {
        padding-top: 120px;
        padding-bottom: 20px;
        text-align: center;
    }

    .hero-content {
        flex-direction: column-reverse;
        gap: 50px;
    }

    .hero-text {
        padding-right: 0;
        margin-top: 0;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .hero-btns {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-stats {
        justify-content: center;
    }

    
    .shield-graphic {
        width: 280px;
        height: 280px;
    }

    .shield-graphic i {
        font-size: 8rem;
    }

    .orbit-1 {
        width: 220px;
        height: 220px;
    }

    .orbit-2 {
        width: 300px;
        height: 300px;
    }

    
    .pricing,
    .features,
    .defense,
    .games,
    .infrastructure,
    .faq {
        padding: 60px 0;
    }

    
    .pricing-card {
        padding: 30px 20px;
    }

    .amount {
        font-size: 4rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn {
        width: 100%;
        padding: 12px 20px;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .hero-btns a {
        width: 100%;
    }
}


.pricing-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.billing-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #e2e8f0;
}

.discount-pill {
    background: #10b981;
    color: #000;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 20px;
    font-weight: 800;
    margin-left: 5px;
    vertical-align: middle;
}


.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: .4s;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: var(--primary);
    border-color: var(--primary);
}

input:checked+.slider:before {
    transform: translateX(26px);
}


.hidden-plan {
    display: none;
    
}


.price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.old-price {
    font-size: 1.5rem;
    color: #94a3b8;
    margin-right: 15px;
    font-weight: 700;
    position: relative;
    text-decoration: none;
    
    -webkit-text-fill-color: #94a3b8;
    background: none;
    display: inline-block;
}


.old-price::after {
    content: '';
    position: absolute;
    left: -5%;
    top: 50%;
    width: 110%;
    height: 3px;
    background: #ef4444;
    
    transform: rotate(-10deg);
    opacity: 0.9;
}

.new-price {
    color: #10b981;
    
}


.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}



.ddos-visual {
    background: rgba(13, 13, 18, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    min-height: 180px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.visual-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    position: relative;
    gap: 10px;
}

.visual-node i {
    font-size: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.visual-node span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #94a3b8;
}


.attacker i {
    color: #ef4444;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.2);
}


.shield-inner {
    position: relative;
    color: #3b82f6;
    animation: shieldPulse 2s infinite;
}

.shield i {
    color: #3b82f6;
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(59, 130, 246, 0.1);
    font-size: 3rem;
}


.server i {
    color: #10b981;
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}


.traffic-path {
    flex-grow: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    margin: 0 15px;
    position: relative;
    border-radius: 4px;
    display: flex;
    align-items: center;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    opacity: 0;
}

.particle.red {
    background: #ef4444;
    box-shadow: 0 0 10px #ef4444;
}

.particle.green {
    background: #10b981;
    box-shadow: 0 0 10px #10b981;
}


.p1 {
    animation-delay: 0s;
}

.p2 {
    animation-delay: 0.5s;
}

.p3 {
    animation-delay: 1s;
}

.attack-path .particle {
    animation: attackFlow 1.5s infinite linear;
}

.clean-path .particle {
    animation: cleanFlow 1.5s infinite linear;
}

@keyframes attackFlow {
    0% {
        left: 0;
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        left: 100%;
        opacity: 0;
        transform: scale(2);
    }

    
}

@keyframes cleanFlow {
    0% {
        left: 0;
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    100% {
        left: 100%;
        opacity: 1;
    }
}

@keyframes shieldPulse {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 0px rgba(59, 130, 246, 0));
    }

    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.5));
    }

    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 0px rgba(59, 130, 246, 0));
    }
}


@media(max-width: 600px) {
    .ddos-visual {
        flex-direction: column;
        gap: 20px;
    }

    .traffic-path {
        width: 4px;
        height: 50px;
        margin: 5px 0;
    }

    @keyframes attackFlow {
        0% {
            top: 0;
            opacity: 1;
        }

        100% {
            top: 100%;
            opacity: 0;
        }
    }

    @keyframes cleanFlow {
        0% {
            top: 0;
            opacity: 0;
        }

        20% {
            opacity: 1;
        }

        100% {
            top: 100%;
            opacity: 1;
        }
    }
}


.marquee-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    padding: 20px 0;
}

.marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    margin-bottom: 20px;
}

.track-left {
    animation: scrollLeft 40s linear infinite;
}

.track-right {
    animation: scrollRight 40s linear infinite;
}

.marquee-item {
    background: rgba(13, 13, 18, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 220px;
    transition: 0.3s;
    backdrop-filter: blur(10px);
}

.marquee-item:hover {
    border-color: var(--primary);
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.marquee-item i {
    font-size: 1.5rem;
    color: #cbd5e1;
    width: 30px;
    text-align: center;
}

.m-info {
    display: flex;
    flex-direction: column;
}

.m-info span:first-child {
    font-weight: 600;
    color: white;
    font-size: 0.95rem;
}

.badge {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    width: fit-content;
    margin-top: 2px;
}

.badge.udp {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.badge.tcp {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}


.marquee-track:hover {
    animation-play-state: paused;
}


.infra-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.infra-features {
    list-style: none;
    margin-top: 30px;
    padding: 0;
}

.infra-features li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.infra-features li:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateX(10px);
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-box i {
    font-size: 1.5rem;
    color: var(--primary);
}

.infra-features h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.infra-features p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}


.network-hub {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.1) 0%, transparent 60%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}


.hub-center {
    position: relative;
    z-index: 10;
}

.hub-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid #10b981;
    animation: hubPulse 2s infinite;
}

.hub-core {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 30px rgba(16, 185, 129, 0.5),
        0 0 60px rgba(16, 185, 129, 0.3);
    position: relative;
}

.hub-core i {
    font-size: 2rem;
    color: white;
}

.hub-label {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 15px;
    color: #10b981;
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
}


.connection-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.connection-node::before {
    content: '';
    position: absolute;
    width: 2px;
    background: linear-gradient(to right, #10b981, transparent);
    height: 150px;
    top: 50%;
    left: 50%;
    transform-origin: left center;
    opacity: 0.4;
}

.node-1 {
    top: 15%;
    left: 20%;
}

.node-1::before {
    width: 180px;
    transform: translate(-50%, -50%) rotate(35deg);
}

.node-2 {
    top: 15%;
    right: 20%;
}

.node-2::before {
    width: 200px;
    transform: translate(-50%, -50%) rotate(-35deg);
}

.node-3 {
    bottom: 20%;
    left: 15%;
}

.node-3::before {
    width: 190px;
    transform: translate(-50%, -50%) rotate(145deg);
}

.node-4 {
    bottom: 20%;
    right: 15%;
}

.node-4::before {
    width: 210px;
    transform: translate(-50%, -50%) rotate(-145deg);
}

.node-dot {
    width: 16px;
    height: 16px;
    background: #3b82f6;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.6);
    position: relative;
}

.connection-node span {
    color: #94a3b8;
    font-size: 0.85rem;
    font-weight: 600;
}


.data-flow {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    opacity: 0;
    animation: dataFlow 3s infinite;
}

.node-1 .data-flow {
    animation-delay: 0s;
}

.node-2 .data-flow {
    animation-delay: 0.75s;
}

.node-3 .data-flow {
    animation-delay: 1.5s;
}

.node-4 .data-flow {
    animation-delay: 2.25s;
}

@keyframes hubPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

@keyframes dataFlow {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) translateX(-150px) scale(0.5);
        opacity: 0;
    }
}

@media(max-width: 960px) {
    .infra-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .map-container {
        height: 300px;
    }
}


.discord-support {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.05) 0%, transparent 100%);
    position: relative;
    overflow: hidden;
}

.discord-support::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(88, 101, 242, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.discord-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.discord-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.discord-icon-container {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(88, 101, 242, 0.1);
    border-radius: 50%;
    border: 2px solid rgba(88, 101, 242, 0.3);
}

.discord-icon-container i {
    font-size: 6rem;
    color: #5865f2;
    filter: drop-shadow(0 0 20px rgba(88, 101, 242, 0.6));
    animation: float 3s ease-in-out infinite;
}

.discord-support .pulse-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #5865f2;
    animation: discordPulse 2s infinite;
}

.discord-support .pulse-circle.delay-1 {
    animation-delay: 1s;
}

@keyframes discordPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.member-count {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(88, 101, 242, 0.15);
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(88, 101, 242, 0.3);
    color: #5865f2;
    font-weight: 700;
    font-size: 1.1rem;
}

.member-count i {
    font-size: 1.3rem;
}

.discord-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.discord-feature {
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.discord-feature:hover {
    background: rgba(88, 101, 242, 0.08);
    border-color: rgba(88, 101, 242, 0.3);
    transform: translateX(10px);
}

.discord-feature .feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(88, 101, 242, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.discord-feature .feature-icon i {
    font-size: 1.5rem;
    color: #5865f2;
}

.feature-content h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.feature-content p {
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

.badge-highlight {
    color: #5865f2;
    font-weight: 700;
    background: rgba(88, 101, 242, 0.15);
    padding: 2px 8px;
    border-radius: 4px;
}

.btn-discord {
    background: #5865f2;
    color: white;
    border: none;
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    transition: 0.3s;
    box-shadow: 0 4px 20px rgba(88, 101, 242, 0.4);
    text-decoration: none;
}

.btn-discord:hover {
    background: #4752c4;
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(88, 101, 242, 0.6);
}

.btn-discord i {
    font-size: 1.3rem;
}

@media(max-width: 960px) {
    .discord-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .discord-icon-container {
        width: 150px;
        height: 150px;
    }

    .discord-icon-container i {
        font-size: 4rem;
    }
}


footer {
    background: #0a0a0f;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    max-width: 180px;
    height: auto;
}

.footer-desc {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.footer-company-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.footer-company-info p {
    color: #64748b;
    font-size: 0.85rem;
    margin: 0;
}

.footer-company-info strong {
    color: #94a3b8;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col h4 {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-col a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-col a i {
    font-size: 0.9rem;
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    text-align: center;
}

.footer-bottom p {
    color: #64748b;
    font-size: 0.85rem;
    margin: 0;
}

@media(max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }

    .footer-col:last-child {
        grid-column: 2 / 3;
    }
}

@media(max-width: 960px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-col:last-child {
        grid-column: auto;
    }
}

@media(max-width: 600px) {
    footer {
        padding: 40px 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-logo {
        max-width: 150px;
    }
}
