@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Colors */
    --bg-dark: #050510;
    --bg-card: #0F1221;
    --bg-card-hover: #151929;
    --primary: #5B4DFF;
    --primary-light: #8E84FF;
    --accent: #00F0FF;
    --text-main: #FFFFFF;
    --text-muted: #9CA3AF;
    --border: #1F2937;
    --success: #10B981;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-glow: linear-gradient(135deg, rgba(91, 77, 255, 0.2) 0%, rgba(0, 240, 255, 0.2) 100%);

    /* Spacing */
    --container-width: 1200px;
    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(91, 77, 255, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(0, 240, 255, 0.05) 0%, transparent 25%),
        linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 50px 50px, 50px 50px;
    padding-top: var(--header-height);
}

/* Page Header (Subpages) */
.page-header {
    background: linear-gradient(180deg, rgba(5, 5, 16, 0.8) 0%, var(--bg-dark) 100%),
        url('/assets/images/server-bg.jpg');
    /* You would ideally have an image here, using fallback gradient for now */
    padding: 220px 0 100px;
    /* Increased top padding to prevent header overlap */
    text-align: center;
    position: relative;
    border-bottom: 1px solid var(--border);
    z-index: 10;
    /* Lower than header */
}

/* ... existing code ... */

/* Header & Nav */
header {
    height: var(--header-height);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    /* Extreme Z-Index to stay on top */
    background: rgba(5, 5, 16, 0.95);
    /* More opaque */
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.page-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Footer Styles */
footer {
    background: #020208;
    border-top: 1px solid var(--border);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: 1px solid var(--border);
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.payment-methods {
    display: flex;
    gap: 15px;
    font-size: 1.5rem;
    color: var(--text-main);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(91, 77, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(91, 77, 255, 0.6);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
}

.btn-disabled {
    background: #1F2937;
    color: #6B7280;
    cursor: not-allowed;
    border: 1px solid #374151;
    pointer-events: none;
    box-shadow: none;
}

/* Header & Nav */
header {
    height: var(--header-height);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 16, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
    margin-right: 40px;
    /* Added spacing */
}

.nav-links {
    display: flex;
    gap: 30px;
    /* Reduced slightly to accommodate margins */
}

/* ... existing styles ... */

.nav-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-left: 40px;
    /* Added spacing */
}

/* Sections */
section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

/* Titles */
.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Stats Section */
.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 60px;
    margin-top: -60px;
    position: relative;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* DDoS Visuals */
.ddos-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 60px 0;
    perspective: 1000px;
}

.shield-core {
    width: 200px;
    height: 200px;
    background: var(--bg-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary);
    box-shadow: 0 0 50px rgba(91, 77, 255, 0.3);
    position: relative;
    z-index: 2;
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 50px rgba(91, 77, 255, 0.3);
    }

    50% {
        box-shadow: 0 0 80px rgba(91, 77, 255, 0.5);
    }

    100% {
        box-shadow: 0 0 50px rgba(91, 77, 255, 0.3);
    }
}

.attack-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #FF4D4D;
    border-radius: 50%;
}

/* Features Grid Refined */

