:root {

    --bg-main: #06020A;
    --bg-secondary: #0D0418;
    --bg-card: rgba(255, 255, 255, 0.03);

    --primary: #9b4dff;
    --primary-hover: #b070ff;
    --primary-glow: rgba(155, 77, 255, 0.4);

    --text-main: #ffffff;
    --text-muted: #a097b0;

    --border-color: rgba(255, 255, 255, 0.08);


    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;


    --container-width: 1300px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);


    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}


.text-gradient {
    background: linear-gradient(135deg, #fff 0%, #9b4dff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--primary-glow);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: white;
}

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


.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(6, 2, 10, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(6, 2, 10, 0.95);
}

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

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

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary), #ff4dff);
    border-radius: 8px;
    box-shadow: 0 0 15px var(--primary-glow);
    position: relative;
    overflow: hidden;
}

.logo-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.25rem;
    letter-spacing: 1px;
}

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

.nav-link {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.dropdown-arrow {
    font-size: 0.6rem;
    opacity: 0.7;
    transition: var(--transition);
}

.dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-content {
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    min-width: 220px;
    background: rgba(13, 4, 24, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(155, 77, 255, 0.3);
    border-radius: 12px;
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(155, 77, 255, 0.15);
    z-index: 200;
}

.dropdown-content.mega-menu {
    min-width: 500px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 24px;
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    height: 15px;
    background: transparent;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    color: var(--text-muted);
    transition: var(--transition);
    border-radius: 8px;
}

.dropdown-content a:hover {
    color: white;
    background: rgba(155, 77, 255, 0.1);
}

.menu-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.05);
}

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

.menu-text strong {
    font-size: 0.95rem;
    color: white;
    font-weight: 600;
    margin-bottom: 2px;
}

.menu-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.dropdown-content a:hover .menu-text strong {
    color: var(--primary);
}

.mega-menu-footer {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 8px;
    padding-top: 16px;
    padding-left: 12px;
}

.view-all-link {
    color: white !important;
    font-size: 0.8rem !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.view-all-link:hover {
    color: var(--primary-hover) !important;
    background: transparent !important;
    box-shadow: none !important;
    padding-left: 0 !important;
    transform: translateX(5px);
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

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

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

.social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
}

.social-icon:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: white;
    transition: var(--transition);
}


