:root {
    --primary: #0062ff;
    --secondary: #ff6b00;
    --dark: #1a1a1a;
    --light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', -apple-system, sans-serif; line-height: 1.6; color: var(--dark); background-color: #fff; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Navigation */
header { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); padding: 15px 0; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #eee; }
nav { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 45px; width: auto; }
.nav-links { display: flex; list-style: none; gap: 30px; }
.nav-links a { text-decoration: none; color: var(--dark); font-weight: 600; font-size: 0.95rem; transition: 0.3s; }
.nav-links a:hover { color: var(--primary); }

/* Hero Sections */
.hero { padding: 100px 0; background: linear-gradient(135deg, #0062ff 0%, #003b99 100%); color: white; text-align: center; }
.hero h1 { font-size: 3.5rem; line-height: 1.2; margin-bottom: 20px; font-weight: 800; }
.hero p { font-size: 1.25rem; opacity: 0.9; margin-bottom: 30px; }

/* Affiliate Landing Page Hero */
.affiliate-hero { 
    padding: 120px 0; 
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1549317661-bd32c8ce0db2?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    color: white; 
    text-align: center; 
}

/* Buttons */
.btn { display: inline-block; padding: 16px 35px; border-radius: 50px; text-decoration: none; font-weight: 700; transition: 0.4s; border: none; cursor: pointer; }
.btn-primary { background: var(--secondary); color: white; box-shadow: 0 4px 15px rgba(255,107,0,0.4); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(255,107,0,0.6); }

/* Cards & Grid */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; padding: 60px 0; }
.card { background: white; padding: 40px; border-radius: 20px; box-shadow: var(--shadow); border: 1px solid #f0f0f0; transition: 0.3s; }
.card:hover { transform: translateY(-10px); }
.card h3 { color: var(--primary); margin-bottom: 15px; }

/* Reviews */
.review-card { background: #fdfdfd; padding: 30px; border-radius: 15px; border-left: 5px solid var(--secondary); margin-bottom: 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }

/* Footer */
footer { background: #0a0a0a; color: #999; padding: 80px 0 40px; margin-top: 100px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 50px; margin-bottom: 40px; }
.address-block { color: #eee; line-height: 1.8; }
.disclaimer-box { font-size: 0.85rem; border: 1px solid #333; padding: 20px; border-radius: 10px; margin-bottom: 30px; }
.footer-bottom { border-top: 1px solid #222; pt: 30px; text-align: center; font-size: 0.8rem; }

/* Mobile Menu */
.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 6px; }
.hamburger span { width: 30px; height: 3px; background: var(--dark); border-radius: 3px; }

@media (max-width: 768px) {
    .nav-links { display: none; position: absolute; top: 75px; left: 0; width: 100%; background: white; flex-direction: column; padding: 40px; text-align: center; box-shadow: var(--shadow); }
    .nav-links.active { display: flex; }
    .hamburger { display: flex; }
    .hero h1 { font-size: 2.2rem; }
}