.highlight {
    color: var(--primary-light);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(91, 77, 255, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
    display: inline-block;
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Pricing/Servers */
.servers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.server-card {
    background: rgba(21, 25, 33, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 35px;
    transition: all 0.3s ease;
    position: relative;
}

.server-card:hover {
    border-color: var(--primary);
    transform: translateY(-7px);
    background: rgba(21, 25, 33, 0.9);
}

.badge {
    background: rgba(16, 185, 129, 0.15);
    color: var(--success);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.server-header h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-light);
    margin: 20px 0;
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.server-specs {
    margin: 25px 0;
}

.spec-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
}

.spec-label i {
    color: var(--accent);
    font-size: 1.1rem;
}

.spec-value {
    font-weight: 500;
}

.server-card .btn {
    width: 100%;
    margin-top: 20px;
}

/* New Tabbed Pricing Styles */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    padding: 15px 35px;
    border-radius: 50px;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 0 25px rgba(91, 77, 255, 0.4);
}

.pricing-content-wrapper {
    display: none;
    animation: fadeIn 0.5s ease;
}

.pricing-content-wrapper.active {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Detailed List inside Cards */
.server-specs-list {
    margin: 20px 0;
    text-align: left;
    list-style: none;
}

.server-specs-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.server-specs-list li:last-child {
    border-bottom: none;
}

.server-specs-list li i {
    color: var(--success);
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Section Dividers inside Pricing */
.pricing-divider {
    grid-column: 1 / -1;
    text-align: center;
    margin: 40px 0 20px;
    position: relative;
}

.pricing-divider span {
    background: var(--bg-dark);
    padding: 0 20px;
    position: relative;
    z-index: 2;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pricing-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--border);
    z-index: 1;
}

/* Logo Grid (Trusted By / OS) */
.brand-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    opacity: 0.6;
    margin-top: 40px;
}

.brand-item {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.brand-item:hover {
    opacity: 1;
    /* Fixed from previous logic which was on the container */
    transform: scale(1.05);
    color: var(--primary-light);
}

.brand-icon {
    font-size: 2.5rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    body {
        font-size: 15px;
    }

    h1 {
        font-size: 3rem !important;
        /* Override inline styles */
    }

    .mobile-toggle {
        display: block !important;
    }

    .nav-links {
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: rgba(5, 5, 16, 0.98);
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        gap: 25px;
        clip-path: circle(0% at 100% 0);
        transition: all 0.5s ease-in-out;
        border-bottom: 1px solid var(--border);
    }

    .nav-links.active {
        clip-path: circle(150% at 100% 0);
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .hero {
        padding-top: 120px !important;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    section {
        padding: 60px 0;
    }

}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-text {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 5px;
    background: linear-gradient(to right, #fff, var(--primary), #fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 3s linear infinite;
    margin-bottom: 20px;
}

.loader-bar {
    width: 150px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
}

.loader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--primary);
    animation: loading 2s ease-in-out infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

@keyframes loading {
    0% {
        width: 0%;
        left: 0;
    }

    50% {
        width: 100%;
        left: 0;
    }

    100% {
        width: 100%;
        left: 100%;
    }
}

/* =========================================
   New Premium Design Elements
   ========================================= */

/* Premium Hero Overlay */
.hero-premium {
    position: relative;
    padding: 160px 0 100px;
    background-color: var(--bg-dark);
    margin-bottom: 60px;
    overflow: hidden;
}

.hero-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(91, 77, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.hero-premium .container {
    position: relative;
    z-index: 2;
}

.hero-premium h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #a5b4fc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-badge i {
    color: var(--accent);
}

/* SEO Content Section */
.seo-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.01);
}

.seo-content {
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.1rem;
}

.seo-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.seo-content p {
    margin-bottom: 25px;
}

.seo-content ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.seo-content li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.seo-content li::before {
    content: '✓';
    color: var(--success);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Feature Highlights (Grid) */
.features-premium {
    padding: 100px 0;
}

.features-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-box {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-box:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-box-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: rgba(91, 77, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-light);
    margin-bottom: 25px;
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.feature-box p {
    color: var(--text-muted);
}

/* OS Grid */
.os-section {
    padding: 80px 0;
    text-align: center;
}

.os-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.os-card {
    background: var(--bg-card);
    padding: 25px 40px;
    border-radius: 16px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.os-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
}

.os-icon {
    font-size: 2rem;
}

/* Included Features Table/List */
.included-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.inc-feat-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
}

.inc-feat-icon {
    color: var(--success);
    font-size: 1.4rem;
    margin-top: 3px;
}

.inc-feat-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: white;
}

.inc-feat-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* =========================================
   Datacenter Showcase Section
   ========================================= */

.datacenter-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.datacenter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.datacenter-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.datacenter-image img {
    width: 100%;
    height: auto;
    display: block;
}

.datacenter-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid rgba(91, 77, 255, 0.3);
    border-radius: 24px;
    pointer-events: none;
}

.datacenter-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.datacenter-info .location-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(91, 77, 255, 0.15);
    color: var(--primary-light);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.datacenter-info p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
}

.dc-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.dc-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.dc-feature i {
    color: var(--accent);
    font-size: 1.3rem;
    margin-top: 2px;
}

.dc-feature-text h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: white;
}

.dc-feature-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* Stats Row */
.stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(91, 77, 255, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-light);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-muted);
}

/* DDoS Protection Visual Section */
.ddos-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.ddos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ddos-visual {
    text-align: center;
}

.ddos-visual img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}

.ddos-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.ddos-content>p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
}

.ddos-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ddos-feat {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.ddos-feat i {
    font-size: 1.5rem;
    color: var(--success);
}

.ddos-feat-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: white;
}

.ddos-feat-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* Hero with Background Image */
.hero-with-bg {
    position: relative;
    padding: 180px 0 120px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-with-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 20, 0.85) 0%, rgba(10, 10, 20, 0.95) 100%);
    z-index: 1;
}

