:root {
    --bg-main: #030303;
    --bg-secondary: #080808;
    --bg-card: rgba(15, 5, 5, 0.4);
    --bg-card-hover: rgba(25, 5, 5, 0.6);
    --text-main: #e2e8f0;
    --text-muted: #8b8b9e;
    --accent-red: #ff3333;
    --accent-dark-red: #990000;
    --glow-red: 0 0 25px rgba(255, 51, 51, 0.2);
    --glow-red-hover: 0 0 40px rgba(255, 51, 51, 0.4);
    --border-color: rgba(255, 255, 255, 0.04);
    --border-hover: rgba(255, 51, 51, 0.3);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

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

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-main); }
::-webkit-scrollbar-thumb { background: #222; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-red); }

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-red { color: var(--accent-red); }
.text-muted { color: var(--text-muted); }

/* Clean Ambient Background */
.ambient-glow {
    position: fixed;
    top: 10%;
    left: 10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,51,51,0.08) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
    z-index: -1;
}

.ambient-glow-2 {
    position: fixed;
    bottom: -10%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(150,0,0,0.06) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
    z-index: -1;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    padding: 20px 0;
    z-index: 1000;
    background: rgba(3, 3, 3, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: padding 0.3s;
}

.navbar.scrolled {
    padding: 15px 0;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0%;
    height: 1px;
    background: var(--accent-red);
    transition: width 0.3s ease;
}

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

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

.lang-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.lang-switcher {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
}

.lang-switcher option { background: var(--bg-main); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.purchase-btn {
    cursor: pointer;
}

.btn-primary {
    background: var(--accent-red);
    color: #fff;
    box-shadow: var(--glow-red);
}

.btn-primary:hover {
    background: #ff4d4d;
    box-shadow: var(--glow-red-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 51, 51, 0.4);
    color: var(--accent-red);
}

.btn-outline:hover {
    background: rgba(255, 51, 51, 0.05);
    border-color: var(--accent-red);
    box-shadow: var(--glow-red);
}

/* Home / Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-elite {
    background: rgba(255, 51, 51, 0.1);
    color: var(--accent-red);
    border: 1px solid rgba(255, 51, 51, 0.2);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(to bottom right, #ffffff, #888888);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

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

.hero-btn-group {
    display: flex;
    gap: 20px;
}

/* Pricing Sections */
.section-padding { padding: 80px 0; }

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--accent-red);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    color: #fff;
    letter-spacing: -0.5px;
}

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

/* Pricing Cards */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
    transition: all 0.4s ease;
}

.card:hover {
    transform: translateY(-5px);
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    box-shadow: var(--glow-red);
}

.card:hover::before {
    background: linear-gradient(90deg, transparent, var(--accent-red), transparent);
}

.card-header {
    margin-bottom: 24px;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-title i { color: var(--accent-red); font-size: 1.1rem; }

.card-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.card-price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.card-features {
    list-style: none;
    flex: 1;
    margin-bottom: 30px;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    color: #d1d5db;
}

.card-features i {
    color: var(--accent-red);
    font-size: 0.85rem;
    opacity: 0.8;
}

.featured-card {
    border-color: rgba(255, 51, 51, 0.3);
    background: linear-gradient(180deg, rgba(20,5,5,0.8) 0%, rgba(10,2,2,0.6) 100%);
}

.featured-card .card-price { color: var(--accent-red); }

/* Addons */
.addon-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.addon-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.addon-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
}

.addon-name {
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
}

.addon-name i { color: var(--accent-red); }

.addon-price {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--accent-red);
    font-size: 1.1rem;
}

/* Footer */
footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 60px;
}



/* Responsiveness */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 3rem; }
}
