/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-bg: #121212;
    --primary-accent: #00FFFF;
    --secondary-accent: #8A2BE2;
    --light-text: #FFFFFF;
    --muted-text: #AAAAAA;
    --success: #2ECC71;
    --error: #E74C3C;
}

@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;700;800&family=Roboto:wght@300;400;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
.nav-link,
.cta-button,
.vps-cta {
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Styles */

.no-scroll {
    overflow: hidden;
    height: 100vh;
    touch-action: none;
}


/* Reset and variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-bg: #121218;
    --header-bg: rgba(10, 10, 18, 0.95);
    --primary: #1E90FF;
    --secondary: #8A2BE2;
    --text: #FFFFFF;
    --text-muted: #AAAAAA;
    --border: rgba(30, 144, 255, 0.2);
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    --header-height: 70px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 150vh;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: var(--header-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    height: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    position: relative;
    z-index: 1001;
    min-width: 150px;
}

.logo-accent {
    color: var(--primary);
}

/* Main Navigation - Using horizontal tabs for main categories */
.main-nav {
    height: 100%;
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-tabs {
    display: flex;
    list-style: none;
    height: 100%;
    margin: 0 auto;
}

.nav-tab {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.tab-link {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 15px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.tab-link:hover {
    color: var(--text);
}

/* Indicator line for tabs */
.tab-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.tab-link:hover::after,
.nav-tab:hover .tab-link::after {
    transform: scaleX(1);
}

/* Drop indicator */
.dropdown-icon {
    font-size: 0.7rem;
    margin-left: 5px;
    opacity: 0.7;
    transition: transform 0.3s;
}

.nav-tab:hover .dropdown-icon {
    transform: rotate(180deg);
    opacity: 1;
}

/* Simple dropdown for non-mega menus */
.simple-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--header-bg);
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 4px 4px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    z-index: 999;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.view-all-container {
    padding: 10px 15px;
    border-top: 1px solid var(--border);
}

.view-all-games {
    display: block;
    background: #1E90FF;
    /* changed from gradient to solid blue */
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    text-align: center;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.view-all-games:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 144, 255, 0.4);
    /* updated to match new blue */
}

.nav-tab:hover .simple-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-list {
    list-style: none;
    padding: 10px 0;
}

.dropdown-item {
    display: block;
    padding: 8px 20px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.dropdown-item:hover {
    background: rgba(30, 144, 255, 0.1);
    color: var(--text);
    padding-left: 25px;
}

/* Login button */
.login-btn {
    background: #1E90FF;
    /* Dodger Blue */
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: flex;
    align-items: center;
    min-width: 150px;
    justify-content: center;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 144, 255, 0.3);
}

.login-icon {
    margin-right: 8px;
    font-size: 0.9rem;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--header-bg);
    z-index: 998;
    padding: 80px 20px 20px;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.4s;
}

/* Mobile View All Games button */
.mobile-view-all-container {
    padding: 10px 5px;
    margin-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-view-all-games {
    display: block;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    text-align: center;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav-list {
    list-style: none;
}

.mobile-nav-item {
    margin-bottom: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
}

.mobile-nav-link.active {
    color: var(--text);
}

.mobile-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s;
    background: rgba(0, 0, 0, 0.1);
}

.mobile-dropdown.active {
    max-height: 1000px;
}

.mobile-category {
    padding: 10px 15px;
    margin-bottom: 5px;
}

.mobile-category-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 600;
}

.mobile-category-list {
    list-style: none;
}

.mobile-category-item {
    margin-bottom: 8px;
}

.mobile-category-link {
    display: block;
    padding: 8px 10px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.mobile-login {
    margin-top: 20px;
    text-align: center;
}

.mobile-login-btn {
    width: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .main-nav {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 15px;
    }

    .mobile-nav {
        padding: 70px 15px 15px;
    }
}

@media (max-width: 576px) {
    .logo {
        font-size: 1.3rem;
    }

    .mobile-nav-link {
        padding: 12px 8px;
        font-size: 0.95rem;
    }

    .mobile-category-link {
        padding: 6px 8px;
        font-size: 0.85rem;
    }
}

html {
    scroll-behavior: smooth;
}


/* UK VPS Hero Section Styles */
.vps-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 100px 20px 60px;
    z-index: 1;
}

/* Video Background */
.vps-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.vps-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    overflow: hidden;
}

.vps-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

/* Dark Overlay with UK-themed gradient */
.vps-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(0, 0, 40, 0.92),
            rgba(18, 18, 40, 0.95),
            rgba(2, 0, 36, 0.9));
    z-index: -2;
}

/* Grid Background */
.grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: -1;
}

/* Hero Content */
.vps-hero-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 20px;
}

/* Trustpilot Badge */
.trust-badge {
    display: inline-block;
    background: linear-gradient(90deg, rgba(0, 255, 255, 0.08), rgba(138, 43, 226, 0.08));
    padding: 10px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.trustpilot {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--muted-text);
}

.stars {
    color: gold;
    letter-spacing: 1px;
}

.rating {
    font-weight: 500;
}

.highlight {
    color: var(--primary-accent);
    font-weight: 700;
}

/* Main Headline */
.vps-headline {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
}

.accent {
    color: var(--primary-accent);
    position: relative;
    display: inline-block;
}

.accent::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90 deg, var(--primary-accent), transparent);
}

/* Subheadline */
.vps-subheadline {
    font-size: 1.5rem;
    color: var(--light-text);
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

/* Feature Statement */
.vps-feature-statement {
    margin-bottom: 25px;
}

.vps-feature-statement p {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light-text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.highlight-negative {
    color: var(--primary-accent);
    font-weight: 900;
    padding: 0 5px;
    position: relative;
    text-decoration: underline;
    /* Added underline */
}

.highlight-negative::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 255, 255, 0.1);
    transform: skewX(-10deg);
    z-index: -1;
}

/* Location Badge */
.location-badge {
    margin: 10px auto;
    /* Reduced from 15px auto */
    position: relative;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    background: rgba(20, 20, 40, 0.4);
    border: 1px solid rgba(0, 255, 255, 0.15);
}

.location-badge p {
    font-size: 1.5rem;
    margin: 0;
}

/* Core Benefits */
.vps-core-benefits {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 10px auto;
    max-width: 800px;
    padding: 0 10px;
    flex-wrap: wrap;
    /* Allow wrapping on small screens */
}

.benefit {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(30, 30, 50, 0.4);
    padding: 4px 12px;
    border-radius: 16px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    flex: 0 1 auto;
    /* Don't force expansion */
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

.benefit:hover {
    background: rgba(30, 30, 50, 0.6);
    border-color: rgba(0, 255, 255, 0.2);
}

.checkmark {
    color: var(--success);
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
}

.benefit-text {
    font-weight: 600;
    color: var(--light-text);
    font-size: 1.1rem;
    line-height: 1;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .vps-core-benefits {
        flex-wrap: wrap;
        /* Allow items to wrap on mobile */
        justify-content: center;
        gap: 8px;
        padding: 0 5px;
        width: 100%;
        /* Full width container */
    }

    .benefit {
        padding: 4px 10px;
        min-width: auto;
        flex-basis: auto;
        /* Let items size naturally */
    }

    .benefit-text {
        font-size: 0.95rem;
    }

    /* Adjust headline for mobile */
    .vps-headline {
        font-size: 2.5rem;
    }

    /* Make subheadline more compact */
    .vps-subheadline {
        font-size: 1.3rem;
    }

    /* Make feature statement fit better */
    .vps-feature-statement p {
        font-size: 1.5rem;
    }

    /* Location badge adjustment */
    .location-badge p {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .vps-core-benefits {
        gap: 6px;
    }

    .benefit {
        padding: 3px 8px;
        width: auto;
        /* Let them size naturally */
    }

    .checkmark {
        font-size: 1rem;
    }

    .benefit-text {
        font-size: 0.85rem;
    }

    /* Smaller headline for tiny screens */
    .vps-headline {
        font-size: 2rem;
    }

    /* Further reduce feature statement size */
    .vps-feature-statement p {
        font-size: 1.2rem;
    }
}




/* CTA Buttons */
.vps-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 25px 0;
    /* Reduced from 40px */
    flex-wrap: wrap;
}

.vps-cta {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
}

.vps-cta-primary {
    background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
    color: var(--dark-bg);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}

.vps-cta-primary span {
    position: relative;
    z-index: 1;
}

.vps-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-accent), var(--primary-accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vps-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 255, 255, 0.5);
}

.vps-cta-primary:hover::before {
    opacity: 1;
}

.vps-cta-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: none;
}

.vps-cta-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Payment Methods */
.payment-methods {
    margin-top: 40px;
}

.payment-icons {
    max-width: 350px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.payment-icons:hover {
    opacity: 1;
}

/* UK Server Visual */
.uk-server-visual {
    position: absolute;
    bottom: -20px;
    right: 5%;
    width: 200px;
    height: 300px;
    background: url('/assets/images/uk-server-rack.png') no-repeat bottom center;
    background-size: contain;
    z-index: 3;
    opacity: 0.9;
    display: none;
}

.server-glow {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background-color: var(--primary-accent);
    border-radius: 50%;
    box-shadow: 0 0 30px 10px rgba(0, 255, 255, 0.5);
    animation: server-pulse 2s infinite;
}

@keyframes server-pulse {
    0% {
        opacity: 0.5;
        box-shadow: 0 0 20px 5px rgba(0, 255, 255, 0.3);
    }

    50% {
        opacity: 1;
        box-shadow: 0 0 40px 15px rgba(0, 255, 255, 0.5);
    }

    100% {
        opacity: 0.5;
        box-shadow: 0 0 20px 5px rgba(0, 255, 255, 0.3);
    }
}

/* Footer Styles */








footer {
    background-color: var(--footer-bg);
    color: var(--light-text);
    padding: 60px 0 30px;
    position: relative;
    border-top: 1px solid var(--footer-border);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(0, 255, 255, 0.03), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(138, 43, 226, 0.03), transparent 40%);
    z-index: 0;
    pointer-events: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
}

