/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Colors - Light Theme Green Edition */
    --primary: #22c55e;
    --primary-dark: #16a34a;
    --secondary: #1f2937;
    --accent: #22c55e;

    --bg-body: #ffffff;
    --bg-light: #f8f9fa;
    --bg-card: #ffffff;

    --text-main: #1f2937;
    --text-muted: #6b7280;
    --text-light: #9ca3af;

    --border: #e5e7eb;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

    --radius: 0.75rem;
    --container: 1400px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 9999px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(34, 197, 94, 0.4);
}

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

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    color: var(--primary);
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-main);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s;
}

.nav-item:hover .nav-link svg {
    transform: rotate(180deg);
}

/* Mega Menu */
.nav-item {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    width: 750px;
    /* Increased from 600px */
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    /* Increased left column ratio */
    overflow: hidden;
}

.mega-menu.mega-menu-wide {
    width: 1050px;
    grid-template-columns: 1.2fr 1fr 1fr;
    left: 45%;
}

.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mm-highlight {
    background: var(--bg-light);
    padding: 2rem;
    /* Increased padding */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Changed from center */
}

.mm-highlight h4 {
    color: var(--text-main);
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
    /* Increased from 1.1rem */
    font-weight: 800;
    letter-spacing: -0.5px;
}

.mm-highlight p {
    color: var(--text-muted);
    font-size: 0.95rem;
    /* Increased from 0.85rem */
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.mm-highlight .tag {
    background: var(--primary);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.mm-list {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mm-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    transition: 0.1s;
}

.mm-item:hover {
    background: var(--bg-light);
}

.mm-icon {
    width: 32px;
    height: 32px;
    background: rgba(34, 197, 94, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.mm-content h5 {
    font-size: 0.9rem;
    margin-bottom: 0.1rem;
}

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

/* Simple Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateY(10px);
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

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

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0.75rem;
    border-radius: 0.5rem;
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 500;
    transition: 0.2s;
}

.dropdown-item:hover {
    background: var(--bg-light);
    color: var(--primary);
}

.dropdown-item i {
    color: var(--primary);
    width: 20px;
    text-align: center;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.discord-btn {
    color: #5865F2;
    /* Discord brand color mostly stays same */
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.discord-btn:hover {
    color: #4752c4;
}

/* Hero Section - Split Layout (Redesign) */
.hero {
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
    /* Gentle light gradient background */
    background: radial-gradient(circle at 30% 30%, rgba(34, 197, 94, 0.03) 0%, transparent 70%),
        linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-left {
    z-index: 2;
}

.hero-badge-top {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(34, 197, 94, 0.08);
    /* Light green tint */
    color: var(--primary-dark);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(34, 197, 94, 0.1);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    letter-spacing: -1px;
}

.hero h1 .text-highlight {
    color: var(--primary);
    /* Green highlight */
    position: relative;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 550px;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Feature Pills Row */
.hero-pills {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    box-shadow: var(--shadow-sm);
}

.hero-pill i {
    color: var(--primary);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Right Side - Floating Cards Grid */
.hero-right {
    position: relative;
    z-index: 2;
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: white;
    padding: 1.75rem;
    border-radius: 1.25rem;
    /* Rounder corners like reference */
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    /* Stronger, softer shadow */
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 160px;
    /* Ensure generic uniformity */
}

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

.stat-header {
    margin-bottom: 1rem;
}

.stat-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    /* Title in theme color */
    margin-bottom: 0.25rem;
}

.stat-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.stat-bar {
    height: 6px;
    background: #f1f5f9;
    border-radius: 3px;
    margin-top: auto;
    overflow: hidden;
    position: relative;
}

.stat-bar-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 3px;
    width: 0%;
    /* Animate via JS or set inline */
    transition: width 1s ease-out;
}

.stat-label {
    font-size: 0.75rem;
    color: #94a3b8;
    text-align: right;
    margin-top: 0.25rem;
    display: block;
    font-weight: 600;
}

/* Stagger Logic: Push the second column (even items) down */
.hero-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
    /* Align to top so margins work */
}

.hero-stats-grid .stat-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-stats-grid .stat-card:nth-child(even) {
    transform: translateY(2.5rem);
    /* Shift right column down visually */
}

/* Responsive Styles for New Hero */
@media (max-width: 1024px) {
    .hero-split {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

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

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        margin: 0 auto 2rem;
    }

    .hero-pills {
        justify-content: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-right {
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-stats-grid .stat-card:nth-child(even) {
        transform: none;
        /* Remove stagger on mobile/tablet if needed or keep it */
        margin-top: 2rem;
        /* Use margin instead of transform for flow */
    }
}

@media (max-width: 600px) {
    .hero-stats-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats-grid .stat-card:nth-child(even) {
        transform: none;
        margin-top: 0;
    }
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-main);
    font-weight: 500;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

/* Sections */
.section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.section-title p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.text-primary {
    color: var(--primary);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: 0.3s;
}

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

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(34, 197, 94, 0.1);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

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

/* Pricing */
/* Pricing Grid (Standard Grid) */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* Pricing Carousel (Horizontal Scroll) */
.pricing-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.pricing-carousel::-webkit-scrollbar {
    display: none;
}

.pricing-carousel .pricing-card {
    min-width: 300px;
    flex: 0 0 auto;
}

.carousel-nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: white;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.carousel-nav-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--bg-light);
}

/* CPU Selector */
.cpu-selector {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cpu-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-weight: 700;
    color: var(--text-main);
    cursor: pointer;
    transition: all 0.2s;
    opacity: 0.7;
}

.cpu-btn.active {
    border-color: var(--primary);
    background: rgba(34, 197, 94, 0.05);
    /* Light green tint */
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cpu-btn:hover {
    opacity: 1;
    border-color: var(--primary);
}

.cpu-btn img {
    width: 24px;
    height: auto;
    border-radius: 2px;
}

/* Billing Selector - Refined */
.billing-selector {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    background: white;
    padding: 0.5rem;
    border-radius: 50px;
    display: inline-flex;
    /* Center the whole group */
    border: 1px solid var(--border);
    left: 50%;
    position: relative;
    transform: translateX(-50%);
}

.billing-btn {
    padding: 0.5rem 1.5rem;
    border: none;
    background: transparent;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s ease;
}

.billing-btn.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(34, 197, 94, 0.3);
}

.billing-btn:hover:not(.active) {
    color: var(--primary);
}

.pricing-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
    position: relative;
    transition: 0.3s;
}

.pricing-card.popular {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.1);
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin: 1.5rem 0;
}


/* Image Thumbnail Wrapper */
.card-thumb {
    position: relative;
    height: 150px;
    border-radius: 0.5rem;
    overflow: hidden;
    margin-bottom: 1rem;
    background-size: cover;
    background-position: center;
}

/* Discount Badge */
.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #10b981;
    /* Green-500 */
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    z-index: 2;
}

/* Hover Overlay */
.hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-thumb:hover .hover-overlay {
    opacity: 1;
}

.play-icon-circle {
    width: 48px;
    height: 48px;
    background: var(--primary);
    /* Green like the theme */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.card-thumb:hover .play-icon-circle {
    transform: scale(1);
}

.price-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.old-price {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: -2px;
}

.current-price {
    color: var(--primary);
    /* Green highlight */
    font-weight: 800;
    font-size: 1.5rem;
}

.features-list {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-main);
    font-size: 0.95rem;
}

.features-list li i {
    color: var(--primary);
}

/* Footer */
footer {
    background: #0f172a;
    /* Keeping footer dark for contrast */
    color: #e2e8f0;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    display: block;
}

.footer-logo span {
    color: var(--primary);
}

.footer-desc {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 300px;
}

.footer-col h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #94a3b8;
    font-size: 0.9rem;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748b;
    font-size: 0.85rem;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .nav-desktop {
        display: none;
    }

    /* Mobile menu simplified for now */
    .hero h1 {
        font-size: 2.5rem;
    }

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

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

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

    .game-hero-grid {
        grid-template-columns: 1fr;
    }

    .gh-list {
        display: none;
    }

    /* Hide list on mobile or stack it */
}

