:root {
    --brand: #3b82f6;
    --brand-dark: #2563eb;
    --brand-text: #ffffff;
    --bg-dark: #0a0a0a;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --border-light: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
}

section,
.site-footer {
    border-top: 2px solid rgba(255, 255, 255, 0.08);
}


.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('https://sonata.tariqdev.xyz/asset/images/wallpaper/mcbg.jpg');
    background-size: cover;
    background-position: center 20%;
    transform: scale(1.1);
    z-index: -2;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.85) 50%, rgba(0, 0, 0, 0) 100%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 1) 100%);
    z-index: -1;
}

.top-banner {
    background: var(--brand);
    color: white;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    position: relative;
    z-index: 100;
}

.top-banner a {
    color: white;
    font-weight: 700;
    text-decoration: underline;
}

.close-banner {
    position: absolute;
    right: 16px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-banner:hover {
    color: white;
}

.navbar {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    z-index: 50;
    height: 64px;
    max-width: 1400px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-light);
    border-radius: 9999px;
    padding: 0 24px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.025em;
    transition: color 0.2s;
}

.logo:hover {
    color: var(--brand);
}

.logo-icon {
    width: 16px;
    height: 16px;
    background: #60a5fa;
    border-radius: 2px;
    box-shadow: 4px 0 0 #60a5fa, 0 4px 0 #60a5fa, 4px 4px 0 #60a5fa;
    margin-right: 8px;
    transform: scale(0.6);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.chevron {
    font-size: 0.6rem;
    opacity: 0.7;
}

/* Game Hosting Dropdown */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown-trigger {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s;
    cursor: pointer;
}

.nav-dropdown-trigger:hover {
    color: var(--text-primary);
}

/* Bridges the 18px gap below the trigger so moving the cursor toward the
   menu doesn't drop :hover and close it mid-travel. */
.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -16px;
    width: 270px;
    height: 20px;
    display: none;
}

.nav-dropdown:hover::after,
.nav-dropdown.active::after {
    display: block;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: -16px;
    background: #111114;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 8px;
    min-width: 270px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.85);
    z-index: 999;

    /* Smooth animation properties */
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) scale(0.98);
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
    pointer-events: none;
    /* Prevent clicks when hidden */
}

.nav-dropdown.active .dropdown-menu,
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-secondary);
    transition: all 0.2s;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.dropdown-item.active-item {
    background: rgba(168, 85, 247, 0.1);
    color: white;
}

.di-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.di-icon img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.di-text strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2px;
}

.di-text span {
    font-size: 0.73rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: all 0.2s;
}