.footer-column h3 {
    font-family: sans-serif;

    font-size: 1.2rem;
    color: var(--primary-accent);
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-accent), transparent);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--muted-text);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-accent);
    transform: translateX(3px);
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-accent);
    transition: width 0.3s ease;
}

.footer-links a:hover::before {
    width: 100%;
}

/* Footer Bottom Styles */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--muted-text);
    margin-bottom: 10px;
}

.footer-bottom a {
    color: var(--muted-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--primary-accent);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--light-text);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-accent);
    color: var(--darker-bg);
    transform: translateY(-3px);
}

/* Newsletter Form (if needed) */
.newsletter-form {
    display: flex;
    margin-top: 15px;
    max-width: 300px;
}

.newsletter-input {
    flex-grow: 1;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 4px 0 0 4px;
    color: var(--light-text);
    font-family: 'Roboto', sans-serif;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-accent);
}

.newsletter-btn {
    background-color: var(--primary-accent);
    color: var(--darker-bg);
    border: none;
    padding: 0 15px;
    border-radius: 0 4px 4px 0;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-btn:hover {
    background-color: #00CCFF;
}

/* Responsive Styles */
@media (min-width: 768px) {
    .mobile-nav-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        flex-direction: row;
        align-items: center;
        padding: 0;
    }

    .nav-link {
        margin: 0 1rem;
        padding: 0.5rem;
        border-bottom: none;
    }

    .nav-cta {
        margin-top: 0;
        margin-left: 1rem;
    }

    .overlay {
        display: none;
    }

    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }

    .uk-server-visual {
        display: block;
    }

    .vps-core-benefits {
        flex-wrap: nowrap;
    }
}

@media (max-width: 767px) {
    header {
        padding: 0.75rem;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .nav-menu {
        width: 85%;
        padding-top: 4rem;
    }

    .vps-hero {
        padding: 80px 15px 50px;
    }

    .vps-headline {
        font-size: 2.5rem;
    }

    .vps-subheadline {
        font-size: 1.3rem;
    }

    .vps-feature-statement p {
        font-size: 1.4rem;
    }

    .benefit {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .vps-cta {
        width: 100%;
        min-width: unset;
    }

    .vps-cta-group {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 600px) {
    .nav-menu .nav-link {
        display: block;
        margin: 10px 0;
        text-align: center;
    }

    .nav-menu {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* Extra Small Devices */
@media (max-width: 374px) {
    .vps-headline {
        font-size: 2rem;
    }

    .vps-feature-statement p {
        font-size: 1.2rem;
    }

    .trust-badge {
        padding: 8px 15px;
    }

    .trustpilot {
        flex-direction: column;
        gap: 5px;
        font-size: 0.85rem;
    }

    .vps-core-benefits {
        gap: 10px;
    }

    .benefit {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

/* Additional CSS for the updated badge */
.trust-badge {
    display: inline-block;
    background: linear-gradient(90deg, rgba(0, 255, 255, 0.08), rgba(138, 43, 226, 0.08));
    padding: 10px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.trustpilot {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.trustpilot-logo {
    margin-bottom: 5px;
}

.trustpilot-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 0.95rem;
    color: var(--muted-text);
}

.stars {
    color: gold;
    letter-spacing: 1px;
}

.rating {
    font-weight: 500;
}

.highlight {
    color: var(--primary-accent);
    font-weight: 700;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .trustpilot {
        flex-direction: row;
        gap: 15px;
    }

    .trustpilot-rating {
        flex-direction: row;
        gap: 10px;
    }
}

@media (max-width: 374px) {
    .trust-badge {
        padding: 8px 15px;
    }

    .trustpilot-logo img {
        width: 100px;
    }

    .stars {
        font-size: 0.9rem;
    }

    .rating {
        font-size: 0.85rem;
    }
}

/* Payment Methods */
.payment-methods {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.payment-link {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 8px 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-link:hover {
    transform: translateY(-3px);
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-color: rgba(0, 255, 255, 0.2);
}

.payment-icon {
    height: 30px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.payment-link:hover .payment-icon {
    opacity: 1;
}

@media (max-width: 480px) {
    .payment-methods {
        gap: 10px;
    }

    .payment-link {
        padding: 6px 10px;
    }

    .payment-icon {
        height: 25px;
    }
}

/* Combined Section Styles */
.combined-section {
    padding: 50px 0;
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.combined-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 10% 10%, rgba(0, 255, 255, 0.05), transparent 40%),
        radial-gradient(circle at 90% 90%, rgba(138, 43, 226, 0.05), transparent 40%);
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0 60px;
}

.divider-line {
    height: 1px;
    flex-grow: 1;
    background: linear-gradient(90deg, transparent, var(--primary-accent), transparent);
    opacity: 0.3;
}

.divider-icon {
    padding: 0 20px;
    color: var(--primary-accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.divider-icon svg {
    filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.5));
}

/* Testimonial Slider Styles */
.testimonial-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}

.testimonial-slider {
    position: relative;
    width: 100%;
    height: 230px;
    overflow: hidden;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-content {
    background: rgba(20, 20, 40, 0.6);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    padding: 20px;
    width: 95%;
    max-width: 900px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 255, 255, 0.1) inset;
    position: relative;
    z-index: 3;
    backdrop-filter: blur(5px);
}

.testimonial-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.05) 0%, transparent 100%);
    pointer-events: none;
    border-radius: 10px;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 4rem;
    color: rgba(0, 255, 255, 0.1);
    font-family: 'Georgia', serif;
    z-index: 0;
}

.testimonial-row {
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    z-index: 1;
}

/* Avatar with better container for mobile */
.testimonial-avatar-container {
    flex-shrink: 0;
}

.testimonial-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-accent);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Text content */
.testimonial-text {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.testimonial-quote-block {
    flex-grow: 1;
}

.testimonial-quote {
    font-size: 1.6rem;
    color: var(--primary-accent);
    margin: 0 0 8px 0;
    font-weight: 800;
    line-height: 1.3;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.5);
    letter-spacing: 0.5px;
}

.testimonial-detail {
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--light-text);
    margin: 0;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.author-name {
    font-weight: 700;
    margin: 0;
    color: var(--light-text);
}

.stars {
    color: gold;
    letter-spacing: 2px;
}

.trustpilot-badge {
    font-size: 0.8rem;
    color: var(--muted-text);
    background-color: rgba(0, 255, 255, 0.05);
    padding: 2px 8px;
    border-radius: 4px;
}

/* Gaming-inspired navigation buttons */
.slider-arrow {
    background: rgba(0, 255, 255, 0.15);
    border: 2px solid rgba(0, 255, 255, 0.3);
    color: var(--light-text);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    position: absolute;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

.slider-arrow:hover {
    background: rgba(0, 255, 255, 0.3);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

.slider-arrow svg {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 0 3px rgba(0, 255, 255, 0.5));
}

.slider-prev {
    left: 0;
}

.slider-next {
    right: 0;
}

/* Dots Navigation */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--primary-accent);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* Data Center Header */
.datacenter-header {
    text-align: center;
    margin-bottom: 30px;
}

.datacenter-title {
    font-size: 2.8rem;
    color: var(--light-text);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.highlight {
    color: var(--primary-accent);
    position: relative;
    display: inline-block;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.power-line {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-accent), transparent);
    margin: 0 auto;
    position: relative;
}

.power-line::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--primary-accent);
    border-radius: 50%;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px 2px var(--primary-accent);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 10px 2px var(--primary-accent);
    }

    50% {
        box-shadow: 0 0 20px 5px var(--primary-accent);
    }

    100% {
        box-shadow: 0 0 10px 2px var(--primary-accent);
    }
}

/* Badge Grid Styles */
.badge-grid-container {
    margin-top: 40px;
}

.badge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.badge-item {
    background: rgba(20, 20, 40, 0.6);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 255, 0.2);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.badge-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(0, 255, 255, 0.4);
}

.badge-item:hover .badge-glow {
    opacity: 0.7;
}

.badge-inner {
    display: flex;
    align-items: center;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.badge-icon {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    margin-right: 20px;
}

.badge-svg {
    width: 100%;
    height: 100%;
}

.badge-circle {
    fill: transparent;
    stroke: var(--primary-accent);
    stroke-width: 2;
    filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.5));
}

.badge-shape {
    fill: rgba(0, 255, 255, 0.1);
    stroke: var(--primary-accent);
    stroke-width: 2;
}

.badge-center {
    fill: rgba(0, 255, 255, 0.2);
    stroke: var(--primary-accent);
    stroke-width: 1.5;
}

.badge-cross {
    fill: none;
    stroke: var(--primary-accent);
    stroke-width: 3;
}

.badge-text {
    fill: var(--light-text);
    font-size: 18px;
    font-weight: bold;
    font-family: 'Exo 2', sans-serif;
}

