@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

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

:root {
    --bg-dark: #08050f;
    --bg-base: #0f0724;
    --bg-light: #1a1333;
    --purple-deep: #5a4a7f;
    --purple-mid: #6d5f8f;
    --purple-light: #8b7ba8;
    --green-deep: #1a5f4a;
    --green-mid: #2d8b6f;
    --green-light: #4aaf8f;
    --silver: #d4d4e0;
    --silver-muted: #9d9db0;
    --silver-dark: #6b6b7f;
    --text-primary: #ffffff;
    --text-secondary: #c9c9d6;
    --glass-border: rgba(213, 213, 224, 0.15);
    --glass-bg: rgba(26, 19, 51, 0.4);
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: -0.3px;
    overflow-x: hidden;
}

/* Atmospheric Background */
.atmosphere {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.gradient-blob {
    position: absolute;
    filter: blur(100px);
    opacity: 0.12;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--purple-deep) 0%, var(--green-deep) 100%);
    top: -10%;
    left: -5%;
    animation: float-slow-1 20s ease-in-out infinite;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(45deg, var(--green-mid) 0%, var(--purple-light) 100%);
    top: 40%;
    right: -8%;
    animation: float-slow-2 25s ease-in-out infinite;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(200deg, var(--purple-mid) 0%, var(--green-light) 100%);
    bottom: -5%;
    left: 30%;
    animation: float-slow-3 30s ease-in-out infinite;
}

@keyframes float-slow-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -50px) scale(1.05); }
}

@keyframes float-slow-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-40px, 40px) scale(0.95); }
}

@keyframes float-slow-3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, 30px) scale(1.02); }
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
}

.element-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(90deg, var(--purple-deep), var(--green-deep));
    top: 20%;
    left: 15%;
    animation: pulse-slow-1 8s ease-in-out infinite;
}

.element-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(180deg, var(--green-light), var(--purple-light));
    top: 60%;
    right: 10%;
    animation: pulse-slow-2 10s ease-in-out infinite;
}

.element-3 {
    width: 180px;
    height: 180px;
    background: linear-gradient(270deg, var(--purple-mid), var(--green-mid));
    bottom: 15%;
    left: 60%;
    animation: pulse-slow-3 12s ease-in-out infinite;
}

@keyframes pulse-slow-1 {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

@keyframes pulse-slow-2 {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(0.9) rotate(-5deg); }
}

@keyframes pulse-slow-3 {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.08) rotate(3deg); }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background: rgba(8, 5, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1.2rem 0;
}

.nav-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--purple-light), var(--green-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--green-light);
}

.menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.menu-btn span {
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 2px;
}

.menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: 700px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 6rem 2.5rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.accent-line {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--purple-light), var(--green-light));
    margin-bottom: 1rem;
    animation: expand-width 0.8s ease-out;
}

@keyframes expand-width {
    from { width: 0; opacity: 0; }
    to { width: 50px; opacity: 1; }
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 4.2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    color: var(--text-primary);
    animation: fade-in-down 0.8s ease-out;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--green-light) 0%, var(--purple-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 550px;
    line-height: 1.7;
    animation: fade-in-up 0.8s ease-out 0.1s both;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--purple-mid) 0%, var(--green-mid) 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    width: fit-content;
    box-shadow: 0 20px 60px rgba(109, 95, 143, 0.25);
    animation: fade-in-up 0.8s ease-out 0.2s both;
    position: relative;
    overflow: hidden;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 30px 80px rgba(109, 95, 143, 0.35);
}

.cta-primary:hover::before {
    left: 100%;
}

@keyframes fade-in-down {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    animation: fade-in-up 0.8s ease-out 0.2s both;
}

.hero-buttons .cta-primary {
    margin: 0;
    flex: 1;
    min-width: 180px;
}

.trust-badges {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
    animation: fade-in-up 0.8s ease-out 0.3s both;
}

.badge-item {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Hero Glass Card */
.hero-glass {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fade-in-up 0.8s ease-out 0.4s both;
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(25px);
    border-radius: 16px;
    padding: 3rem;
    display: flex;
    gap: 3rem;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -40%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(45, 139, 111, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.glass-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(213, 213, 224, 0.5), transparent);
}

.card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shine-move 3s ease-in-out infinite;
}

@keyframes shine-move {
    0% { transform: translate(-100%, -100%) rotate(45deg); }
    100% { transform: translate(200%, 200%) rotate(45deg); }
}

