:root {
    --primary: #f09433;
    --accent: #bc1888;
    --dark: #0a0a0a;
    --card-bg: #161616;
    --text: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--dark);
    color: var(--text);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

/* Navbar */
.navbar {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #222;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.navbar-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: -1px;
}

.logo-accent { color: var(--primary); }

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #ccc;
    font-size: 14px;
    transition: 0.3s;
}

.nav-links a:hover { color: white; }

.nav-btn {
    background: #25d366;
    color: white !important;
    padding: 8px 15px;
    border-radius: 6px;
    font-weight: 600;
}

/* Hero */
.hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(to bottom, #1a1a1a, var(--dark));
}

.hero h1 { font-size: 2.5rem; margin-bottom: 10px; }
.hero p { color: #888; }

/* Tabs */
.tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-btn {
    background: #222;
    border: 1px solid #333;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    transition: 0.3s;
}

.tab-btn.active {
    background: linear-gradient(45deg, var(--primary), var(--accent));
    border-color: transparent;
}

/* Content Visibility */
.tab-content { display: none; }
.tab-content.active { display: block; }

.category-info {
    text-align: center;
    color: #888;
    margin-bottom: 30px;
    font-style: italic;
}

/* Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #222;
    transition: 0.3s;
}

.card:hover { transform: translateY(-5px); border-color: var(--primary); }

.price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    margin: 10px 0;
}

.card-feature {
    font-size: 11px;
    color: #00ff88;
    font-weight: 700;
    margin-bottom: 15px;
}

.link-input {
    width: 100%;
    padding: 10px;
    background: #000;
    border: 1px solid #333;
    color: white;
    border-radius: 6px;
    margin-bottom: 15px;
}

.buy-btn {
    display: block;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #bc1888);
    color: white;
    text-decoration: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: bold;
}

/* Info Sections */
.info-section { padding: 60px 20px; text-align: center; }
.grey-bg { background: #111; }
.info-section h2 { margin-bottom: 20px; }
.info-section p { max-width: 800px; margin: 0 auto; color: #888; }

/* Footer */
.footer {
    background: #000;
    padding: 60px 20px 30px;
    border-top: 1px solid #222;
}

.footer-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer h3, .footer h4 { color: white; margin-bottom: 20px; }
.footer p, .footer li { font-size: 14px; color: #666; margin-bottom: 10px; list-style: none;}

.footer-copyright {
    text-align: center;
    border-top: 1px solid #222;
    margin-top: 40px;
    padding-top: 20px;
    font-size: 12px;
    color: #444;
}
/* Styling for the inline error message */
.error-msg {
    color: #ff4d4d;
    font-size: 12px;
    font-weight: 600;
    margin-top: -10px; /* Pulls it closer to the box */
    margin-bottom: 10px;
    text-align: left;
    animation: fadeIn 0.3s ease;
}

/* Smooth fade-in effect */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Reset border color when user starts typing */
.link-input:focus {
    border-color: var(--primary) !important;
}
/* The Package Title (e.g., 5K Followers) - Now Large & Orange */
/* The Package Title (e.g., 5K Followers) - Reduced Size */
.card h3 {
    font-size: 1.5rem; /* Reduced from 2.2rem */
    font-weight: 700;
    color: var(--primary); 
    margin-bottom: 2px;
    letter-spacing: -0.5px;
}

/* The Price (e.g., ₹95) - Adjusted to match */
.price {
    font-size: 1rem; /* Reduced from 1.2rem */
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    opacity: 0.8;
}

/* Optional: Make the card padding slightly tighter for a cleaner look */
.card {
    padding: 20px;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid #222;
    transition: 0.3s;
}