.badge-text-small {
    fill: var(--light-text);
    font-size: 14px;
    font-family: 'Exo 2', sans-serif;
}

.badge-info {
    flex-grow: 1;
}

.badge-info h3 {
    color: var(--primary-accent);
    font-size: 1.3rem;
    margin: 0 0 5px 0;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.badge-info p {
    color: var(--light-text);
    margin: 0;
    font-size: 0.95rem;
}

.badge-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(0, 255, 255, 0.3), transparent 70%);
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .combined-section {
        padding: 60px 0;
    }

    .testimonial-slider {
        height: 280px;
    }

    .testimonial-content {
        padding: 20px;
    }

    .testimonial-row {
        gap: 20px;
    }

    .testimonial-avatar {
        width: 85px;
        height: 85px;
    }

    .testimonial-quote {
        font-size: 1.4rem;
    }

    .testimonial-detail {
        font-size: 1rem;
    }

    .slider-arrow {
        width: 45px;
        height: 45px;
    }

    .slider-arrow svg {
        width: 20px;
        height: 20px;
    }

    .datacenter-title {
        font-size: 2.2rem;
    }

    .badge-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .badge-inner {
        padding: 20px;
    }

    .badge-icon {
        width: 70px;
        height: 70px;
        margin-right: 15px;
    }

    .badge-info h3 {
        font-size: 1.1rem;
    }

    .badge-info p {
        font-size: 0.85rem;
    }
}

/* Mobile Specific Optimizations */
@media (max-width: 600px) {
    .combined-section {
        padding: 40px 0;
    }

    .testimonial-slider {
        height: 420px;
        /* Taller to accommodate stacked layout */
    }

    .testimonial-content {
        padding: 20px 15px;
    }

    .testimonial-row {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .testimonial-avatar-container {
        margin: 0 auto;
    }

    /* Smaller avatar on mobile but still prominent */
    .testimonial-avatar {
        width: 80px;
        height: 80px;
        margin: 0 auto;
    }

    .testimonial-quote {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .testimonial-detail {
        font-size: 0.95rem;
    }

    .testimonial-author {
        justify-content: center;
        margin-top: 12px;
    }

    /* Smaller but still visible navigation */
    .slider-arrow {
        width: 40px;
        height: 40px;
        top: 50%;
        transform: translateY(-50%);
    }

    .slider-arrow:hover {
        transform: translateY(-50%) scale(1.1);
    }

    .slider-arrow svg {
        width: 18px;
        height: 18px;
    }

    .slider-prev {
        left: -5px;
    }

    .slider-next {
        right: -5px;
    }

    .datacenter-title {
        font-size: 1.8rem;
    }

    .section-divider {
        margin: 25px 0;
        /* Reduced from 40px */
    }

    .badge-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }
}

/* Very Small Screens */
@media (max-width: 375px) {
    .testimonial-slider {
        height: 460px;
    }

    .testimonial-quote {
        font-size: 1.2rem;
    }

    .testimonial-detail {
        font-size: 0.9rem;
    }

    .testimonial-author {
        flex-direction: column;
        gap: 5px;
    }

    .stars {
        margin-top: 3px;
    }

    .datacenter-title {
        font-size: 1.6rem;
    }
}

/* Use Cases Section Styles */
.use-cases-section {
    padding: 50px 0;
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.use-cases-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 30% 70%, rgba(0, 255, 255, 0.05), transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(138, 43, 226, 0.05), transparent 50%);
    z-index: 1;
}

.use-cases-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    z-index: 2;
    padding: 0 20px;
}

.use-cases-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--light-text);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Use Cases List */
.vps-use-cases {
    list-style: none;
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 0;
}

.vps-use-cases li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    background: rgba(20, 20, 40, 0.5);
    border-radius: 8px;
    padding: 15px 20px;
    border: 1px solid rgba(0, 255, 255, 0.15);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.vps-use-cases li:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 255, 255, 0.3);
    background: rgba(20, 20, 40, 0.6);
}

.checkmark {
    color: #2ecc71;
    font-size: 1.5rem;
    margin-right: 15px;
    flex-shrink: 0;
    text-shadow: 0 0 5px rgba(46, 204, 113, 0.5);
}

.use-case-text {
    font-size: 1.3rem;
    color: var(--light-text);
    font-weight: 500;
}

/* Trust Strip Styles */
.trust-strip-container {
    max-width: 900px;
    margin-top: 25px;
    /* Reduced from 40px */
}

.trust-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    margin: 30px 0;
}

.trust-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
}

.trust-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.trust-rating p {
    font-size: 1.2rem;
    color: var(--light-text);
    margin: 0;
    font-weight: 600;
}

.stars {
    color: gold;
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

/* CTA Button */
.cta-button {
    flex-grow: 1;
    text-align: center;
}

.vps-cta {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    text-decoration: none;
    color: var(--dark-bg);
    background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 350px;
}

.vps-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-accent), var(--primary-accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vps-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 255, 255, 0.5);
}

.vps-cta:hover::before {
    opacity: 1;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.payment-link {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 5px 10px;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-link:hover {
    transform: translateY(-2px);
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    border-color: rgba(0, 255, 255, 0.2);
}

.payment-icon {
    height: 25px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.payment-link:hover .payment-icon {
    opacity: 1;
}

/* Key Facts */
.key-facts {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
}

.key-fact {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(20, 20, 40, 0.4);
    border-radius: 30px;
    padding: 10px 20px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.key-fact:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 255, 255, 0.2);
    box-shadow: 0 7px 15px rgba(0, 0, 0, 0.2);
}

.fact-checkmark {
    color: var(--primary-accent);
    font-size: 1.2rem;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

.fact-text {
    font-size: 1.1rem;
    color: var(--light-text);
    font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .trust-strip {
        justify-content: center;
    }

    .key-facts {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .use-cases-section {
        padding: 60px 0;
    }

    .use-cases-title {
        font-size: 2rem;
    }

    .use-case-text {
        font-size: 1.1rem;
    }

    .checkmark {
        font-size: 1.3rem;
    }

    .vps-cta {
        padding: 12px 25px;
        font-size: 1rem;
        min-width: 300px;
    }

    .key-fact {
        padding: 8px 16px;
    }

    .fact-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .use-cases-section {
        padding: 50px 0;
    }

    .use-cases-title {
        font-size: 1.8rem;
    }

    .vps-use-cases li {
        padding: 12px 15px;
    }

    .use-case-text {
        font-size: 1rem;
    }

    .checkmark {
        font-size: 1.2rem;
        margin-right: 10px;
    }

    .trust-strip {
        flex-direction: column;
        gap: 30px;
    }

    .vps-cta {
        width: 100%;
        min-width: unset;
        padding: 12px 20px;
    }

    .key-facts {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .key-fact {
        width: 100%;
        justify-content: center;
    }
}

/* Transformation Section Styles - All prefixed with "game-" to avoid conflicts */
.game-transformation-section {
    padding: 50px 0;
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.game-transformation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 10% 10%, rgba(0, 255, 255, 0.05), transparent 40%),
        radial-gradient(circle at 90% 90%, rgba(138, 43, 226, 0.05), transparent 40%);
    z-index: 1;
}

.game-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Intro Section */
.game-intro {
    text-align: center;
    margin-bottom: 40px;
}

.game-tagline {
    font-size: 1.2rem;
    color: #AAAAAA;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-title {
    font-size: 2.5rem;
    color: var(--light-text);
    margin-bottom: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-highlight {
    color: var(--primary-accent);
    position: relative;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.game-subtitle {
    font-size: 1.3rem;
    color: var(--light-text);
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
}

/* Steps Container */
.game-steps {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-bottom: 30px;
}

/* Step Box */
.game-step {
    flex: 1;
    background: rgba(20, 20, 40, 0.6);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 255, 255, 0.1) inset;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.game-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-accent);
}

.game-step::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.05) 0%, transparent 100%);
    pointer-events: none;
    border-radius: 10px;
}

/* Step Number */
.game-step-number {
    width: 60px;
    height: 60px;
    background: var(--dark-bg);
    border: 3px solid var(--primary-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
    z-index: 1;
}

.game-step-number span {
    color: var(--primary-accent);
    font-size: 1.6rem;
    font-weight: 900;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.3);
}

/* Step Content */
.game-step-content {
    margin-top: 15px;
}

.game-step h3 {
    color: var(--light-text);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.game-step p {
    color: var(--muted-text);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Connector */
.game-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    position: relative;
    padding-top: 0;
}

.game-connector-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
}

.game-connector-arrow {
    position: absolute;
    color: var(--primary-accent);
    font-size: 1.5rem;
    animation: game-arrow-pulse 1.5s infinite;
    filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.5));
}

@keyframes game-arrow-pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* CTA Button */
.game-cta {
    text-align: center;
}

.game-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
    color: var(--dark-bg);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.game-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-accent), var(--primary-accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.5);
}

.game-button:hover::before {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .game-title {
        font-size: 2.2rem;
    }

    .game-steps {
        gap: 20px;
    }

    .game-step {
        padding: 25px 15px;
    }

    .game-connector {
        width: 40px;
    }
}