.stat {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--green-light), var(--purple-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--silver-muted);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 700;
}

.divider {
    width: 1px;
    height: 70px;
    background: linear-gradient(180deg, transparent, var(--glass-border), transparent);
}

/* Sections */
.section {
    padding: 7rem 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.section-free {
    background: transparent;
}

.section-budget {
    background: linear-gradient(180deg, rgba(26, 19, 51, 0.3) 0%, rgba(42, 32, 71, 0.2) 100%);
}

.section-premium {
    background: linear-gradient(180deg, rgba(26, 59, 74, 0.2) 0%, rgba(26, 19, 51, 0.3) 100%);
}

.section-vpn {
    background: transparent;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 0.8rem;
    letter-spacing: -1px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--green-light) 50%, var(--purple-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Cards Container */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.premium-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.8rem;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(74, 175, 143, 0.4), transparent);
}

.card-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(90, 74, 127, 0.05) 0%, rgba(45, 139, 111, 0.05) 100%);
    pointer-events: none;
}

.gradient-gpu {
    background: linear-gradient(135deg, rgba(109, 95, 143, 0.1) 0%, rgba(45, 139, 111, 0.05) 100%) !important;
}

.gradient-colo {
    background: linear-gradient(135deg, rgba(45, 139, 111, 0.1) 0%, rgba(109, 95, 143, 0.05) 100%) !important;
}

.gradient-featured {
    background: linear-gradient(135deg, rgba(74, 175, 143, 0.15) 0%, rgba(139, 123, 168, 0.1) 100%) !important;
}

.card-border-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(74, 175, 143, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.premium-card:hover {
    border-color: rgba(74, 175, 143, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(45, 139, 111, 0.2);
}

.premium-card:hover .card-border-glow {
    opacity: 1;
    transform: translate(-50px, -50px);
}

.card-content {
    position: relative;
    z-index: 1;
}

.card-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    color: var(--green-light);
    margin-bottom: 1.2rem;
    background: rgba(74, 175, 143, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
}

.premium-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.premium-card > .card-content > p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.8rem;
    line-height: 1.6;
}

.card-features {
    list-style: none;
    margin-bottom: 2rem;
    space-y: 0.2rem;
}

.card-features li {
    padding: 0.6rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.card-features li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--green-light);
    font-size: 0.7rem;
    font-weight: bold;
}

.btn-ghost {
    display: inline-block;
    padding: 0.9rem 1.8rem;
    background: transparent;
    border: 1.5px solid var(--glass-border);
    color: var(--green-light);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-ghost:hover {
    border-color: var(--green-light);
    background: rgba(74, 175, 143, 0.08);
    transform: translateY(-2px);
}

.premium-tier {
    border-color: rgba(74, 175, 143, 0.3);
}

.btn-accent {
    display: inline-block;
    padding: 0.9rem 1.8rem;
    background: linear-gradient(135deg, var(--green-mid) 0%, var(--green-light) 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 15px 40px rgba(45, 139, 111, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transition: left 0.4s ease;
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(45, 139, 111, 0.35);
}

.btn-accent:hover::before {
    left: 100%;
}

/* Card Float Animations */
.card-float-1 { animation: float-card-1 4s ease-in-out infinite; }
.card-float-2 { animation: float-card-2 4.5s ease-in-out infinite 0.2s; }
.card-float-3 { animation: float-card-1 5s ease-in-out infinite 0.4s; }
.card-float-4 { animation: float-card-2 5.5s ease-in-out infinite 0.6s; }
.card-float-5 { animation: float-card-1 6s ease-in-out infinite 0.8s; }
.card-float-6 { animation: float-card-2 6.5s ease-in-out infinite 1s; }
.card-float-7 { animation: float-card-1 4.5s ease-in-out infinite 0.3s; }
.card-float-8 { animation: float-card-2 5s ease-in-out infinite 0.5s; }
.card-float-9 { animation: float-card-1 5.5s ease-in-out infinite 0.7s; }

/* Glass Card Stats Animation - Premium floating effect */
.glass-card {
    animation: float-glass-card 3.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite !important;
}

.stat {
    animation: stat-subtle-pulse 2s ease-in-out infinite;
}

.stat-value {
    animation: stat-value-glow 2.5s ease-in-out infinite;
}

@keyframes float-glass-card {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
    }
    25% {
        transform: translateY(-20px) translateX(5px) scale(1.02);
    }
    50% {
        transform: translateY(-10px) translateX(-5px) scale(1);
    }
    75% {
        transform: translateY(-18px) translateX(3px) scale(1.01);
    }
}

@keyframes stat-subtle-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.95;
        transform: scale(1.03);
    }
}