.icon-btn:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.login-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.login-btn {
    background: transparent;
    border: 1px solid var(--border-light);
    color: white;
    padding: 8px 16px;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.action-btn {
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.action-btn.start {
    background: #84cc16;
    /* Bright Green */
}

.action-btn.restart {
    background: #eab308;
    /* Bright Yellow */
}

.action-btn.stop {
    background: #ef4444;
    /* Bright Red */
}

.action-btn:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.primary-btn {
    background: var(--brand);
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 14px 0 rgba(168, 85, 247, 0.39);
}

.primary-btn:hover {
    background: var(--brand-dark);
    color: white;
    text-decoration: none;
}

.nav-btn-primary {
    background: var(--brand);
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
    box-shadow: 0 4px 14px 0 rgba(168, 85, 247, 0.39);
}

.nav-btn-primary:hover {
    background: var(--brand-dark);
    color: white;
    text-decoration: none;
}

.primary-btn.lg {
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 4px 0 #7e22ce;
    transform: translateY(0);
    transition: transform 0.1s, box-shadow 0.1s, background-color 0.2s;
}

.primary-btn.lg:active {
    transform: translateY(4px);
    box-shadow: 0 0 0 #7e22ce;
}

.secondary-btn {
    background: #111115;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 0 #000000;
    transform: translateY(0);
    transition: transform 0.1s, box-shadow 0.1s, background-color 0.2s;
}

.secondary-btn:hover {
    background: #1a1a20;
}

.secondary-btn:active {
    transform: translateY(4px);
    box-shadow: 0 0 0 #000000;
}

.hero-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 140px 40px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    min-height: 100vh;
}

.hero-content {
    flex: 1;
    min-width: 500px;
    max-width: 650px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #d8b4fe;
    margin-bottom: 24px;
}

.hytale-logo {
    height: 36px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    white-space: nowrap;
}

.gradient-text {
    background: linear-gradient(to right, #d8b4fe, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.gradient-text::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--brand);
    filter: blur(24px);
    opacity: 0.3;
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-subtitle strong {
    color: white;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.arrow {
    transition: transform 0.2s;
}

.primary-btn:hover .arrow {
    transform: translateX(4px);
}

.stats-container {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

.stat-text {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1rem;
    font-weight: 700;
    color: white;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.stat-divider {
    width: 1px;
    height: 32px;
    background: var(--border-light);
}

.hero-image-wrapper {
    flex: 1;
    perspective: 1200px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    z-index: 10;
}

/* Panel Mockup Styling */
.panel-mockup {
    width: 950px;
    height: 680px;
    background: transparent;
    display: flex;
    overflow: hidden;
    transform: rotateY(-20deg) rotateX(10deg) rotateZ(-1deg) scale(0.95) translateX(60px);
    transform-style: preserve-3d;
    position: relative;
    flex-shrink: 0;
    margin-right: -250px;
    margin-left: -50px;
    margin-top: 0px;
}



.panel-sidebar {
    width: 220px;
    background: #0c0d10;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}

.panel-logo {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.panel-logo svg {
    color: white;
}

.panel-logo span {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.2;
}

.panel-logo small {
    font-size: 0.7rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.panel-search {
    margin: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 8px 12px;
    gap: 8px;
}

.panel-search svg {
    color: var(--text-secondary);
}

.panel-search input {
    background: transparent;
    border: none;
    color: white;
    font-size: 0.8rem;
    outline: none;
    width: 100%;
}

.panel-search input::placeholder {
    color: var(--text-secondary);
}

.panel-nav {
    padding: 0 12px;
    flex: 1;
}

.nav-group-title {
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin: 8px 0 4px 12px;
    letter-spacing: 0.05em;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 2px;
    cursor: pointer;
}

.nav-item:hover,
.nav-item.active {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.panel-user {
    padding: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
}

.panel-user img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.panel-user span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.panel-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #0f1115;
}

.panel-header {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.announcement {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    gap: 12px;
}

.announcement svg {
    color: #9ca3af;
    margin-top: 2px;
}

.announcement strong {
    font-size: 0.85rem;
    display: block;
    margin-bottom: 2px;
}

.announcement p {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.panel-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.server-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.server-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

.server-info h2 {
    font-size: 1.25rem;
    font-weight: 600;
}

.server-actions {
    display: flex;
    gap: 8px;
}

.action-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.action-btn.start {
    background: #166534;
    color: white;
}

.action-btn.restart {
    background: #854d0e;
    color: white;
}

.action-btn.stop {
    background: #991b1b;
    color: white;
}

.console-output {
    flex: 1;
    background: #000000;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 16px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.65rem;
    color: #d1d5db;
    overflow: hidden;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
}

.console-output code {
    flex: 1;
    overflow: hidden;
}

.console-input {
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.3);
}

.text-yellow {
    color: #eab308;
}

.text-red {
    color: #ef4444;
}

.text-green {
    color: #22c55e;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons,
    .stats-container {
        justify-content: center;
    }

    .panel-mockup {
        transform: none;
        width: 100%;
        max-width: 700px;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-actions .primary-btn {
        display: none;
    }

    .hero-title {
        font-size: 3rem;
    }

    .stats-container {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .stat-divider {
        width: 100%;
        height: 1px;
    }
}

/* ========================
   Features / Why Choose Us
   ======================== */

.features-section {
    background: #000000;
    padding: 100px 0;
    position: relative;
}

.features-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
    gap: 80px;
}

.features-left {
    flex: 0 0 360px;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--brand);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.mgmt-tab:not(.active) .tab-content {
    display: none;
}

.label-line {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--brand);
    border-radius: 2px;
}

.features-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.features-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
}

.compare-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    font-family: inherit;
}

.compare-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.features-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.feature-card {
    background: #0d0d10;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 28px;
    transition: border-color 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-card:hover {
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateY(-2px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.feature-title {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    line-height: 1.3;
}

.feature-desc {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.6;
    flex: 1;
}

.feature-stat {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-big {
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.02em;
}

.stat-unit {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    text-transform: uppercase;
}

/* ========================
   Supported Games Section
   ======================== */

.games-section {
    background: #000000;
    padding: 80px 0 100px;
}

.games-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}

.games-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 36px;
}

.games-header-left {
    display: flex;
    flex-direction: column;
}

.games-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-top: 8px;
}

.browse-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
    margin-bottom: 8px;
    white-space: nowrap;
}

.browse-link:hover {
    color: white;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: 12px;
}

.game-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: transform 0.3s, border-color 0.3s;
}

.game-card:hover {
    transform: scale(1.02);
    border-color: rgba(168, 85, 247, 0.4);
}

.game-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.game-card:hover .game-img {
    transform: scale(1.05);
}

.game-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 30%,
            rgba(0, 0, 0, 0.8) 100%);
    pointer-events: none;
}

.game-badge-popular {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--brand);
    color: white;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: 9999px;
    text-transform: uppercase;
}

.game-info {
    position: absolute;
    bottom: 14px;
    left: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.game-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.game-icon-dot {
    width: 14px;
    height: 14px;
    border-radius: 3px;
    display: inline-block;
}

.minecraft-dot {
    background: #5B9A3E;
}

.games-footer {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-top: 24px;
}

/* ========================
   Infrastructure Section
   ======================== */

.infra-section {
    background-color: #000;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center top;
    padding: 100px 0 80px;
    overflow: hidden;
}

.infra-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 48px;
    text-align: center;
    margin-bottom: 60px;
}

.infra-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.infra-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}

/* Marquee */
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    margin-bottom: 16px;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.marquee-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: marquee-left 30s linear infinite;
}

.marquee-reverse {
    animation: marquee-right 30s linear infinite;
}

@keyframes marquee-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes marquee-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

.tech-card {
    background: #0d0d10;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 16px 20px;
    min-width: 220px;
    flex-shrink: 0;
}

.tech-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.tech-body {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tech-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2px;
}

.tech-desc {
    font-size: 0.72rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Infra Stats */
.infra-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    margin-top: 64px;
    padding: 0 48px;
}

.infra-stat {
    text-align: center;
}

.infra-stat-val {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.infra-stat-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.infra-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
}

/* ========================
   Locations / Global Infra
   ======================== */

.locations-section {
    background: #000000;
    padding: 80px 0 100px;
}

.locations-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}

.locations-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.locations-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 40px;
}