@media (max-width: 768px) {
    .game-transformation-section {
        padding: 60px 0;
    }

    .game-title {
        font-size: 2rem;
    }

    .game-subtitle {
        font-size: 1.1rem;
    }

    .game-steps {
        flex-direction: column;
        gap: 50px;
        align-items: center;
    }

    .game-step {
        width: 100%;
        max-width: 400px;
    }

    .game-connector {
        transform: rotate(90deg);
        height: 40px;
        margin: 5px 0;
    }

    .game-connector-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 480px) {
    .game-transformation-section {
        padding: 50px 0;
    }

    .game-title {
        font-size: 1.7rem;
    }

    .game-subtitle {
        font-size: 1rem;
    }

    .game-step-number {
        width: 50px;
        height: 50px;
    }

    .game-step-number span {
        font-size: 1.3rem;
    }

    .game-step h3 {
        font-size: 1.2rem;
    }

    .game-button {
        width: 100%;
        padding: 12px 20px;
        font-size: 1rem;
    }
}

/* OS Support Section Styles */
.os-support-section {
    padding: 50px 0;
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.os-support-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(0, 255, 255, 0.05), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(138, 43, 226, 0.05), transparent 40%);
    z-index: 1;
}

.os-support-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    z-index: 2;
    padding: 0 20px;
    text-align: center;
}

.os-title {
    font-size: 2.5rem;
    color: var(--light-text);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.power-line {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-accent), transparent);
    margin: 0 auto 50px;
    position: relative;
}

.power-line::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--primary-accent);
    border-radius: 50%;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px 2px var(--primary-accent);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 10px 2px var(--primary-accent);
    }

    50% {
        box-shadow: 0 0 20px 5px var(--primary-accent);
    }

    100% {
        box-shadow: 0 0 10px 2px var(--primary-accent);
    }
}

.os-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.os-badge {
    background: rgba(20, 20, 40, 0.6);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

.os-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 255, 0.3);
    border-color: var(--primary-accent);
    background: rgba(20, 20, 40, 0.8);
}

.os-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    position: relative;
}

.os-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.3));
    transition: all 0.3s ease;
}

.os-badge:hover .os-icon img {
    filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.6));
    transform: scale(1.05);
}

.os-name {
    color: var(--light-text);
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.os-badge:hover .os-name {
    color: var(--primary-accent);
}

/* Media Queries */
@media (max-width: 991px) {
    .os-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 20px;
    }

    .os-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 767px) {
    .os-support-section {
        padding: 60px 0;
    }

    .os-title {
        font-size: 2rem;
    }

    .os-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 15px;
    }

    .os-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }

    .os-name {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .os-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 10px;
    }

    .os-title {
        font-size: 1.8rem;
    }

    .os-badge {
        padding: 15px 10px;
    }

    .os-icon {
        width: 45px;
        height: 45px;
    }

    .os-name {
        font-size: 0.9rem;
    }
}

/* Feature Matrix Section Styles - Aligned Grid */
.feature-matrix-section {
    padding: 50px 0;
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.feature-matrix-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 15% 15%, rgba(0, 255, 255, 0.05), transparent 40%),
        radial-gradient(circle at 85% 85%, rgba(138, 43, 226, 0.05), transparent 40%);
    z-index: 0;
}

.matrix-header {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.matrix-title {
    font-size: 2.5rem;
    color: var(--light-text);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.matrix-subtitle {
    font-size: 1.4rem;
    color: var(--light-text);
    font-weight: 300;
    margin-bottom: 20px;
}

.power-line {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-accent), transparent);
    margin: 0 auto;
    position: relative;
}

.power-line::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--primary-accent);
    border-radius: 50%;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px 2px var(--primary-accent);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 10px 2px var(--primary-accent);
    }

    50% {
        box-shadow: 0 0 20px 5px var(--primary-accent);
    }

    100% {
        box-shadow: 0 0 10px 2px var(--primary-accent);
    }
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
    margin: 30px 0;
    /* Add equal margin to top and bottom of the grid */
}

.feature-card {
    background: rgba(20, 20, 40, 0.6);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    /* Center items vertically */
    gap: 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    height: 140px;
    /* Slightly increased height for more space */
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-accent);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    background: rgba(20, 20, 40, 0.7);
}

.feature-icon {
    width: 60px;
    /* Increased icon container size */
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--primary-accent);
    transition: all 0.3s ease;
}

.feature-icon svg {
    width: 30px;
    /* Increased icon size */
    height: 30px;
}

.feature-card:hover .feature-icon {
    background: rgba(0, 255, 255, 0.2);
    transform: scale(1.05);
    filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.6));
}

.feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center content vertically */
}

.feature-content h3 {
    color: var(--light-text);
    font-size: 1.1rem;
    /* Slightly reduced font size */
    margin: 0 0 6px 0;
    /* Reduced bottom margin */
    font-weight: 700;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-content h3 {
    color: var(--primary-accent);
}

.feature-content p {
    color: var(--muted-text);
    font-size: 0.9rem;
    /* Slightly reduced font size */
    margin: 0;
    line-height: 1.4;
    /* Slightly reduced line height */
}

.feature-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(0, 255, 255, 0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover .feature-glow {
    opacity: 1;
}

.matrix-cta {
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

/* Media Queries */
@media (max-width: 1200px) {
    .feature-card {
        padding: 20px;
        height: 150px;
    }

    .feature-content h3 {
        font-size: 1.1rem;
    }

    .feature-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 991px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .matrix-title {
        font-size: 2.2rem;
    }

    .matrix-subtitle {
        font-size: 1.3rem;
    }

    .feature-card {
        height: 150px;
    }
}

@media (max-width: 767px) {
    .feature-matrix-section {
        padding: 60px 0;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .matrix-title {
        font-size: 2rem;
    }

    .matrix-subtitle {
        font-size: 1.2rem;
    }

    .feature-card {
        padding: 18px;
        height: auto;
        min-height: 120px;
    }
}

@media (max-width: 480px) {
    .matrix-title {
        font-size: 1.8rem;
    }

    .matrix-subtitle {
        font-size: 1.1rem;
    }

    .feature-card {
        flex-direction: row;
        padding: 15px;
        min-height: 100px;
    }

    .feature-icon {
        width: 40px;
        min-width: 40px;
        height: 40px;
    }

    .feature-content h3 {
        font-size: 1rem;
        margin-bottom: 5px;
    }

    .feature-content p {
        font-size: 0.85rem;
    }
}

.comparison-section {
    position: relative;
    padding: 50px 0;
    background-color: #0B0B13;
    overflow: hidden;
}

.comparison-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(11, 11, 19, 0.8) 100%);
    z-index: 1;
}

/* Removed grid-bg */

.cyber-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.cyber-particle {
    position: absolute;
    background-color: #00DDFF;
    border-radius: 50%;
    box-shadow: 0 0 10px 2px rgba(0, 221, 255, 0.7);
    opacity: 0;
    animation: float-up var(--duration, 15s) linear infinite;
    animation-delay: var(--delay, 0s);
    left: var(--left, 50%);
    width: var(--size, 3px);
    height: var(--size, 3px);
}

.cyber-line {
    position: absolute;
    width: 1px;
    height: var(--height, 100px);
    background: linear-gradient(to top, rgba(0, 221, 255, 0), rgba(0, 221, 255, 0.7), rgba(0, 221, 255, 0));
    left: var(--left, 50%);
    bottom: -50px;
    animation: rise var(--duration, 15s) linear infinite;
    animation-delay: var(--delay, 0s);
    opacity: var(--opacity, 0.5);
}

.cyber-pulse {
    position: absolute;
    width: var(--size, 50px);
    height: var(--size, 50px);
    border-radius: 50%;
    border: 1px solid rgba(0, 221, 255, 0.3);
    left: var(--left, 50%);
    top: var(--top, 50%);
    transform: translate(-50%, -50%);
    animation: pulse-out var(--duration, 4s) ease-out infinite;
    animation-delay: var(--delay, 0s);
    opacity: 0;
}

@keyframes float-up {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: var(--opacity, 0.7);
    }

    90% {
        opacity: var(--opacity, 0.7);
    }

    100% {
        transform: translateY(-100px) scale(var(--scale, 1));
        opacity: 0;
    }
}

@keyframes rise {
    0% {
        transform: translateY(100vh);
    }

    100% {
        transform: translateY(-100vh);
    }
}

@keyframes pulse-out {
    0% {
        width: 0px;
        height: 0px;
        opacity: 0.7;
    }

    100% {
        width: var(--max-size, 100px);
        height: var(--max-size, 100px);
        opacity: 0;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 5;
}

.comparison-intro {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.comparison-intro-title {
    font-size: 42px;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 15px rgba(0, 221, 255, 0.5);
    animation: pulse 3s infinite;
}

.comparison-intro-subtitle {
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.comparison-intro-subtitle::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, rgba(0, 221, 255, 0) 0%, rgba(0, 221, 255, 1) 50%, rgba(0, 221, 255, 0) 100%);
}

.comparison-intro-subtitle .accent {
    color: #00DDFF;
    position: relative;
    display: inline-block;
    animation: glow 2s infinite alternate;
}

.comparison-intro-subtitle .accent::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #00DDFF;
    box-shadow: 0 0 10px 1px rgba(0, 221, 255, 0.7);
}

.comparison-intro p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.badge-3d {
    position: absolute;
    top: -30px;
    right: 0;
    background: linear-gradient(45deg, #FF3A6E 0%, #FF5C4D 100%);
    color: white;
    font-size: 14px;
    font-weight: 800;
    padding: 8px 15px;
    border-radius: 8px;
    transform: rotate(15deg);
    box-shadow: 0 5px 15px rgba(255, 58, 110, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: float 3s ease-in-out infinite;
    z-index: 10;
}

@keyframes float {

    0%,
    100% {
        transform: rotate(15deg) translateY(0);
    }

    50% {
        transform: rotate(15deg) translateY(-10px);
    }
}

@keyframes pulse {

    0%,
    100% {
        text-shadow: 0 0 15px rgba(0, 221, 255, 0.5);
    }

    50% {
        text-shadow: 0 0 25px rgba(0, 221, 255, 0.8);
    }
}

@keyframes glow {
    0% {
        text-shadow: 0 0 5px rgba(0, 221, 255, 0.5);
    }

    100% {
        text-shadow: 0 0 20px rgba(0, 221, 255, 0.9), 0 0 30px rgba(0, 221, 255, 0.3);
    }
}

.comparison-table-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(0, 221, 255, 0.2), 0 0 100px rgba(0, 33, 88, 0.3);
    backdrop-filter: blur(5px);
    background: rgba(16, 16, 30, 0.7);
    position: relative;
    transition: all 0.5s ease;
}

.comparison-table-container:hover {
    box-shadow: 0 0 60px rgba(0, 221, 255, 0.3), 0 0 120px rgba(0, 33, 88, 0.4);
}

.comparison-table-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00DDFF 0%, #0057FF 100%);
    z-index: 2;
}

.comparison-table-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(0, 221, 255, 0.05) 0%,
            rgba(16, 16, 30, 0) 50%,
            rgba(0, 221, 255, 0.05) 100%);
    z-index: -1;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    background-color: rgba(0, 221, 255, 0.1);
    color: white;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 25px 15px;
    letter-spacing: 1px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 221, 255, 0.3);
    position: relative;
}