.hero-with-bg .container {
    position: relative;
    z-index: 2;
}

/* Responsive */
@media (max-width: 992px) {

    .datacenter-grid,
    .ddos-grid {
        grid-template-columns: 1fr;
    }

    .datacenter-image {
        order: -1;
    }

    .stats-grid {
        gap: 40px;
    }

    .dc-features {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Additional Content Sections (Hardware, Network, Panel)
   ========================================= */

/* Generic Split Section Base */
.content-section {
    padding: 100px 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.content-section.alt-bg {
    background: rgba(255, 255, 255, 0.01);
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.split-grid.reverse .visual-col {
    order: 1;
}

.split-grid.reverse .content-col {
    order: -1;
}

.visual-col img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border);
}

.content-col h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.content-col .lead-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 30px;
}

.feature-list-check {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-main);
}

.check-item i {
    color: var(--success);
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Specific Section Tweaks if needed */
.network-section .visual-col img {
    box-shadow: 0 0 50px rgba(91, 77, 255, 0.15);
}

@media (max-width: 992px) {
    .split-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .split-grid.reverse .visual-col {
        order: -1;
    }

    .split-grid.reverse .content-col {
        order: 0;
    }
}

/* --- PREMIUM UI EXTENSIONS --- */

/* Animated Gradients */
@keyframes gradient-xy {

    0%,
    100% {
        background-position: 0% 50%;
        offset: 0;
    }

    50% {
        background-position: 100% 50%;
        offset: 0.5;
    }
}

.text-gradient-gold {
    background: linear-gradient(to right, #F59E0B, #FCD34D, #F59E0B);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 3s linear infinite;
    font-weight: 800;
}

.text-gradient-primary {
    background: linear-gradient(135deg, #5B4DFF 0%, #00F0FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glassmorphism Premium */
.card-glass-premium {
    background: rgba(15, 18, 33, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.card-glass-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    z-index: 0;
    pointer-events: none;
}

.card-glass-premium:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 20px 40px -10px rgba(91, 77, 255, 0.2);
    background: rgba(21, 25, 33, 0.8);
}

.card-glass-premium>* {
    position: relative;
    z-index: 1;
}

/* Feature Icons with Glow */
.icon-box-glow {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(91, 77, 255, 0.1), rgba(0, 240, 255, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.icon-box-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.5s ease;
}

.feature-card:hover .icon-box-glow,
.card-glass-premium:hover .icon-box-glow {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    transform: rotateY(10deg);
}

.feature-card:hover .icon-box-glow::after,
.card-glass-premium:hover .icon-box-glow::after {
    opacity: 1;
    transform: scale(1);
}

/* Hero Modern */
.hero-modern {
    position: relative;
    padding: 240px 0 160px;
    background: radial-gradient(circle at 20% 30%, rgba(91, 77, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 240, 255, 0.10) 0%, transparent 50%);
    overflow: hidden;
}

.hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/images/grid-pattern.png');
    /* Fallback or generated pattern */
    opacity: 0.1;
    z-index: 0;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    mix-blend-mode: overlay;
    z-index: 0;
    filter: saturate(0);
}

/* Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 24px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.01);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    min-width: 800px;
}

.comparison-table th,
.comparison-table td {
    padding: 25px 30px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table th {
    background: rgba(255, 255, 255, 0.03);
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
}

.comparison-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.comparison-table td {
    color: var(--text-muted);
    font-size: 1rem;
}

.comparison-table .check {
    color: var(--success);
    font-size: 1.2rem;
}

.comparison-table .cross {
    color: #EF4444;
    font-size: 1.2rem;
}

/* FAQ Accordion */
.faq-grid {
    display: grid;
    gap: 20px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-light);
    background: rgba(255, 255, 255, 0.04);
}

.faq-item summary {
    padding: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '\002B';
    /* Plus sign */
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
    font-weight: 200;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item[open] summary {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--primary-light);
}

.faq-item .faq-content {
    padding: 25px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Shape Dividers & Decorations */
.shape-divider-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.shape-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.shape-fill {
    fill: var(--bg-dark);
}

.alt-bg {
    background: #080A15;
}

.glow-text {
    text-shadow: 0 0 20px rgba(91, 77, 255, 0.5);
}

/* Floating Elements Animation */
@keyframes float-y {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

.animate-float {
    animation: float-y 6s ease-in-out infinite;
}

.animate-float-delayed {
    animation: float-y 8s ease-in-out infinite 1s;
}