.locations-layout {
    display: flex;
    gap: 24px;
    align-items: stretch;
}

.map-area {
    flex: 1;
    background: #0a0a0c;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.actual-map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.locations-list-area {
    flex: 0 0 400px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.location-item {
    background: #0a0a0c;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.2s;
    cursor: pointer;
}

.location-item:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
}

.loc-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.loc-flag {
    font-size: 1.5rem;
}

.loc-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.loc-city {
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
}

.loc-country {
    color: var(--text-secondary);
    font-size: 0.75rem;
}

.loc-signal {
    color: rgba(255, 255, 255, 0.2);
}

.test-conn-btn {
    margin-top: 4px;
    background: linear-gradient(to right, #3b82f6, #60a5fa);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.25);
    font-family: inherit;
}

.test-conn-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(168, 85, 247, 0.4);
}

/* ========================
   Newsletter Section
   ======================== */

.newsletter-section {
    background: #000000;
    padding: 80px 0 100px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.newsletter-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.newsletter-text {
    flex: 1;
    max-width: 500px;
}

.newsletter-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.blue-text {
    color: var(--brand);
}

.newsletter-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.newsletter-form-wrapper {
    flex: 0 0 500px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-input-group {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 8px;
    padding-left: 48px;
    transition: border-color 0.2s, background 0.2s;
}

.newsletter-input-group:focus-within {
    border-color: rgba(168, 85, 247, 0.4);
    background: rgba(255, 255, 255, 0.06);
}

.mail-icon {
    position: absolute;
    left: 16px;
    color: var(--text-secondary);
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    font-size: 0.95rem;
    padding: 8px 0;
    outline: none;
    font-family: inherit;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.subscribe-btn {
    background: var(--brand);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    font-family: inherit;
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.3);
}

.subscribe-btn:hover {
    background: #b66af8;
    /* Slightly lighter blue */
    transform: translateY(-1px);
    box-shadow: 0 6px 25px rgba(168, 85, 247, 0.4);
}

.spam-notice {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    padding-left: 4px;
}

/* ========================
   Map Tooltips
   ======================== */

.map-hitbox {
    position: absolute;
    width: 32px;
    height: 32px;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 10;
    /* Uncomment below to see hitboxes during debug */
    /* border: 1px solid red; */
    border-radius: 50%;
}

.map-tooltip {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 12px;
    background: rgba(15, 15, 18, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    width: max-content;
    padding: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 20;
}

.map-tooltip.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(4px);
}

.tooltip-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.tooltip-flag {
    font-size: 1.4rem;
}

.tooltip-title {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tooltip-title strong {
    color: white;
    font-size: 0.95rem;
    font-weight: 700;
}

.tooltip-title span {
    color: var(--text-secondary);
    font-size: 0.75rem;
}

.tooltip-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 0 -16px 12px -16px;
}

.tooltip-footer {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    text-align: center;
}

/* ========================
   Server Management Section
   ======================== */

.management-section {
    background: #000000;
    padding: 100px 0;
}

.management-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.management-layout {
    display: flex;
    gap: 80px;
    align-items: center;
}

.management-left {
    flex: 1;
    max-width: 500px;
}

.management-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 24px;
}

.gradient-text-blue {
    background: linear-gradient(to right, #d946ef, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.management-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 48px;
}

.management-tabs {
    display: flex;
    flex-direction: column;
}

.mgmt-tab {
    padding: 20px 24px;
    border-left: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mgmt-tab.active {
    border-left-color: var(--brand);
    background: linear-gradient(90deg, rgba(168, 85, 247, 0.05) 0%, transparent 100%);
}

.tab-header {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 600;
}

.mgmt-tab.active .tab-header {
    color: white;
}

.tab-header svg {
    opacity: 0.5;
}

.mgmt-tab.active .tab-header svg {
    opacity: 1;
    stroke: var(--brand);
}

.tab-content {
    margin-top: 16px;
    padding-left: 36px;
    display: none;
}

.mgmt-tab.active .tab-content {
    display: block;
}

.tab-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.tab-link {
    color: var(--brand);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
}

.tab-link:hover {
    text-decoration: underline;
}

.management-right {
    flex: 1.2;
}

.panel-preview-wrapper {
    position: relative;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    background: #0a0a0c;
}

.panel-preview-wrapper::before {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 60%;
    background: var(--brand);
    filter: blur(100px);
    opacity: 0.3;
    z-index: -1;
}

.panel-preview-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 1024px) {
    .management-layout {
        flex-direction: column;
    }

    .management-left {
        max-width: 100%;
    }
}

/* ========================
   Testimonials Section
   ======================== */

.testimonials-section {
    background: #000000;
    padding: 100px 0;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.testimonials-title-area {
    max-width: 600px;
}

.testimonials-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 24px;
}

.testimonials-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.trustpilot-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.tp-stars {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.tp-rating {
    display: flex;
    flex-direction: column;
}

.tp-rating .stars {
    color: #00b67a;
    font-size: 1rem;
    letter-spacing: 2px;
}

.tp-rating .text {
    color: var(--text-secondary);
    font-size: 0.75rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testi-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.testi-card {
    background: #0a0a0c;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.03), 0 8px 32px rgba(0, 0, 0, 0.5);
}

.testi-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.06), 0 12px 40px rgba(0, 0, 0, 0.6);
}

.testi-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.testi-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.testi-info {
    flex: 1;
}

.testi-info h4 {
    color: white;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.testi-info span {
    color: var(--text-secondary);
    font-size: 0.75rem;
}

.testi-stars {
    color: #f59e0b;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.testi-text {
    color: #d1d5db;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.testi-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.game-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 4px 10px;
    border-radius: 6px;
}

.twitter-handle {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

@media (max-width: 1024px) {
    .testimonials-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }

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

    .testi-col {
        margin-top: 0 !important;
    }
}

/* ========================
   Community / Discord Section
   ======================== */

.community-section {
    background: #000000;
    padding-bottom: 100px;
}

/* Stats Bar */
.stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 32px 0;
    margin-bottom: 100px;
}

.stat-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 0 60px;
}

.stat-bar-value {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.02em;
}

.stat-bar-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.stat-bar-divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.06);
}

