/* --- Global Variables (TikTok Theme) --- */
:root {
    --bg-color: #010101; /* Black */
    --card-bg: #121212;
    --primary-color: #ff0050; /* TikTok Pink */
    --secondary-color: #00f2ea; /* TikTok Cyan */
    --text-color: #ffffff;
    --text-muted: #a0a0a0;
    --glow-pink: 0 0 15px rgba(255, 0, 80, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Hind Siliguri', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Buttons --- */
.btn-primary {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 700;
    transition: 0.3s;
    box-shadow: var(--glow-pink);
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(0, 242, 234, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: 0.3s;
    display: inline-block;
}

.btn-secondary:hover { background: rgba(255, 255, 255, 0.2); }

.btn-outline {
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 10px 20px;
    border-radius: 4px;
    display: block;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    font-weight: 700;
}

.btn-outline:hover {
    background: var(--secondary-color);
    color: black;
}

/* --- Navbar --- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--primary-color);
    padding: 15px 0;
}

.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.6rem; font-weight: 800; color: white; }
.logo span { color: var(--secondary-color); }
.nav-links { display: flex; gap: 25px; }
.nav-links a { font-weight: 500; color: var(--text-muted); transition: 0.3s; text-decoration: none; }
.nav-links a:hover { color: var(--primary-color); }

/* --- Hero Section --- */
.hero-section {
    position: relative;
    padding: 120px 0;
    text-align: center;
}

.hero-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,0,80,0.2) 0%, rgba(0,242,234,0.1) 50%, rgba(0,0,0,0) 100%);
    z-index: -1;
}

.badge {
    background: rgba(255, 0, 80, 0.15);
    color: var(--primary-color);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid var(--primary-color);
}

.hero-section h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    color: transparent;
}

.hero-section p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 40px;
}

.hero-btns { display: flex; justify-content: center; gap: 15px; }

/* --- Stats Bar --- */
.stats-bar {
    background: #080808;
    padding: 40px 0;
    border-top: 1px solid #222;
}

.stats-grid { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 20px; text-align: center; }
.stat-item i { font-size: 2.2rem; color: var(--secondary-color); margin-bottom: 12px; }
.stat-item h3 { font-size: 2rem; color: white; }
.stat-item p { color: var(--text-muted); font-weight: 500; }

/* --- Special Offer --- */
.special-offer { padding: 80px 0; }
.offer-box {
    background: linear-gradient(135deg, #220010, #001a1a);
    border-radius: 12px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #333;
}
.offer-content h2 { margin: 10px 0; font-size: 2rem; color: var(--secondary-color); }
.offer-tag { background: var(--primary-color); color: white; padding: 4px 10px; border-radius: 4px; font-weight: bold; }
.offer-features { margin-top: 15px; }
.offer-features li { margin-bottom: 8px; list-style: none; color: #ddd; }
.offer-features i { color: var(--secondary-color); margin-right: 8px; }
.offer-price h3 { font-size: 2.5rem; margin-bottom: 15px; color: var(--primary-color); }

.btn-glow {
    background: white;
    color: black;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 800;
    animation: pulse 2s infinite;
    text-decoration: none;
    display: inline-block;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* --- Pricing Grid --- */
.pricing-section { padding: 80px 0; background: #050505; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 2.5rem; margin-bottom: 10px; }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.price-card {
    background: var(--card-bg);
    border: 1px solid #222;
    border-radius: 8px;
    padding: 30px;
    transition: 0.3s;
    text-align: center;
}
.price-card:hover { border-color: var(--primary-color); transform: translateY(-5px); }
.popular { border: 2px solid var(--primary-color); position: relative; }
.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    padding: 4px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}
.card-header h3 { font-size: 1.4rem; margin-bottom: 10px; }
.card-header .price { font-size: 2.2rem; font-weight: 800; color: var(--secondary-color); margin-bottom: 20px; }
.features { margin-bottom: 25px; }
.features li { margin-bottom: 12px; color: var(--text-muted); font-size: 0.95rem; }

/* --- Features Section --- */
.features-section { padding: 80px 0; }
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}
.feature-box {
    background: #0a0a0a;
    padding: 40px 20px;
    border-radius: 8px;
    text-align: center;
    border-bottom: 3px solid #222;
    transition: 0.3s;
}
.feature-box:hover { border-bottom-color: var(--primary-color); }
.feature-box i { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 20px; }
.feature-box h3 { margin-bottom: 10px; }
.feature-box p { color: var(--text-muted); font-size: 0.9rem; }

/* --- Footer --- */
footer {
    padding: 40px 0;
    background: #000;
    text-align: center;
    border-top: 1px solid #111;
}
.footer-content p { color: var(--text-muted); font-size: 0.9rem; }
.social-links { margin-top: 15px; }
.social-links a { font-size: 1.5rem; color: var(--secondary-color); margin: 0 10px; }

/* --- Responsive --- */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-section h1 { font-size: 2.5rem; }
    .offer-box { flex-direction: column; text-align: center; gap: 30px; }
    .price-card.popular { transform: scale(1); }
}