.comparison-table th:first-child {
    text-align: left;
    background-color: rgba(16, 16, 30, 0.9);
    border-radius: 10px 0 0 0;
    padding-left: 25px;
}

.comparison-table th.our-host {
    background-color: rgba(0, 221, 255, 0.15);
    color: #00DDFF;
    position: relative;
    animation: highlight-column 3s infinite alternate;
}

@keyframes highlight-column {
    0% {
        background-color: rgba(0, 221, 255, 0.15);
    }

    100% {
        background-color: rgba(0, 221, 255, 0.25);
    }
}

.comparison-table th.our-host::after {
    content: 'RECOMMENDED';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #00DDFF 0%, #0057FF 100%);
    color: #0B0B13;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 1px;
    box-shadow: 0 3px 10px rgba(0, 221, 255, 0.5);
}

.comparison-table td {
    padding: 15px 12px;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 15px;
    transition: all 0.3s ease;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: white;
    padding-left: 25px;
}

.comparison-table tr {
    position: relative;
    transition: all 0.3s ease;
    background-color: rgba(16, 16, 30, 0.7);
}

.comparison-table tr:nth-child(even) {
    background-color: rgba(16, 16, 30, 0.5);
}

.comparison-table tr:hover {
    background-color: rgba(0, 221, 255, 0.08);
}

.comparison-table tr:last-child td:first-child {
    border-radius: 0 0 0 10px;
}

.comparison-table .check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #00DDFF;
    font-size: 26px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 221, 255, 0.7);
    position: relative;
    transition: transform 0.3s ease;
}

.comparison-table tr:hover .check {
    transform: scale(1.2);
    text-shadow: 0 0 15px rgba(0, 221, 255, 1);
}

.comparison-table .x-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #FF3A6E;
    font-size: 20px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 58, 110, 0.5);
    position: relative;
}

.highlight-col {
    background-color: rgba(0, 221, 255, 0.05) !important;
}

.comparison-cta {
    text-align: center;
    margin-top: 60px;
    position: relative;
}

.comparison-cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: linear-gradient(90deg, #00DDFF 0%, #0057FF 100%);
    color: #0B0B13;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(0, 221, 255, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: button-pulse 3s infinite;
}

@keyframes button-pulse {

    0%,
    100% {
        box-shadow: 0 0 30px rgba(0, 221, 255, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.2);
    }

    50% {
        box-shadow: 0 0 40px rgba(0, 221, 255, 0.6), inset 0 0 10px rgba(255, 255, 255, 0.3);
    }
}

.comparison-cta-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: rotate(45deg);
    animation: shine 3s infinite;
    z-index: 1;
}

.comparison-cta-primary span {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.comparison-cta-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 221, 255, 0.7), inset 0 0 10px rgba(255, 255, 255, 0.3);
}

.comparison-cta-secondary {
    display: inline-block;
    padding: 14px 34px;
    /* Slightly smaller to account for border */
    background: transparent;
    color: #00DDFF;
    /* Using the cyan color from the gradient */
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 221, 255, 0.2);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: outline-pulse 3s infinite;
    border: 2px solid transparent;
    background-clip: padding-box;
    /* This prevents the background from filling the border area */
}

/* Create gradient border */
.comparison-cta-secondary::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg, #00DDFF 0%, #0057FF 100%);
    border-radius: 8px;
    z-index: -1;
}

/* Background for the inside of the button */
.comparison-cta-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0B0B13;
    /* Match your site's background color */
    border-radius: 6px;
    /* Slightly smaller than the outer radius */
    z-index: -1;
}

@keyframes outline-pulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(0, 221, 255, 0.2);
    }

    50% {
        box-shadow: 0 0 30px rgba(0, 221, 255, 0.4);
    }
}

.comparison-cta-secondary span {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.comparison-cta-secondary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 221, 255, 0.5);
    color: #ffffff;
}

/* Shine effect - identical to primary button */
.comparison-cta-secondary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: rotate(45deg);
    animation: shine 3s infinite;
    z-index: 1;
}

/* In case the shine animation wasn't already defined */
@keyframes shine {
    0% {
        left: -100%;
        opacity: 0;
    }

    10% {
        left: -100%;
        opacity: 0.5;
    }

    20% {
        left: 100%;
        opacity: 0;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

.cta-icon {
    font-size: 20px;
}

.feature-highlight {
    position: relative;
}

.feature-highlight::after {
    content: 'EXCLUSIVE';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    font-size: 10px;
    font-weight: 700;
    color: #FF3A6E;
    letter-spacing: 1px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.comparison-table tr:hover .feature-highlight::after {
    opacity: 1;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20%,
    100% {
        left: 100%;
    }
}

.host-medal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #00DDFF 0%, #0057FF 100%);
    padding: 8px 16px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 221, 255, 0.5);
    z-index: 10;
}

.host-medal-icon {
    font-size: 18px;
    color: #FFFFFF;
}

.host-medal-text {
    font-size: 14px;
    font-weight: 800;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .comparison-intro-title {
        font-size: 34px;
    }

    .comparison-intro-subtitle {
        font-size: 26px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 15px 10px;
        font-size: 14px;
    }

    .comparison-table th:first-child,
    .comparison-table td:first-child {
        padding-left: 15px;
    }

    .badge-3d {
        display: none;
    }

    .host-medal {
        top: -40px;
        padding: 5px 12px;
    }

    .host-medal-icon {
        font-size: 14px;
    }

    .host-medal-text {
        font-size: 12px;
    }

    .feature-highlight::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .comparison-section {
        padding: 60px 0;
    }

    .comparison-intro-title {
        font-size: 28px;
    }

    .comparison-intro-subtitle {
        font-size: 20px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 5px;
        font-size: 12px;
    }

    .comparison-table th:first-child,
    .comparison-table td:first-child {
        padding-left: 10px;
    }

    .comparison-table .check {
        font-size: 20px;
    }

    .comparison-table .x-mark {
        font-size: 16px;
    }

    .comparison-table th.our-host::after {
        display: none;
    }

    .comparison-table-container {
        transform: none;
    }

    .comparison-cta-primary {
        padding: 14px 25px;
        font-size: 14px;
    }

    .host-medal {
        position: relative;
        top: 0;
        left: auto;
        transform: none;
        margin: 0 auto 20px;
        display: inline-flex;
    }
}

/* FAQ Section */
.faq {
    padding: 40px 0;
    background: linear-gradient(to bottom, rgba(30, 30, 30, 0.8), rgba(18, 18, 18, 0.9));
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(0, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(138, 43, 226, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-title h2 {
    font-size: 2rem;
    display: inline-block;
    color: var(--light-text);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background-color: rgba(18, 18, 18, 0.7);
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), 0 0 10px rgba(0, 255, 255, 0.1);
}

.faq-question {
    background-color: rgba(30, 30, 30, 0.8);
    padding: 18px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    position: relative;
}

.faq-question::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-accent), var(--secondary-accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(40, 40, 40, 0.8);
}

.faq-question:hover::before {
    opacity: 1;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--light-text);
    margin: 0;
    font-family: 'Rajdhani', sans-serif;
}

.faq-toggle {
    font-size: 1.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
    color: var(--primary-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background-color: rgba(25, 25, 25, 0.7);
}

.faq-answer p {
    color: var(--muted-text);
    margin: 0;
    padding: 20px 0 50px;
    /* top padding + extra bottom spacing */
    line-height: 1.6;
}


/* Active State Styles */
.faq-item.active .faq-question {
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
    background-color: rgba(40, 40, 40, 0.9);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-bg: #121212;
    --primary-accent: #00FFFF;
    --secondary-accent: #8A2BE2;
    --light-text: #FFFFFF;
    --muted-text: #AAAAAA;
    --success: #2ECC71;
    --error: #E74C3C;
}

body {
    font-family: 'Exo 2', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
}

/* CTA Section Styles */
.cta-section {
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Hex Grid Background */
.hex-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='hexagons' fill='%230098a1' fill-opacity='0.05' fill-rule='nonzero'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(0, 255, 255, 0.05), transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(138, 43, 226, 0.05), transparent 40%);
    z-index: 1;
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
    width: 100%;
}

.divider-line {
    height: 1px;
    flex-grow: 1;
    max-width: 400px;
    background: linear-gradient(90deg, transparent, var(--primary-accent), transparent);
    opacity: 0.3;
}

.divider-icon {
    padding: 0 20px;
    color: var(--primary-accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.divider-icon svg {
    filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.5));
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.cta-content {
    margin: 40px auto;
    max-width: 900px;
}

.cta-label {
    text-transform: uppercase;
    font-size: 1.1rem;
    color: var(--muted-text);
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 600;
}

.cta-heading {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    color: var(--light-text);
}

.cta-subheading {
    font-size: 1.4rem;
    color: var(--light-text);
    margin-bottom: 30px;
    font-weight: 300;
}

/* Trustpilot rating */
.cta-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 30px 0;
}

.rating-text {
    font-size: 1.2rem;
    font-weight: 700;
}

.rating-stars {
    color: gold;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

/* Main CTA button */
.cta-button-wrapper {
    margin: 30px 0;
}

.cta-button {
    display: inline-block;
    padding: 16px 36px;
    background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
    color: var(--dark-bg);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.3);
    border: none;
    cursor: pointer;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-accent), var(--primary-accent));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 255, 255, 0.5);
}