/* Community Layout */
.community-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.community-layout {
    display: flex;
    align-items: center;
    gap: 80px;
}

.community-left {
    flex: 1;
    max-width: 500px;
}

.community-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 24px;
}

.community-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
}

.discord-join-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #1d4ed8, #5b21b6);
    color: white;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 0 24px rgba(124, 58, 237, 0.4);
}

.discord-join-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(124, 58, 237, 0.6);
}

/* Discord Widget */
.community-right {
    flex: 1;
    max-width: 420px;
}

.discord-widget {
    background: #0a0a0c;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
}

.dw-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
}

.dw-server-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1d4ed8, #5b21b6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dw-server-info h4 {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.dw-online {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #22c55e;
    font-size: 0.8rem;
    font-weight: 600;
}

.dw-green-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 6px #22c55e;
    animation: pulse 2s infinite;
}

.dw-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin: 0;
}

.dw-members-label {
    padding: 14px 24px 6px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.dw-members-text {
    padding: 0 24px 16px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.3);
}

.dw-ticket-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.dw-ticket-icon {
    width: 32px;
    height: 32px;
    background: rgba(124, 58, 237, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
    flex-shrink: 0;
}

.dw-ticket-link {
    color: var(--brand);
    text-decoration: none;
    font-weight: 700;
}

.dw-ticket-link:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .community-layout {
        flex-direction: column;
    }

    .community-left {
        max-width: 100%;
    }

    .community-right {
        max-width: 100%;
        width: 100%;
    }

    .stats-bar {
        flex-wrap: wrap;
        gap: 24px;
        padding: 32px 20px;
    }

    .stat-bar-divider {
        display: none;
    }
}