/* Game Hero Unified (Dynamic Interactive) */
.game-hero-unified {
    position: relative;
    /* Default Background - will be overridden by inline style via JS */
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.8) 50%, rgba(15, 23, 42, 0.4) 100%), url('../img/fivem.webp');
    background-size: cover;
    background-position: center;
    border-radius: 1.5rem;
    min-height: 600px;
    /* Taller as requested */
    padding: 4rem;
    color: white;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: background-image 0.5s ease-in-out;
}

.gh-content {
    position: relative;
    z-index: 2;
    padding-left: 1rem;
}

.gh-sidebar {
    position: relative;
    z-index: 2;
    background: rgba(20, 20, 20, 0.6);
    /* Darker semi-transparent */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.25rem;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    margin-left: auto;
    /* Push to right */
}

.gh-sidebar h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.75rem;
}

.gh-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.gh-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid transparent;
    transition: all 0.2s ease;
    text-decoration: none;
}

.gh-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.gh-item.active {
    background: rgba(34, 197, 94, 0.15);
    border-color: var(--primary);
}

.gh-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.2);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
}

.gh-info h5 {
    color: white;
    font-size: 0.95rem;
    margin: 0;
    font-weight: 600;
}

/* VPS Dark Hero (New Design) */
.vps-hero-dark {
    background: #000;
    /* Fallback */
    background: radial-gradient(circle at 70% 50%, rgba(20, 30, 50, 1) 0%, rgba(5, 5, 10, 1) 100%);
    padding: 6rem 0;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 550px;
    display: flex;
    align-items: center;
}