.cta-button:hover::before {
    opacity: 1;
}

.cta-button span {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-button .arrow {
    transition: transform 0.3s ease;
}

.cta-button:hover .arrow {
    transform: translateX(5px);
}

/* Payment badges */
.payment-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.payment-badge {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-badge:hover {
    transform: translateY(-3px);
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-color: rgba(0, 255, 255, 0.2);
}

.payment-badge img {
    height: 28px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.payment-badge:hover img {
    opacity: 1;
}

/* Benefits list */
.benefits-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0 20px;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--light-text);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.benefit-item:hover {
    color: var(--primary-accent);
}

.benefit-icon {
    color: var(--success);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }

    .cta-heading {
        font-size: 2.2rem;
    }

    .cta-subheading {
        font-size: 1.2rem;
    }

    .cta-button {
        padding: 14px 30px;
        font-size: 1.1rem;
        width: 100%;
        max-width: 350px;
    }

    .benefits-list {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 50px 0;
    }

    .cta-heading {
        font-size: 1.8rem;
    }

    .cta-subheading {
        font-size: 1.1rem;
    }

    .rating-text {
        font-size: 1rem;
    }

    .rating-stars {
        font-size: 1.3rem;
    }

    .payment-badges {
        gap: 10px;
    }

    .payment-badge {
        padding: 8px 12px;
    }

    .payment-badge img {
        height: 24px;
    }
}







/* ===========================================
   VPS Pricing Section - Black Friday Edition
   Clean, Conversion-Focused Design
   =========================================== */

/* Section Container */
.vps-pricing-section {
  padding: 60px 0 80px;
  background: linear-gradient(180deg, #0a0a14 0%, #12121f 100%);
  position: relative;
  overflow: hidden;
}

.vps-pricing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 20% 20%, rgba(0, 255, 255, 0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(138, 43, 226, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.vps-pricing-section .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* ===========================================
   Black Friday Banner
   =========================================== */
.bf-banner {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border: 2px solid #ff3366;
  border-radius: 16px;
  padding: 30px 40px;
  margin-bottom: 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 20px 60px rgba(255, 51, 102, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.bf-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 51, 102, 0.1),
    transparent
  );
  animation: bf-shine 3s infinite;
}

@keyframes bf-shine {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(50%); }
}

.bf-badge {
  display: inline-block;
  background: #ff3366;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 3px;
  padding: 8px 24px;
  border-radius: 30px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.bf-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.bf-deal {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bf-percentage {
  font-size: 4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  text-shadow: 0 0 30px rgba(255, 51, 102, 0.5);
}

.bf-deal-featured .bf-percentage {
  font-size: 5rem;
  background: linear-gradient(135deg, #00ffff, #ff3366);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bf-text {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 5px;
}

.bf-subtext {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
}

.bf-divider {
  width: 2px;
  height: 100px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.bf-timer {
  margin-top: 20px;
}

.bf-urgency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ff3366;
  font-size: 0.9rem;
  font-weight: 600;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* ===========================================
   Section Header
   =========================================== */
.vps-header {
  text-align: center;
  margin-bottom: 30px;
}

.vps-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: -0.5px;
}

.vps-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  margin: 0;
}

/* ===========================================
   USP Strip
   =========================================== */
.usp-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.usp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 500;
}

.usp-item i {
  color: #00ffff;
  font-size: 1rem;
}

/* ===========================================
   Billing Toggle - IMPROVED
   =========================================== */
.billing-toggle {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
}

.billing-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 32px 14px;
  min-width: 200px;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
}

.billing-btn:hover:not(.active) {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
}

.billing-btn.active {
  background: rgba(0, 255, 255, 0.08);
  border-color: #00ffff;
  color: #fff;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.15);
}

.billing-btn-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.billing-btn-desc {
  font-size: 0.8rem;
  font-weight: 400;
  opacity: 0.7;
}

.billing-tag {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #ff3366;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.billing-tag.featured {
  background: linear-gradient(135deg, #00ffff, #00cc99);
  color: #0a0a14;
}

/* ===========================================
   Plan Categories
   =========================================== */
.plan-categories {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.category-section {
  /* Category wrapper */
}

.category-header {
  text-align: center;
  margin-bottom: 30px;
}

.category-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}

.category-header p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* ===========================================
   Plans Grid
   =========================================== */
.plans-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ===========================================
   Plan Cards
   =========================================== */
.plan-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.plan-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 255, 255, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Featured Card */
.plan-card.featured {
  background: linear-gradient(180deg, rgba(0, 255, 255, 0.05) 0%, rgba(0, 255, 255, 0.02) 100%);
  border-color: rgba(0, 255, 255, 0.4);
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.1);
}

.plan-card.featured.value {
  background: linear-gradient(180deg, rgba(138, 43, 226, 0.08) 0%, rgba(138, 43, 226, 0.02) 100%);
  border-color: rgba(138, 43, 226, 0.5);
  box-shadow: 0 0 40px rgba(138, 43, 226, 0.15);
}

/* Plan Badge */
.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #00ffff, #00cc99);
  color: #0a0a14;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 20px;
  letter-spacing: 1px;
  white-space: nowrap;
}

.plan-badge.value {
  background: linear-gradient(135deg, #a855f7, #ec4899);
  color: #fff;
}

/* Plan Name */
.plan-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  text-align: center;
}

.plan-tagline {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin-bottom: 20px;
}

/* ===========================================
   Plan Pricing - IMPROVED
   =========================================== */
.plan-pricing {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.price-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.plan-price {
  font-size: 2.8rem;
  font-weight: 800;
  color: #00ffff;
  line-height: 1;
}

.plan-price .currency {
  font-size: 1.4rem;
  vertical-align: top;
  margin-right: 2px;
}

.plan-period {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

.original-price {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
  margin-top: 8px;
}

/* Annual Total Display */
.annual-total {
  margin-top: 10px;
  padding: 8px 12px;
  background: rgba(0, 255, 255, 0.08);
  border-radius: 8px;
  display: none;
}

.annual-total.visible {
  display: block;
}

.annual-total-price {
  font-size: 0.95rem;
  font-weight: 600;
  color: #00ffff;
}

/* ===========================================
   Plan Specs
   =========================================== */
.plan-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  flex-grow: 1;
}

.plan-specs li {
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.plan-specs li:last-child {
  border-bottom: none;
}

.plan-specs li strong {
  color: #fff;
  font-weight: 600;
}

/* OS Support */
.plan-os {
  text-align: center;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.plan-os i {
  margin-right: 6px;
  font-size: 1rem;
}

/* ===========================================
   CTA Button
   =========================================== */
.plan-cta {
  display: block;
  width: 100%;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.plan-cta:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.plan-cta.featured {
  background: linear-gradient(135deg, #00ffff, #00cc99);
  border: none;
  color: #0a0a14;
}

.plan-cta.featured:hover {
  box-shadow: 0 8px 30px rgba(0, 255, 255, 0.3);
}

.plan-cta.featured.value {
  background: linear-gradient(135deg, #a855f7, #ec4899);
  color: #fff;
}

.plan-cta.featured.value:hover {
  box-shadow: 0 8px 30px rgba(168, 85, 247, 0.3);
}

/* ===========================================
   Trust Section
   =========================================== */
.trust-section {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-item i {
  color: #22c55e;
  font-size: 1.1rem;
}

/* VAT Notice */
.vat-notice {
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  margin-top: 30px;
}

/* ===========================================
   Responsive Design
   =========================================== */
@media (max-width: 1200px) {
  .plans-row {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .vps-pricing-section {
    padding: 40px 0 60px;
  }

  .bf-banner {
    padding: 24px 20px;
    margin-bottom: 40px;
  }

  .bf-percentage {
    font-size: 3rem;
  }

  .bf-deal-featured .bf-percentage {
    font-size: 3.5rem;
  }

  .bf-content {
    gap: 30px;
  }

  .bf-divider {
    width: 80px;
    height: 2px;
  }

  .vps-title {
    font-size: 2rem;
  }

  .usp-strip {
    gap: 15px 25px;
  }

  .usp-item {
    font-size: 0.8rem;
  }

  .billing-toggle {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .billing-btn {
    width: 100%;
    max-width: 280px;
  }

  .plans-row {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .plan-card {
    padding: 24px 20px;
  }

  .trust-section {
    gap: 20px 30px;
  }
}

@media (max-width: 480px) {
  .bf-content {
    flex-direction: column;
  }

  .bf-divider {
    width: 80px;
    height: 1px;
  }
}






/* Main Footer Styles */
footer {
    background-color: var(--footer-bg);
    color: var(--light-text);
    padding: 40px 0 20px;
    position: relative;
    border-top: 1px solid var(--footer-border);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(0, 255, 255, 0.03), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(138, 43, 226, 0.03), transparent 40%);
    z-index: 0;
    pointer-events: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
}

.footer-column h3 {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.2rem;
    color: var(--primary-accent);
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-accent), transparent);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--muted-text);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-accent);
    transform: translateX(3px);
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-accent);
    transition: width 0.3s ease;
}

.footer-links a:hover::before {
    width: 100%;
}

/* Footer Bottom Styles */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--muted-text);
    margin-bottom: 10px;
}

.footer-bottom a {
    color: var(--muted-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--primary-accent);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--light-text);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-accent);
    color: var(--darker-bg);
    transform: translateY(-3px);
}

/* Newsletter Form (if needed) */
.newsletter-form {
    display: flex;
    margin-top: 15px;
    max-width: 300px;
}

.newsletter-input {
    flex-grow: 1;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 4px 0 0 4px;
    color: var(--light-text);
    font-family: 'Roboto', sans-serif;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-accent);
}