@keyframes stat-value-glow {
    0%, 100% {
        filter: drop-shadow(0 0 0px rgba(74, 175, 143, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 12px rgba(74, 175, 143, 0.5));
    }
}

@keyframes float-card-1 {
    0%, 100% { transform: translateY(0) rotate(0.5deg); }
    50% { transform: translateY(-15px) rotate(-0.5deg); }
}

@keyframes float-card-2 {
    0%, 100% { transform: translateY(0) rotate(-0.5deg); }
    50% { transform: translateY(-12px) rotate(0.5deg); }
}

/* Offering Blocks */
.offering-block {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 3.5rem;
    backdrop-filter: blur(20px);
    margin-bottom: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
}

.offering-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(74, 175, 143, 0.3), transparent);
}

.offering-block:hover {
    border-color: rgba(74, 175, 143, 0.4);
    box-shadow: 0 25px 70px rgba(45, 139, 111, 0.15);
    transform: translateY(-4px);
}

.offering-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.offering-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
}

.badge {
    display: inline-block;
    background: rgba(74, 175, 143, 0.12);
    color: var(--green-light);
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: 1px solid rgba(74, 175, 143, 0.25);
}

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

.price-card {
    background: linear-gradient(135deg, rgba(90, 74, 127, 0.05) 0%, rgba(45, 139, 111, 0.05) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.8rem;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.price-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(circle, rgba(74, 175, 143, 0.1) 0%, transparent 70%);
    transition: top 0.4s ease;
}

.price-card:hover {
    border-color: var(--green-light);
    background: linear-gradient(135deg, rgba(74, 175, 143, 0.1) 0%, rgba(45, 139, 111, 0.08) 100%);
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(45, 139, 111, 0.15);
}

.price-card:hover::before {
    top: 0;
}

.price-label {
    font-size: 0.8rem;
    color: var(--green-light);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
}

.price-display {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--purple-light), var(--green-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.6rem;
}

.price-display span {
    font-size: 0.85rem;
    color: var(--silver-muted);
    font-weight: 600;
}

.price-specs {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.8rem;
}

.offering-note {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-align: center;
    margin-top: 1.5rem;
}

/* Game Cards */
.game-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.8rem;
    margin-bottom: 2rem;
}

.game-card {
    background: linear-gradient(135deg, rgba(90, 74, 127, 0.08) 0%, rgba(45, 139, 111, 0.08) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.game-card:hover {
    border-color: var(--green-light);
    background: linear-gradient(135deg, rgba(74, 175, 143, 0.12) 0%, rgba(45, 139, 111, 0.08) 100%);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(45, 139, 111, 0.12);
}

.game-icon-bg {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.2rem;
    position: relative;
}

.game-icon {
    width: 100%;
    height: 100%;
    color: var(--green-light);
    filter: drop-shadow(0 0 8px rgba(74, 175, 143, 0.2));
    animation: icon-pulse 3s ease-in-out infinite;
}

@keyframes icon-pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
}

.game-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.game-price {
    color: var(--green-light);
    font-weight: 800;
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.game-list {
    list-style: none;
    text-align: left;
}

.game-list li {
    padding: 0.4rem 0;
    color: var(--text-secondary);
    font-size: 0.85rem;
    padding-left: 1.2rem;
    position: relative;
}

.game-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--purple-light);
    font-weight: 700;
}

/* VPN Cards */
.vpn-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.vpn-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.8rem;
    backdrop-filter: blur(20px);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vpn-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(74, 175, 143, 0.3), transparent);
}

.vpn-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(45, 139, 111, 0.15);
    border-color: rgba(74, 175, 143, 0.4);
}

.vpn-content {
    position: relative;
    z-index: 1;
}

.vpn-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--text-primary);
}

.vpn-price {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--purple-light), var(--green-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.6rem;
    letter-spacing: -1px;
}

.vpn-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
}

.vpn-features {
    list-style: none;
    text-align: left;
    margin-top: 1.5rem;
}

.vpn-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.85rem;
    padding-left: 1.5rem;
    position: relative;
}

.vpn-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green-light);
    font-weight: 800;
}