.vps-hero-badge {
    background: linear-gradient(90deg, #22c55e, #16a34a);
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
}

.vps-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.vps-hero-title .highlight {
    color: #22c55e;
    /* Or gradient text if prefer */
    background: linear-gradient(90deg, #4ade80, #22c55e);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vps-hero-desc {
    color: #94a3b8;
    font-size: 1.1rem;
    max-width: 500px;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.vps-features-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.vps-feature-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.6rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    color: #cbd5e1;
    background: rgba(255, 255, 255, 0.03);
}

.vps-feature-pill i {
    color: #4ade80;
}

.vps-price-block {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-flex;
}

.vps-price-label {
    font-size: 0.85rem;
    color: #94a3b8;
    display: block;
    margin-bottom: 0.2rem;
}

.vps-price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.vps-hero-img-container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vps-hero-img {
    width: 100%;
    max-width: 550px;
    /* Restored constraint */
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;

    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 50px rgba(34, 197, 94, 0.2));
    /* Add glow */
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.vps-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    /* Ensure above bg */
}

/* VPS Plans Grid & Cards */
.vps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

/* Billing Selector (VPS) */
.billing-selector {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.billing-btn {
    background: transparent;
    border: 1px solid #e2e8f0;
    color: #1f2937;
    /* Dark text */
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.billing-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.billing-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.vps-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    /* Center content including buttons */
}

.vps-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary);
}

.vps-card-header {
    text-align: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1.5rem;
}

.vps-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(34, 197, 94, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.vps-card-title {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.5rem;
}

.vps-spec-highlight {
    color: #94a3b8;
    font-size: 0.9rem;
}

.vps-specs {
    margin-bottom: 2rem;
}

.vps-spec-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #cbd5e1;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.vps-spec-item i {
    width: 24px;
    color: var(--primary);
    text-align: center;
}

.vps-card-price {
    text-align: center;
    margin-bottom: 1.5rem;
    color: white;
}

.vps-card-price .currency {
    font-size: 1rem;
    vertical-align: top;
    color: #94a3b8;
}

.vps-card-price .amount {
    font-size: 2.5rem;
    font-weight: 700;
}

.vps-card-price .period {
    color: #94a3b8;
    font-size: 0.9rem;
}

.cpu-selector-container {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.cpu-selector {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    padding: 0.5rem;
    display: inline-flex;
    gap: 0.5rem;
}

.cpu-btn {
    background: transparent;
    border: none;
    color: #1f2937;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cpu-btn.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

/* Dark Section Utility */
.section-dark {
    background-color: #0f172a;
    /* Dark slate background */
    color: white;
    padding: 4rem 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .game-hero-unified {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 3rem;
        gap: 2.5rem;
    }


    .gh-sidebar {
        margin: 0 auto;
        width: 100%;
    }

    /* VPS Hero Responsive */
    .vps-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .vps-hero-title {
        font-size: 2.5rem;
    }

    .vps-features-row {
        justify-content: center;
    }

    .vps-hero-badge {
        display: inline-block;
    }

    .vps-hero-img {
        max-width: 400px;
        /* Limit size on mobile/tablet */
        margin: 0 auto;
    }

    .vps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .cpu-selector {
        width: 100%;
        display: flex;
    }

    .cpu-btn {
        flex: 1;
        justify-content: center;
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
}

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

.faq-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 768px) {
    .faq-container {
        grid-template-columns: 1fr;
    }
}

.faq-item {
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s ease;
    height: fit-content;
    /* Ensure alignment */
}

.faq-item[open] {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.faq-question {
    padding: 1.25rem 1.5rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    color: var(--text-main);
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-icon {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-icon {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.6;
    border-top: 1px solid transparent;
}

.faq-item[open] .faq-answer {
    animation: fadeIn 0.3s ease;
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Blog Styles */
.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 2rem;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-thumb {
    display: block;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.blog-info {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.blog-meta i {
    color: var(--primary);
    margin-right: 5px;
}

.blog-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-title a {
    color: var(--text);
    text-decoration: none;
    transition: 0.2s;
}

.blog-title a:hover {
    color: var(--primary);
}

.blog-excerpt {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    gap: 10px;
}

.post-hero {
    position: relative;
}

.author-box {
    margin-top: 3rem;
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
    /* Sticky effect */
}

.sidebar-widget {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.sidebar-widget h4 {
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
    border-left: 4px solid var(--primary);
    padding-left: 10px;
}

.search-form {
    display: flex;
    gap: 10px;
}

.search-form input {
    flex: 1;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: var(--bg-dark);
    color: var(--text);
}

.search-form button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0 15px;
    border-radius: 6px;
    cursor: pointer;
}

.recent-posts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-posts li {
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1rem;
}

.recent-posts li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.recent-post-link {
    display: flex;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
    transition: 0.2s;
}

.recent-post-link:hover .title {
    color: var(--primary);
}

.recent-post-thumb {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.recent-post-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.recent-post-info .title {
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.2;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recent-post-info .date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: var(--bg-dark);
    color: var(--text-muted);
    padding: 4px 10px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.2s;
    border: 1px solid var(--border);
}

.tag:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Responsive Split Grid (Fix for Uptime Card Overflow) */
.split-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 992px) {
    .split-feature-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}