.vps-section {
    background: radial-gradient(circle at 0% 100%, rgba(155, 77, 255, 0.05) 0%, transparent 40%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.location-toggle-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.location-toggle {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px;
    border-radius: 50px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 320px;
}

.toggle-btn {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 12px 20px;
    cursor: pointer;
    z-index: 2;
    transition: var(--transition);
    border-radius: 50px;
}

.toggle-btn.active {
    color: white;
}

.toggle-slider {
    position: absolute;
    top: 6px;
    left: 6px;
    width: calc(50% - 6px);
    height: calc(100% - 12px);
    background: var(--primary);
    border-radius: 50px;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 4px 15px var(--primary-glow);
}

.location-toggle.singapore .toggle-slider {
    transform: translateX(100%);
}

.vps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.vps-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.vps-card:hover {
    transform: translateY(-8px);
    border-color: rgba(155, 77, 255, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(155, 77, 255, 0.1);
}

.vps-card.highlighted {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(155, 77, 255, 0.05) 0%, rgba(13, 4, 24, 0.6) 100%);
    box-shadow: 0 0 40px rgba(155, 77, 255, 0.15);
}

.popular-tag {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 6px 40px;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

.vps-badge {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    color: white;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

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

.vps-price .currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.vps-price .amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.vps-price .period {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.vps-features {
    width: 100%;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vps-features li {
    font-size: 0.95rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.vps-features li::before {
    content: '✔';
    color: var(--primary);
    font-weight: bold;
}

.vps-features li strong {
    color: white;
}

.vps-location {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: auto;
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.03);
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.vps-location .loc-text {
    color: white;
    font-weight: 600;
}


.hero {
    position: relative;
    padding-top: 180px;
    padding-bottom: 120px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    display: none;
}

.background-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-color: var(--bg-main);
}

.background-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 8s linear;
    transform: scale(1.05);
}

.background-slider .slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(to right, rgba(6, 2, 10, 0.95) 0%, rgba(6, 2, 10, 0.6) 60%, rgba(6, 2, 10, 0.2) 100%);
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 0%, transparent 80%);
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    padding: 6px 16px;
    border-radius: 20px;
    background: rgba(155, 77, 255, 0.1);
    border: 1px solid rgba(155, 77, 255, 0.2);
    box-shadow: 0 0 20px rgba(155, 77, 255, 0.1);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(155, 77, 255, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(155, 77, 255, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(155, 77, 255, 0);
    }
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-cta {
    display: flex;
    gap: 16px;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1rem;
}

.hero-image-placeholder {
    width: 100%;
    height: 500px;
    position: relative;
}


.section-tag {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}


.section-header {
    margin-bottom: 40px;
}

.section-title {
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-top: 10px;
}

.center-cta {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}


.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.game-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(155, 77, 255, 0.15);
}

.game-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.game-content {
    position: relative;
    z-index: 1;
    padding: 24px;
    background: linear-gradient(to top, var(--bg-main) 0%, transparent 100%);
}

.game-content h3 {
    font-size: 1.5rem;
    margin-bottom: 4px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.price-start {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.price-start strong {
    color: var(--primary);
    font-size: 1.1rem;
}

/* Enterprise Section */
.enterprise-section {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: radial-gradient(circle at 100% 0%, rgba(155, 77, 255, 0.05) 0%, transparent 40%);
}

.enterprise-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.enterprise-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.enterprise-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-box {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition);
}

.feature-box:hover {
    border-color: rgba(155, 77, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 12px;
    background: rgba(155, 77, 255, 0.1);
    border: 1px solid rgba(155, 77, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-match-icon::before {
    content: '$';
    color: var(--primary);
    font-weight: bold;
    font-size: 1.5rem;
}

.ddos-icon::before {
    content: '🛡';
    color: var(--primary);
    font-size: 1.5rem;
}

.feature-text h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.feature-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Testimonials */
.trust-section {
    background-color: var(--bg-main);
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 12px;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(155, 77, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.testimonial-content {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.8;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.testimonial-author h4 {
    margin: 0;
    font-size: 1rem;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--primary);
}

/* Performance Features Grid */
.performance-section {
    background-color: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.adv-feature-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.adv-feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.adv-icon {
    width: 50px;
    height: 50px;
    background: rgba(155, 77, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.adv-feature-card h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.adv-feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* FAQ Section */
.faq-section {
    background-color: var(--bg-main);
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--primary);
}

.faq-question {
    padding: 24px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-icon {
    color: var(--primary);
    font-size: 1.5rem;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
    display: none;
}

/* Bottom CTA Layout */
.bottom-cta-container {
    background: linear-gradient(135deg, var(--primary), #6f21c2);
    border-radius: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.bottom-cta-content {
    padding: 60px;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.cta-desc {
    font-size: 1.05rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.bottom-cta-image {
    height: 100%;
    position: relative;
    background: rgba(0, 0, 0, 0.2);
}

.floating-blocks {
    width: 100%;
    height: 100%;
    min-height: 400px;
    position: relative;
}

.f-block {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 20px;
    top: 50%;
    border: 4px solid rgba(255, 255, 255, 0.1);
}

/* Demo Overlay Layout */
.demo-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.demo-overlay.active {
    display: flex;
}

.demo-container {
    width: 100%;
    max-width: 1200px;
    height: 85vh;
    background: #0a0a0f;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    overflow: hidden;
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
}

.demo-sidebar {
    width: 240px;
    background: #07070a;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.demo-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

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

.close-demo {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    z-index: 10001;
}

/* Server Cards & Grid */
.server-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding: 30px;
}

.server-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease;
}

.server-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.server-card img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* Terminal Layout */
.terminal-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    height: 100%;
}

.terminal-main {
    background: #020205;
    display: flex;
    flex-direction: column;
}

.terminal-header {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #ff5f56;
    border-radius: 50%;
    margin-right: 10px;
}

.status-dot.online {
    background: #00ff88;
    box-shadow: 0 0 10px #00ff88;
}

.terminal-body {
    flex: 1;
    padding: 20px;
    font-family: 'Consolas', monospace;
    font-size: 14px;
    overflow-y: auto;
}

.log-line {
    display: block;
    margin-bottom: 5px;
    color: #a0a0a0;
}

/* Footer */
.footer {
    background-color: #07030c;
    padding: 80px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Demo Sidebar & Views */
.sidebar-nav .nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    font-size: 14px;
}

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

.sidebar-nav .nav-item.active {
    background: linear-gradient(90deg, rgba(155, 77, 255, 0.2) 0%, transparent 100%);
}

/* Auth Modal & Social Login */
.social-login {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.btn-social {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    justify-content: center;
    font-size: 0.85rem;
    padding: 14px;
}

.btn-social img {
    width: 18px;
    height: 18px;
    margin-right: 10px;
}

.btn-social:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
    font-weight: 700;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.divider span {
    padding: 0 15px;
}

.footer {
    background-color: #040106;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 80px;
}

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

.footer-desc {
    color: var(--text-muted);
    margin-top: 20px;
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.link-group h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: white;
    letter-spacing: 1px;
}

.link-group a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.link-group a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-bottom {
    background: rgba(255, 255, 255, 0.02);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-methods {
    display: flex;
    gap: 16px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* Auth Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    width: 100%;
    max-width: 450px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(155, 77, 255, 0.1);
}

.modal.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

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

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-icon {
    margin: 0 auto 16px;
    width: 48px;
    height: 48px;
}

.modal-header h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.modal-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(155, 77, 255, 0.2);
}

.btn-block {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    margin-top: 10px;
}

.modal-footer {
    margin-top: 24px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.modal-footer a {
    color: var(--primary);
    font-weight: 600;
}

.modal-footer a:hover {
    text-decoration: underline;
}

.auth-error {
    color: #ff5f56;
    background: rgba(255, 95, 86, 0.1);
    padding: 10px;
    border-radius: 6px;
    border: 1px solid rgba(255, 95, 86, 0.2);
    margin-bottom: 20px;
    font-size: 0.9rem;
    text-align: center;
    display: none;
}

/* Dashboard Utils for Client Area */
.dashboard-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 100vh;
    padding-top: 80px;
    background: radial-gradient(circle at 50% 0%, rgba(155, 77, 255, 0.15) 0%, var(--bg-main) 60%);
}

.sidebar {
    background: rgba(13, 4, 24, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px 20px;
    position: relative;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
}

.sidebar::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--primary), transparent);
    opacity: 0.3;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-link {
    padding: 12px 16px;
    border-radius: 8px;
    color: var(--text-muted);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-link:hover,
.sidebar-link.active {
    background: linear-gradient(90deg, rgba(155, 77, 255, 0.2), transparent);
    color: white;
    box-shadow: inset 3px 0 0 var(--primary);
    transform: translateX(4px);
}


.dashboard-content {
    padding: 40px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(155, 77, 255, 0.2);
    box-shadow: 0 15px 50px rgba(155, 77, 255, 0.1);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card h3 {
    font-size: 2rem;
    margin-top: 10px;
}

.stat-card span {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.admin-table tbody tr {
    transition: var(--transition);
}

.admin-table tbody tr:hover {
    background: rgba(155, 77, 255, 0.05);
}

.admin-table th,
.admin-table td {
    padding: 20px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-table th {
    font-family: var(--font-heading);
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 1024px) {

    .faq-container,
    .bottom-cta-container,
    .footer-container {
        grid-template-columns: 1fr;
    }

    .bottom-cta-content {
        padding: 40px 24px;
        text-align: center;
    }

    .bottom-cta-image {
        min-height: 250px;
    }

    .floating-blocks {
        min-height: 250px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;

    }

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

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

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-actions {
        display: none;
    }

    .enterprise-container {
        grid-template-columns: 1fr;
    }

    .dashboard-container {
        grid-template-columns: 1fr;
    }

    .dashboard-image {
        order: 2;
    }

    .dashboard-info {
        order: 1;
    }
}

/* Utils */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 24px;
}

/* Comparison Table */
.compare-section {
    background-color: var(--bg-secondary);
}

.compare-table-container {
    overflow-x: auto;
    margin-top: 40px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    padding: 24px;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.compare-table th {
    padding: 20px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    border-bottom: 2px solid var(--border-color);
}

.compare-table th span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
}

.feature-col {
    text-align: left;
    width: 50%;
}

.plan-col {
    text-align: center;
    width: 25%;
}

.premium-plan {
    color: var(--primary);
}

.compare-table td {
    padding: 24px 20px;
    border-bottom: 1px solid var(--border-color);
}

.compare-table tbody tr:last-child td {
    border-bottom: none;
}

.compare-table td strong {
    display: block;
    margin-bottom: 4px;
    font-size: 1.05rem;
}

.compare-table td p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.compare-table td:not(:first-child) {
    text-align: center;
    font-size: 1.5rem;
}

.check {
    color: #00ff88;
}

.cross {
    color: #ff3366;
}

/* Interactive Demo Overlay Styles */
.demo-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://wallpapercave.com/wp/wp11705819.jpg') center/cover no-repeat;
    z-index: 2000;
    display: none;
    /* Hidden by default */
    opacity: 0;
    transition: opacity 0.5s ease;
    padding: 2.5%;
}

.demo-overlay.active {
    display: block;
    opacity: 1;
}

.demo-container {
    width: 100%;
    height: 100%;
    background: rgba(10, 5, 18, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    display: grid;
    grid-template-columns: 280px 1fr;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8);
}

.close-demo {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 24px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2100;
    transition: var(--transition);
}

.close-demo:hover {
    background: #ff5f56;
    transform: rotate(90deg);
}

/* Demo Sidebar */
.demo-sidebar {
    background: rgba(0, 0, 0, 0.3);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
}

.demo-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    padding: 0 16px;
}

.demo-logo span {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.demo-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.demo-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.demo-nav-link .icon {
    font-size: 1.2rem;
    opacity: 0.8;
}

.demo-nav-link:hover,
.demo-nav-link.active {
    background: linear-gradient(90deg, var(--primary), #7d3bd6);
    color: white;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.demo-nav-link.active .icon {
    opacity: 1;
}

.more-btn {
    margin-top: auto;
}

/* Demo Main */
.demo-main {
    padding: 40px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.demo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.support-badge,
.discord-badge {
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.header-banner {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 30px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Server Grid */
.server-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.server-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
    cursor: pointer;
}

.server-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.server-card img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.server-info h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.server-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Terminal View */
.demo-view {
    display: none;
}

.demo-view.active {
    display: block;
}

.terminal-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 24px;
}

.terminal-main {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    height: 500px;
}

.terminal-header {
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #ff5f56;
    /* Offline red */
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
}

.status-dot.online {
    background: #00ff88;
    box-shadow: 0 0 10px #00ff88;
}

.terminal-actions {
    display: flex;
    gap: 12px;
}

.t-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.t-btn.play {
    background: #00ff88;
    color: #000;
}

.t-btn.reload {
    background: #ffbd2e;
    color: #000;
}

.t-btn.stop {
    background: #ff5f56;
    color: #fff;
}

.t-btn:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.terminal-body {
    flex: 1;
    padding: 24px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
    color: #00ff88;
    overflow-y: auto;
}

.log-line {
    display: block;
    margin-bottom: 8px;
}

.terminal-input {
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.terminal-input .prompt {
    color: var(--primary);
    font-weight: 900;
}

.terminal-input input {
    background: transparent;
    border: none;
    color: white;
    flex: 1;
    font-family: inherit;
    outline: none;
}

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

.stat-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(4px);
}

.stat-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-details label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 2px;
}

.stat-details span {
    font-size: 0.95rem;
    font-weight: 700;
}

.discord-order-btn {
    background-color: #5865F2 !important;
    color: white !important;
    box-shadow: 0 4px 20px rgba(88, 101, 242, 0.4) !important;
}

.discord-order-btn:hover {
    background-color: #4752C4 !important;
    box-shadow: 0 8px 30px rgba(88, 101, 242, 0.6) !important;
    transform: translateY(-2px);
}