.vpn-card.featured {
    background: linear-gradient(135deg, rgba(74, 175, 143, 0.1) 0%, rgba(45, 139, 111, 0.08) 100%);
    border-color: rgba(74, 175, 143, 0.4);
    box-shadow: 0 30px 80px rgba(45, 139, 111, 0.18);
}

.glow-featured {
    opacity: 1 !important;
    transform: translate(-50px, -50px) !important;
}

.featured-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--green-mid), var(--green-light));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 1.2rem;
    box-shadow: 0 10px 30px rgba(45, 139, 111, 0.25);
}

/* CTA Section */
.section-cta {
    padding: 7rem 2.5rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(74, 175, 143, 0.08) 0%, rgba(109, 95, 143, 0.08) 100%);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    position: relative;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.section-cta h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, var(--green-light), var(--purple-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-cta p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 1.5px solid var(--glass-border);
    color: var(--green-light);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-secondary:hover {
    border-color: var(--green-light);
    background: rgba(74, 175, 143, 0.08);
    transform: translateY(-3px);
}

/* Footer */
.footer {
    border-top: 1px solid var(--glass-border);
    padding: 5rem 2.5rem 2rem;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-dark) 100%);
    position: relative;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.footer-col h4 {
    font-weight: 800;
    margin-bottom: 1.2rem;
    font-size: 1rem;
    background: linear-gradient(135deg, var(--green-light), var(--purple-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--silver-muted) !important;
    font-style: italic;
}

.footer-col ul {
    list-style: none;
}

.footer-col a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: block;
    padding: 0.5rem 0;
    font-weight: 500;
}

.footer-col a:hover {
    color: var(--green-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 3rem;
        min-height: auto;
        padding: 4rem 2rem;
    }

    .hero-glass {
        order: -1;
    }

    .nav-menu {
        gap: 2rem;
    }

    .section {
        padding: 5rem 2rem;
    }

    .glass-card {
        padding: 2rem;
        gap: 2rem;
    }

    .premium-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .menu-btn {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: rgba(8, 5, 15, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--glass-border);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .nav-menu.active {
        max-height: 400px;
    }

    .nav-menu li {
        border-bottom: 1px solid var(--glass-border);
    }

    .nav-menu a {
        display: block;
        padding: 1rem 2rem;
    }

    .hero {
        padding: 3rem 1.5rem;
        margin-top: 70px;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .hero-buttons .cta-primary {
        width: 100%;
        min-width: unset;
    }

    .trust-badges {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .badge-item {
        font-size: 0.8rem;
    }

    .hero-glass {
        width: 100%;
    }

    .glass-card {
        padding: 1.8rem;
        gap: 2rem;
        flex-direction: column;
        max-width: 100%;
    }

    .stat {
        padding: 1rem 0;
    }

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

    .section {
        padding: 4rem 1.5rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .cards-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .premium-card {
        padding: 1.5rem;
    }

    .card-label {
        font-size: 0.7rem;
    }

    .premium-card h3 {
        font-size: 1.3rem;
    }

    .card-features li {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }

    .btn-ghost,
    .btn-accent {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }

    .offering-block {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }

    .offering-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .offering-header h3 {
        font-size: 1.3rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .price-card {
        padding: 1.2rem;
    }

    .price-display {
        font-size: 1.8rem;
    }

    .game-showcase {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .game-card {
        padding: 1.5rem;
    }

    .vpn-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .vpn-card {
        padding: 2rem 1.5rem;
    }

    .vpn-price {
        font-size: 2rem;
    }

    .section-cta {
        padding: 4rem 1.5rem;
    }

    .section-cta h2 {
        font-size: 2rem;
    }

    .section-cta p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-col a {
        display: inline-block;
        padding: 0.3rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .nav-wrapper {
        padding: 0 1.5rem;
    }

    .logo {
        font-size: 1rem;
    }

    .hero {
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 1.8rem;
        letter-spacing: -0.5px;
    }

    .cta-primary {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }

    .section {
        padding: 3rem 1rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .offering-block {
        padding: 1.5rem 1rem;
    }

    .premium-card {
        padding: 1.2rem;
    }

    .card-features li {
        font-size: 0.8rem;
    }

    .price-display {
        font-size: 1.5rem;
    }

    .game-icon-bg {
        width: 50px;
        height: 50px;
    }

    .section-cta {
        padding: 3rem 1rem;
    }

    .section-cta h2 {
        font-size: 1.5rem;
    }

    .footer-col h4 {
        font-size: 0.9rem;
    }

    .footer-col p,
    .footer-col a {
        font-size: 0.8rem;
    }
}