/* ========================
   Pricing Section
   ======================== */

.pricing-section {
    background: #000000;
    padding: 100px 0;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.pricing-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
}

.pricing-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 48px;
}

/* Billing Toggle */
.billing-toggle {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 4px;
    gap: 4px;
    margin-bottom: 56px;
}

.toggle-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 9px;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.toggle-btn.active {
    background: rgba(168, 85, 247, 0.15);
    color: white;
    box-shadow: 0 0 0 1px rgba(168, 85, 247, 0.4);
}

.save-badge {
    background: rgba(168, 85, 247, 0.2);
    color: #3b82f6;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 2px 7px;
    border-radius: 99px;
}

.save-badge.green {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

/* Cards Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.plan-card {
    background: #0a0a0c;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.12);
}

.plan-card.popular {
    border-color: rgba(168, 85, 247, 0.4);
    background: linear-gradient(180deg, rgba(168, 85, 247, 0.06) 0%, #0a0a0c 60%);
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.12);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #1d4ed8, #3b82f6);
    color: white;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 5px 16px;
    border-radius: 99px;
    white-space: nowrap;
}

.plan-tier {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 4px;
}

.plan-currency {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
}

.plan-amount {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
}

.plan-period {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.plan-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.plan-tag.stable {
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
}

.plan-tag.gaming {
    background: rgba(168, 85, 247, 0.12);
    color: #60a5fa;
}

.plan-tag.extreme {
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
}

.plan-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 24px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: #d1d5db;
}

.plan-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.primary-btn {
    background: linear-gradient(135deg, #1d4ed8, #3b82f6);
    color: white;
    box-shadow: 0 0 24px rgba(168, 85, 247, 0.4);
}

.primary-btn:hover {
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.6);
    transform: translateY(-2px);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.04);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.pricing-footer {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-top: 40px;
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin: 0 auto;
    }
}

/* ========================
   FAQ Section
   ======================== */

.faq-section {
    background: #000000;
    padding: 80px 0 100px;
}

.faq-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    text-align: center;
    margin-bottom: 32px;
}

