:root {
    --red: #ff003c;
    --red-hover: #e60036;
    --dark: #050505;
    --card-bg: #111111;
    --text: #ffffff;
    --gray: #a0a0a0;
}

body {
    background-color: var(--dark);
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    margin: 0;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Nav Style */
nav {
    padding: 25px 0;
    border-bottom: 1px solid #222;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -1px;
}

.logo span {
    color: var(--red);
}

.btn-login {
    background: white;
    color: black;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    text-align: center;
    background: radial-gradient(circle at top, #33000a 0%, #050505 70%);
}

.badge {
    display: inline-block;
    background: rgba(255, 0, 60, 0.1);
    color: var(--red);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: bold;
    margin-bottom: 20px;
    border: 1px solid var(--red);
}

h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 1;
    font-weight: 900;
    margin-bottom: 20px;
}

.text-red {
    color: var(--red);
}

p {
    color: var(--gray);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Buttons */
.btn-primary {
    background: var(--red);
    color: white;
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    display: inline-block;
    transition: 0.3s ease;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 0, 60, 0.4);
}

.btn-secondary {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
    border-bottom: 2px solid var(--red);
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.price-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid #222;
    transition: 0.3s;
    position: relative;
}

.price-card.featured {
    border: 2px solid var(--red);
    transform: scale(1.05);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.price {
    font-size: 3rem;
    font-weight: 900;
    margin: 20px 0;
}

.price span {
    font-size: 1rem;
    color: var(--gray);
}

ul {
    list-style: none;
    margin-bottom: 30px;
}

li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray);
}

.btn-outline {
    display: block;
    text-align: center;
    padding: 15px;
    border: 1px solid #444;
    color: white;
    text-decoration: none;
    border-radius: 12px;
}