.newsletter-btn {
    background-color: var(--primary-accent);
    color: var(--darker-bg);
    border: none;
    padding: 0 15px;
    border-radius: 0 4px 4px 0;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-btn:hover {
    background-color: #00CCFF;
}

/* Payment Methods (if needed) */
.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
}

.payment-methods img {
    height: 30px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.payment-methods img:hover {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .footer-content {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-column h3 {
        margin-bottom: 15px;
    }

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-bottom {
        padding-top: 20px;
    }
}

/* Sales Banner for 50% Discount */
.sales-banner {
    background: linear-gradient(45deg, rgba(114, 86, 255, 0.9), rgba(0, 204, 255, 0.9));
    padding: 12px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 35px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(114, 86, 255, 0.3);
}

.sales-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.2) 50%,
            rgba(255, 255, 255, 0) 100%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.sales-banner-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 0;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.sales-banner-highlight {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffcc33;
    text-shadow: 0 0 10px rgba(255, 204, 51, 0.7);
    display: inline-block;
    position: relative;
}

.sales-banner-highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ffcc33;
    box-shadow: 0 0 10px rgba(255, 204, 51, 0.7);
}

/* Gamery Billing Toggle Tabs */
.billing-toggle-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    position: relative;
    z-index: 5;
}

.billing-tab {
    padding: 12px 25px;
    background: var(--tab-inactive);
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(114, 86, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    user-select: none;
}

.billing-tab:hover:not(.active) {
    box-shadow: 0 5px 15px rgba(114, 86, 255, 0.2);
    transform: translateY(-2px);
    border-color: rgba(114, 86, 255, 0.5);
}

.billing-tab.active {
    background: var(--tab-gradient);
    color: var(--text-light);
    box-shadow: 0 5px 20px rgba(114, 86, 255, 0.4);
    transform: translateY(-2px);
}

.tab-discount-badge {
    display: inline-block;
    position: absolute;
    top: -12px;
    right: 10px;
    /* Position it outside the button */
    z-index: 10;
    background-color: #ff3860;
    color: white;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 30px;
    font-size: 0.7rem;
    box-shadow: 0 3px 10px rgba(255, 56, 96, 0.3);
}

/* Move the discount badge outside the button's DOM structure */
.billing-tab.annual {
    padding-right: 35px;
    /* Increase right padding to fit the text */
    min-width: 120px;
    /* Set a minimum width to fit the text */
}

@keyframes pulse-scale {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* VPS Pricing Grid */
.vps-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
    margin: 0 auto;
    max-width: 1200px;
}

/* VPS Card with Gamer Aesthetics */
.vps-card {
    background: var(--card-bg);
    background-image: var(--card-gradient);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

.vps-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 20px rgba(114, 86, 255, 0.2);
    border-color: rgba(114, 86, 255, 0.3);
    background: var(--card-hover-bg);
}

.vps-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(114, 86, 255, 0.1) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* Card Glow Effect */
.vps-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, var(--primary-glow), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 0;
    pointer-events: none;
}

.vps-card:hover .vps-card-glow {
    opacity: 0.3;
}

/* Card Header */
.vps-card-header {
    background-color: rgba(15, 17, 24, 0.7);
    padding: 18px 15px;
    text-align: center;
    border-bottom: 1px solid rgba(114, 86, 255, 0.2);
    position: relative;
    z-index: 2;
}

.vps-card-title {
    margin: 0;
    color: var(--text-light);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(114, 86, 255, 0.5);
}

/* Card Pricing */
.vps-card-pricing {
    padding: 25px 15px;
    text-align: center;
    position: relative;
    z-index: 2;
    background: rgba(15, 17, 24, 0.3);
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-light);
    position: relative;
    display: inline-block;
    text-shadow: 0 0 10px rgba(114, 86, 255, 0.3);
}

.price-currency {
    font-size: 24px;
    vertical-align: top;
    position: relative;
    top: 2px;
}

.price-period {
    font-size: 14px;
    color: var(--text-muted);
    margin-left: 4px;
}

.price-exclusive {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 5px;
}

/* Discount & Yearly Badges */
.save-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--discount-badge);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    box-shadow: 0 3px 10px rgba(255, 56, 96, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.paid-yearly {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    box-shadow: 0 3px 10px rgba(114, 86, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Card Specs List with Gamery Icons */
.vps-card-specs {
    padding: 20px 25px;
    position: relative;
    z-index: 2;
}

.specs-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.specs-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 14px;
    position: relative;
}

.specs-list li:last-child {
    margin-bottom: 0;
}

.specs-icon {
    width: 22px;
    height: 22px;
    margin-right: 12px;
    flex-shrink: 0;
    text-align: center;
    line-height: 22px;
    filter: drop-shadow(0 0 5px var(--primary-glow));
}

/* Colorized spec icons */
.cpu-icon {
    color: var(--cpu-color);
    filter: drop-shadow(0 0 3px rgba(255, 82, 119, 0.5));
}

.ram-icon {
    color: var(--ram-color);
    filter: drop-shadow(0 0 3px rgba(77, 171, 247, 0.5));
}

.storage-icon {
    color: var(--storage-color);
    filter: drop-shadow(0 0 3px rgba(255, 204, 51, 0.5));
}

.network-icon {
    color: var(--network-color);
    filter: drop-shadow(0 0 3px rgba(46, 204, 113, 0.5));
}

/* Gamery CTA Button */
.vps-card-cta {
    padding: 20px 25px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-button {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--button-gradient);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(114, 86, 255, 0.3);
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-30deg);
    transition: all 0.5s;
}

.cta-button:hover {
    box-shadow: 0 7px 20px rgba(114, 86, 255, 0.5);
    transform: translateY(-2px);
}

.cta-button:hover::before {
    left: 200%;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .vps-pricing-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

@media (max-width: 768px) {
    .vps-pricing-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 20px;
    }

    .sales-banner-text {
        font-size: 1.2rem;
    }

    .sales-banner-highlight {
        font-size: 1.4rem;
    }

    .billing-tab {
        overflow: visible;
        position: relative;
    }
}

@media (max-width: 576px) {
    .vps-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }

    .sales-banner {
        padding: 10px 15px;
    }

    .sales-banner-text {
        font-size: 1rem;
    }

    .sales-banner-highlight {
        font-size: 1.2rem;
    }

    .billing-toggle-tabs {
        padding-right: 5px;
        /* Add padding to container if needed */
        position: relative;
        overflow: visible !important;
    }

    .billing-tab {
        overflow: visible !important;
        /* Force visibility with !important */
        position: relative !important;
    }
}

/* VPS Plans Pricing Section Styles - Gamery Theme */
:root {
    --dark-bg: #0f1118;
    --card-bg: #171a25;
    --card-hover-bg: #1c1f2d;
    --primary: #7256ff;
    --primary-hover: #8567ff;
    --primary-glow: rgba(114, 86, 255, 0.5);
    --secondary: #00ccff;
    --secondary-glow: rgba(0, 204, 255, 0.5);
    --text-light: #ffffff;
    --text-muted: #a0a0a8;
    --text-gray: #6c757d;
    --border-color: #252a3c;
    --discount-badge: #ff3860;
    --cpu-color: #ff5277;
    --ram-color: #4dabf7;
    --storage-color: #ffcc33;
    --network-color: #2ecc71;
    --button-gradient: linear-gradient(45deg, #7256ff, #00ccff);
    --card-gradient: linear-gradient(145deg, rgba(114, 86, 255, 0.1), rgba(0, 204, 255, 0.05));
    --tab-gradient: linear-gradient(45deg, #7256ff, #00ccff);
    --tab-inactive: rgba(23, 26, 37, 0.8);
}

/* Sales Banner for 50% Discount */
.sales-banner {
    background: linear-gradient(45deg, rgba(114, 86, 255, 0.9), rgba(0, 204, 255, 0.9));
    padding: 12px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 35px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(114, 86, 255, 0.3);
}

.sales-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.2) 50%,
            rgba(255, 255, 255, 0) 100%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.sales-banner-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 0;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.sales-banner-highlight {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffcc33;
    text-shadow: 0 0 10px rgba(255, 204, 51, 0.7);
    display: inline-block;
    position: relative;
}

.sales-banner-highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ffcc33;
    box-shadow: 0 0 10px rgba(255, 204, 51, 0.7);
}