.faq-search-wrap {
    width: 100%;
    position: relative;
    margin-bottom: 24px;
}

.faq-search-wrap svg {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
}

.faq-search {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 14px 16px 14px 44px;
    color: white;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
}

.faq-search:focus {
    border-color: rgba(168, 85, 247, 0.4);
}

.faq-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    overflow: hidden;
    transition: background 0.2s, border-color 0.2s;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(168, 85, 247, 0.3);
}

.faq-question {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
}

.faq-badge {
    background: rgba(168, 85, 247, 0.15);
    color: #60a5fa;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    letter-spacing: 0.05em;
}

.faq-icon {
    margin-left: auto;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.faq-item.active .faq-icon {
    background: rgba(255, 255, 255, 0.1);
}

.faq-answer {
    padding: 0 20px 20px 52px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-support-card {
    width: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.faq-support-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.faq-support-card strong {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.faq-support-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.faq-support-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ========================
   CTA Section
   ======================== */

.cta-section {
    background: #000000;
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.cta-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-title {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.cta-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.cta-btn-primary {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(168, 85, 247, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.cta-btn-secondary {
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

/* ========================
   Footer Section
   ======================== */

.site-footer {
    background: #000000;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-brand-desc {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    line-height: 1.6;
}

.footer-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 16px;
}

.footer-status .status-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 6px #22c55e;
}

.footer-col h4 {
    color: white;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copyright {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.footer-payments {
    display: flex;
    align-items: center;
}

.payment-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pay-badge {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    font-weight: 700;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 16px;
}

.social-icon {
    color: var(--text-secondary);
    transition: color 0.2s;
}

.social-icon:hover {
    color: white;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}

/* Selection Grid Styles */
.selection-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.selection-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.selection-column-title {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.selection-card {
    background: #0d0d10;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 16px;
}

.selection-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.02);
}

.selection-card.active {
    border-color: var(--brand);
    background: rgba(168, 85, 247, 0.05);
}

.selection-card-icon {
    width: 24px;
    height: 24px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.selection-card.active .selection-card-icon {
    color: var(--brand);
}

.selection-card-content {
    flex: 1;
}

.selection-card-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.selection-card-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.badge-blue {
    background: var(--brand);
    color: white;
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
}

.badge-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 0.65rem;
    padding: 1px 5px;
    border-radius: 4px;
    font-weight: 600;
}

/* Package Cards Styling */
.package-cards-container {
    width: 320px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pkg-update-banner {
    background: linear-gradient(to right, #2481a5, #11786c);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    height: 105px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.pkg-update-text {
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.pkg-update-label {
    font-size: 1.05rem;
    font-weight: 500;
    color: white;
}

.pkg-update-title {
    font-size: 1.65rem;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.pkg-update-desc {
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pkg-update-images {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.pkg-update-images img {
    position: absolute;
}

.update-icons-combined {
    width: 140px;
    height: auto;
    position: absolute;
    right: -10px;
    top: -15px;
    filter: drop-shadow(0px 8px 16px rgba(0, 0, 0, 0.25));
}

.pkg-pricing-card {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.7);
}

.pkg-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.pkg-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pkg-icon-wrapper {
    width: 48px;
    height: 48px;
    background: #4ade80;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.15), inset 0 2px 4px rgba(255, 255, 255, 0.2);
    padding: 8px;
}

.pkg-icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pkg-title {
    display: flex;
    flex-direction: column;
}

.pkg-name {
    font-size: 1.15rem;
    font-weight: 800;
}

.text-green {
    color: #4ade80;
}

.pkg-ram {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 2px;
}

.pkg-ram strong {
    color: white;
}

.pkg-price {
    text-align: right;
}

.pkg-price strong {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    display: block;
    letter-spacing: -0.02em;
}

.pkg-price span {
    font-size: 0.75rem;
    color: #f59e0b;
    font-weight: 500;
}

.pkg-features {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    padding: 16px 12px;
    margin-top: 4px;
}

.pkg-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
    text-align: center;
}

.pkg-order-btn {
    width: 100%;
    padding: 14px;
    background: transparent;
    border: 1px solid #4ade80;
    border-radius: 8px;
    color: #4ade80;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.pkg-order-btn:hover {
    background: rgba(74, 222, 128, 0.1);
}

.pkg-more {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.5);
}

.pkg-more-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
}

.pkg-more-icons {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 20px;
    gap: 8px;
}

.pkg-mini-icons-group {
    display: flex;
}

.pkg-mini-icon {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    margin-right: -6px;
    box-shadow: -2px 0 4px rgba(0, 0, 0, 0.2);
}

.bg-yellow {
    background: #facc15;
}

.bg-gray {
    background: #52525b;
}

.bg-green {
    background: #4ade80;
    z-index: 1;
}

.pkg-more-count {
    font-size: 0.8rem;
    font-weight: 800;
    color: #38bdf8;
    margin-left: 6px;
}

\n

/* New Footer Bottom Styles */
.footer-bottom-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-payments-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.payment-title {
    font-size: 0.65rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.payment-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.payment-logos:hover {
    opacity: 1;
}

.payment-logos img {
    height: 24px;
    width: auto;
    object-fit: contain;
}

.footer-copyright-row {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 640px) {
    .footer-copyright-row {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer-social-icons {
    display: flex;
    gap: 8px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid transparent;
    color: rgba(255, 255, 255, 0.45);
    transition: all 0.2s ease;
    text-decoration: none;
}

.social-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.social-btn:hover {
    background: #27272a;
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
}

.scroll-up-btn {
    margin-left: 16px;
}


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

/* Hamburger Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 8px;
    margin-left: 10px;
}

@media (max-width: 1024px) {
    /* Navbar */
    .nav-links, .nav-actions {
        display: none !important; /* Hidden on mobile by default */
    }
    .mobile-menu-btn {
        display: block;
    }
    
    /* Mobile Menu Active State */
    .nav-container.mobile-active {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
        background: #050505;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-container.mobile-active .logo {
        margin-bottom: 20px;
    }
    
    .nav-container.mobile-active .mobile-menu-btn {
        position: absolute;
        top: 20px;
        right: 20px;
    }
    
    .nav-container.mobile-active .nav-links {
        display: flex !important;
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    
    .nav-container.mobile-active .nav-actions {
        display: flex !important;
        flex-direction: column;
        width: 100%;
        margin-top: 20px;
    }
    
    .nav-container.mobile-active .nav-dropdown-trigger {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }
    
    .nav-container.mobile-active .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255,255,255,0.05);
        margin-top: 10px;
        display: none; /* Toggle via JS */
    }
    
    .nav-dropdown.active .dropdown-menu {
        display: flex;
        flex-direction: column;
    }

    /* Hero Section */
    .hero-title {
        font-size: 3rem;
        line-height: 1.1;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .hero-buttons button {
        width: 100%;
    }
    .hero-image-wrapper {
        display: none; /* Hide 3D panel on small mobile to save space, or adjust size */
    }
    
    /* Layouts and Grids */
    .features-grid, .games-grid, .plans-grid, .testimonials-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Stats */
    .stats-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .stat-divider {
        display: none;
    }
    
    /* Infra stats */
    .infra-stats {
        flex-direction: column;
        gap: 20px;
    }
    .infra-stat-divider {
        display: none;
    }
    
    /* Footer */
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
    
    /* Marquee */
    .tech-card {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .section-label {
        font-size: 0.8rem;
    }
}
