/*
Theme Name: Best IPTV Red & White
Theme URI: https://bestiptvukv.it.com/
Author: Custom Developer
Version: 3.0
Description: Exact IPTV plans with Red and White theme for Best IPTV.
*/

:root {
    --primary-red: #e11d48;
    --primary-dark-red: #be123c;
    --bg-light: #ffffff;
    --bg-card: #f8fafc;
    --text-dark: #0f172a;
    --text-muted: #475569;
    --border-color: #e2e8f0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--bg-light);
    color: var(--text-dark);
}

header {
    background-color: #ffffff;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-red);
    text-decoration: none;
    text-transform: uppercase;
}

nav a {
    color: var(--text-dark);
    text-decoration: none;
    margin-left: 20px;
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary-red);
}

.hero {
    text-align: center;
    padding: 80px 20px 40px 20px;
    background: linear-gradient(180deg, #fff1f2 0%, #ffffff 100%);
}

.hero h1 {
    font-size: 40px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.hero h1 span {
    color: var(--primary-red);
}

.hero p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 30px auto;
}

.pricing-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-header h2 {
    font-size: 32px;
    color: var(--text-dark);
}

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

.pricing-card {
    background: #ffffff;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s, border-color 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
}

.pricing-card.popular {
    border-color: var(--primary-red);
    box-shadow: 0 8px 20px rgba(225, 29, 72, 0.15);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-red);
    color: #ffffff;
    padding: 4px 16px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 20px;
    text-transform: uppercase;
}

.pricing-card h3 {
    font-size: 22px;
    margin-top: 10px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.price {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-red);
    margin: 15px 0;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    text-align: left;
    font-size: 14px;
    color: var(--text-muted);
}

.features-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
}

.features-list li::before {
    content: "✓ ";
    color: var(--primary-red);
    font-weight: bold;
}

.btn-buy {
    display: block;
    width: 100%;
    box-sizing: border-box;
    background-color: var(--primary-red);
    color: #ffffff;
    padding: 12px 0;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s;
}

.btn-buy:hover {
    background-color: var(--primary-dark-red);
}

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    padding: 12px 22px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 8px;
}

footer {
    background-color: #0f172a;
    color: #ffffff;
    text-align: center;
    padding: 30px 20px;
    margin-top: 60px;
}

footer a {
    color: #f43f5e;
    text-decoration: none;
    margin: 0 10px;
}