/* Gamery Billing Toggle Tabs */
.billing-toggle-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    position: relative;
    z-index: 5;
}

.billing-tab {
    padding: 12px 25px;
    background: var(--tab-inactive);
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(114, 86, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    user-select: none;
}

.billing-tab:hover:not(.active) {
    box-shadow: 0 5px 15px rgba(114, 86, 255, 0.2);
    transform: translateY(-2px);
    border-color: rgba(114, 86, 255, 0.5);
}

.billing-tab.active {
    background: var(--tab-gradient);
    color: var(--text-light);
    box-shadow: 0 5px 20px rgba(114, 86, 255, 0.4);
    transform: translateY(-2px);
}

.tab-discount-badge {
    display: inline-block;
    position: absolute;
    top: -12px;
    right: 10px;
    /* Position it outside the button */
    z-index: 10;
    background-color: #ff3860;
    color: white;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 30px;
    font-size: 0.7rem;
    box-shadow: 0 3px 10px rgba(255, 56, 96, 0.3);
}

/* Move the discount badge outside the button's DOM structure */
.billing-tab.annual {
    padding-right: 35px;
    /* Increase right padding to fit the text */
    min-width: 120px;
    /* Set a minimum width to fit the text */
}

@keyframes pulse-scale {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* VPS Pricing Grid */
.vps-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
    margin: 0 auto;
    max-width: 1200px;
}

/* VPS Card with Gamer Aesthetics */
.vps-card {
    background: var(--card-bg);
    background-image: var(--card-gradient);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

.vps-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 20px rgba(114, 86, 255, 0.2);
    border-color: rgba(114, 86, 255, 0.3);
    background: var(--card-hover-bg);
}

.vps-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(114, 86, 255, 0.1) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* Card Glow Effect */
.vps-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, var(--primary-glow), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 0;
    pointer-events: none;
}

.vps-card:hover .vps-card-glow {
    opacity: 0.3;
}

/* Card Header */
.vps-card-header {
    background-color: rgba(15, 17, 24, 0.7);
    padding: 18px 15px;
    text-align: center;
    border-bottom: 1px solid rgba(114, 86, 255, 0.2);
    position: relative;
    z-index: 2;
}

.vps-card-title {
    margin: 0;
    color: var(--text-light);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(114, 86, 255, 0.5);
}

/* Card Pricing */
.vps-card-pricing {
    padding: 25px 15px;
    text-align: center;
    position: relative;
    z-index: 2;
    background: rgba(15, 17, 24, 0.3);
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-light);
    position: relative;
    display: inline-block;
    text-shadow: 0 0 10px rgba(114, 86, 255, 0.3);
}

.price-currency {
    font-size: 24px;
    vertical-align: top;
    position: relative;
    top: 2px;
}

.price-period {
    font-size: 14px;
    color: var(--text-muted);
    margin-left: 4px;
}

.price-exclusive {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 5px;
}

/* Discount & Yearly Badges */
.save-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--discount-badge);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    box-shadow: 0 3px 10px rgba(255, 56, 96, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.paid-yearly {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    box-shadow: 0 3px 10px rgba(114, 86, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Card Specs List with Gamery Icons */
.vps-card-specs {
    padding: 20px 25px;
    position: relative;
    z-index: 2;
}

.specs-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.specs-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 14px;
    position: relative;
}

.specs-list li:last-child {
    margin-bottom: 0;
}

.specs-icon {
    width: 22px;
    height: 22px;
    margin-right: 12px;
    flex-shrink: 0;
    text-align: center;
    line-height: 22px;
    filter: drop-shadow(0 0 5px var(--primary-glow));
}

/* Colorized spec icons */
.cpu-icon {
    color: var(--cpu-color);
    filter: drop-shadow(0 0 3px rgba(255, 82, 119, 0.5));
}

.ram-icon {
    color: var(--ram-color);
    filter: drop-shadow(0 0 3px rgba(77, 171, 247, 0.5));
}

.storage-icon {
    color: var(--storage-color);
    filter: drop-shadow(0 0 3px rgba(255, 204, 51, 0.5));
}

.network-icon {
    color: var(--network-color);
    filter: drop-shadow(0 0 3px rgba(46, 204, 113, 0.5));
}

/* Gamery CTA Button */
.vps-card-cta {
    padding: 20px 25px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-button {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--button-gradient);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(114, 86, 255, 0.3);
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-30deg);
    transition: all 0.5s;
}

.cta-button:hover {
    box-shadow: 0 7px 20px rgba(114, 86, 255, 0.5);
    transform: translateY(-2px);
}

.cta-button:hover::before {
    left: 200%;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .vps-pricing-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

@media (max-width: 768px) {
    .vps-pricing-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 20px;
    }

    .sales-banner-text {
        font-size: 1.2rem;
    }

    .sales-banner-highlight {
        font-size: 1.4rem;
    }

    .billing-tab {
        overflow: visible;
        position: relative;
    }
}

@media (max-width: 576px) {
    .vps-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }

    .sales-banner {
        padding: 10px 15px;
    }

    .sales-banner-text {
        font-size: 1rem;
    }

    .sales-banner-highlight {
        font-size: 1.2rem;
    }

    .billing-toggle-tabs {
        padding-right: 5px;
        /* Add padding to container if needed */
        position: relative;
        overflow: visible !important;
    }

    .billing-tab {
        overflow: visible !important;
        /* Force visibility with !important */
        position: relative !important;
    }

    .latency-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-width: 280px;
        max-width: 360px;
        margin: 32px auto;
        padding: 28px 24px 22px 24px;
        background: rgba(22, 18, 50, 0.9);
        border-radius: 1.25rem;
        box-shadow: 0 4px 36px 0 rgba(114, 86, 255, 0.22), 0 0 0 2px rgba(144, 132, 255, 0.10);
        backdrop-filter: blur(8px) saturate(130%);
        border: 1.5px solid rgba(120, 98, 255, 0.16);
        transition: box-shadow 0.18s, border 0.18s;
        color: #eaeaff;
        font-size: 1.13rem;
        font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
        opacity: 0;
        pointer-events: none;
        position: relative;
        z-index: 1;
    }

    .latency-card.show {
        opacity: 1;
        pointer-events: all;
        animation: latencyFadeIn 0.75s cubic-bezier(.33, 1.25, .5, 1) forwards;
    }

    @keyframes latencyFadeIn {
        from {
            opacity: 0;
            transform: translateY(24px) scale(0.96);
        }

        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    .latency-card strong {
        font-size: 1.14rem;
        color: #ab9fff;
        font-weight: 600;
        letter-spacing: 0.03em;
    }

    .latency-card pre {
        font-size: 1rem;
        font-family: 'JetBrains Mono', 'Fira Mono', 'Menlo', monospace;
        margin: 10px 0 0 0;
        padding: 10px 16px;
        background: rgba(36, 28, 82, 0.45);
        border-radius: 0.85rem;
        color: #ffffff;
        box-shadow: 0 2px 12px 0 rgba(114, 86, 255, 0.08);
        text-align: left;
        overflow-x: auto;
    }

    /* Error state */
    .latency-card.error {
        border: 1.5px solid #c22c63;
        background: rgba(60, 20, 42, 0.85);
        color: #ffe7ef;
    }

    .latency-stats-box {
    margin-top: 16px;
    display: flex;
    flex-direction: row;
    gap: 18px;
    justify-content: center;
}

.latency-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(102deg, rgba(128,96,255,0.19) 0%, rgba(70,60,160,0.32) 100%);
    border: 1.5px solid #8b7cff33;
    border-radius: 16px;
    min-width: 70px;
    padding: 13px 14px 11px 14px;
    box-shadow: 0 2px 18px 0 rgba(110,90,255,0.12);
    transition: box-shadow 0.19s;
}

.latency-stat-label {
    font-size: 0.93rem;
    color: #ab9fff;
    margin-bottom: 2px;
    letter-spacing: 0.02em;
}

.latency-stat-value {
    font-size: 1.25rem;
    color: #fff;
    font-weight: bold;
    letter-spacing: 0.01em;
    margin-bottom: 1px;
}

.latency-stat-unit {
    font-size: 0.87rem;
    color: #a3a3ff;
    margin-top: -1px;
}

.latency-card .latency-samples {
    color: #8b7cff;
    opacity: 0.65;
    margin-top: 7px;
    font-size: 0.97rem;
    letter-spacing: 0.01em;
}

@keyframes resultGlow {
    0%   { box-shadow: 0 0 0 0 transparent; }
    10%  { box-shadow: 0 0 24px 4px var(--glow-color, #ab9fff);}
    90%  { box-shadow: 0 0 16px 2px var(--glow-color, #ab9fff);}
    100% { box-shadow: 0 0 0 0 transparent;}
}

}