:root {
    --primary: #f59e0b;
    --primary-hover: #fbbf24;
    --accent: #d97706;
    --glow: rgba(245, 158, 11, 0.3);
    --green-success: #22c55e;
}

[data-theme="dark"] {
    --bg-main: #09090b;
    --bg-nav: rgba(9, 9, 11, 0.85);
    --bg-card: #18181b;
    --border-color: #27272a;
    --text-main: #f4f4f5;
    --text-muted: #a1a1aa;
}
[data-theme="light"] {
    --bg-main: #f4f4f5;
    --bg-nav: rgba(244, 244, 245, 0.85);
    --bg-card: #ffffff;
    --border-color: #e4e4e7;
    --text-main: #09090b;
    --text-muted: #71717a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background-color: var(--bg-main); color: var(--text-main); overflow-x: hidden; scroll-behavior: smooth; transition: background-color 0.2s, color 0.2s; }
h1, h2, h3 { font-family: 'Poppins', sans-serif; }
.small-caps { font-variant: small-caps; letter-spacing: 1px; text-transform: uppercase; font-weight: 800; }
.gradient-text { background: linear-gradient(135deg, var(--primary), var(--text-main)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.navbar { position: fixed; top: 0; left: 0; right: 0; height: 80px; padding: 0 5%; display: flex; justify-content: space-between; align-items: center; background: var(--bg-nav); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border-color); z-index: 100; }
.logo-container { display: flex; align-items: center; gap: 12px; }
.logo-container > div { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text { font-size: 24px; line-height: 1; margin: 0;}
.logo-tagline { font-size: 10px; color: var(--primary); font-weight: 700; letter-spacing: 0.4px; margin-top: 3px; }
.icon-wrapper { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border-radius: 10px; background: linear-gradient(135deg, rgba(245,158,11,0.1), rgba(217,119,6,0.1)); border: 1px solid rgba(245,158,11,0.3); }

.nav-links { display: none; gap: 32px; }
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.nav-links a:hover { color: var(--primary); }

.theme-toggle-btn { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border-color); background: var(--bg-card); color: var(--text-main); cursor: pointer; transition: border-color 0.2s; }
.theme-toggle-btn:hover { border-color: var(--primary); }
.theme-toggle-btn i { width: 18px; height: 18px; }

.dashboard-btn, .twitch-btn { display: flex; align-items: center; gap: 8px; color: #fff; text-decoration: none; padding: 12px 24px; border-radius: 30px; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 14px; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden; }
.dashboard-btn { background: linear-gradient(135deg, var(--primary), var(--accent)); box-shadow: 0 0 20px var(--glow); }
.dashboard-btn:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 10px 30px rgba(245, 158, 11, 0.5); }
.twitch-btn { background: #9146FF; box-shadow: 0 0 20px rgba(145, 70, 255, 0.35); }
.twitch-btn:hover { background: #7c3aed; transform: translateY(-2px) scale(1.02); box-shadow: 0 10px 30px rgba(145, 70, 255, 0.5); }

.hero { min-height: 100vh; padding: 140px 5% 60px; display: grid; grid-template-columns: 1fr; gap: 60px; align-items: center; max-width: 1400px; margin: 0 auto; }
@media (min-width: 1024px) { .hero { grid-template-columns: 1.1fr 0.9fr; gap: 40px; } }
.hero-content { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; z-index: 10; }
.badge { background: rgba(245, 158, 11, 0.1); border: 1px solid rgba(245, 158, 11, 0.3); color: var(--primary); padding: 6px 16px; border-radius: 20px; font-size: 12px; }
.hero-title { font-size: clamp(40px, 5vw, 64px); line-height: 1.1; font-weight: 800; }
.hero-subtitle { font-size: 18px; color: var(--text-muted); line-height: 1.6; max-width: 90%; }
.cta-group { display: flex; gap: 16px; margin-top: 10px; flex-wrap: wrap; }
.btn { display: flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 12px; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 16px; text-decoration: none; transition: all 0.2s; }
.btn-primary { background: var(--text-main); color: var(--bg-main); }
.btn-primary:hover { opacity: 0.85; transform: translateY(-2px); }
.btn-secondary { background: rgba(128, 128, 128, 0.08); color: var(--text-main); border: 1px solid var(--border-color); }
.btn-secondary:hover { background: rgba(128, 128, 128, 0.15); border-color: var(--text-muted); }

.hero-visuals { position: relative; width: 100%; height: 500px; }
.blob { position: absolute; filter: blur(80px); border-radius: 50%; z-index: 0; opacity: 0.5; }
.blob-1 { width: 300px; height: 300px; background: var(--accent); top: 0; right: 0; }
.blob-2 { width: 250px; height: 250px; background: var(--primary); bottom: -50px; left: 50px; }

.image-frame { position: absolute; border-radius: 24px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.5); border: 1px solid var(--border-color); z-index: 2; }
.main-frame { width: 80%; height: 400px; right: 0; top: 20px; border-radius: 24px 100px 24px 24px; background: var(--bg-card); position: relative; }

/* Partner Slider */
.trust-indicators { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.avatars-mini { display: flex; margin-right: 8px; }
.avatars-mini img { width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--bg-main); margin-left: -10px; object-fit: cover; }
.avatars-mini img:first-child { margin-left: 0; }

.partner-slider-badge { position: absolute; top: 16px; left: 16px; z-index: 4; background: rgba(145, 70, 255, 0.85); color: #fff; padding: 6px 14px; border-radius: 20px; font-size: 11px; backdrop-filter: blur(6px); }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s ease-in-out; z-index: 1; }
.slide.active { opacity: 1; z-index: 2; }
.slide::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0) 55%); }
.cover-img { width: 100%; height: 100%; object-fit: cover; }
.streamer-info { position: absolute; bottom: 20px; left: 20px; right: 20px; z-index: 3; display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.streamer-name { font-weight: 700; font-family: 'Poppins', sans-serif; font-size: 18px; color: #fff; display: block; margin-bottom: 6px; }
.channel-btn { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.12); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.3); color: #fff; text-decoration: none; padding: 8px 14px; border-radius: 20px; font-size: 12px; font-weight: 600; transition: background 0.2s; }
.channel-btn:hover { background: #9146FF; border-color: #9146FF; }

.live-badge { display: inline-flex; align-items: center; padding: 4px 10px; border-radius: 8px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }
.live-badge.partner { background: rgba(145, 70, 255, 0.25); color: #d5b8ff; border: 1px solid rgba(145, 70, 255, 0.5); }
.live-badge.affiliate { background: rgba(245, 158, 11, 0.25); color: #fcd34d; border: 1px solid rgba(245, 158, 11, 0.5); }

.floating-frame { width: 260px; bottom: 0px; left: 0px; background: var(--bg-card); padding: 24px; border-radius: 16px; border-color: rgba(245, 158, 11, 0.3); box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 30px var(--glow); animation: float 6s ease-in-out infinite; }
.mockup-widget { background: var(--bg-main); border: 1px solid var(--border-color); border-radius: 12px; display: flex; flex-direction: column; color: var(--text-main); font-family: 'Poppins', sans-serif; font-weight: bold; overflow: hidden; margin: 24px; }
.w-score-top { display: flex; align-items: center; justify-content: space-between; }
.w-team { padding: 12px; font-size: 16px; }
.w-num { background: linear-gradient(135deg, var(--primary), var(--accent)); color: white; padding: 12px 16px; font-size: 14px; }
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-15px); } 100% { transform: translateY(0px); } }

.abstract-shape { position: absolute; top: -20px; right: 40%; z-index: 3; animation: dash 3s linear infinite; }
@keyframes dash { to { stroke-dashoffset: -20; } }
.floating-circle { position: absolute; bottom: -20px; right: 20%; width: 60px; height: 60px; border: 8px solid var(--primary); border-radius: 50%; z-index: 3; }

.about-section { padding: 100px 5%; background: linear-gradient(to bottom, var(--bg-main), var(--bg-card)); border-top: 1px solid var(--border-color); }
.about-container { max-width: 1200px; margin: 0 auto; text-align: center; }
.about-header { margin-bottom: 60px; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; text-align: left; }
.feature-card { background: var(--bg-main); border: 1px solid var(--border-color); padding: 32px; border-radius: 16px; transition: all 0.3s ease; }
.feature-card:hover { border-color: var(--primary); transform: translateY(-5px); box-shadow: 0 10px 30px var(--glow); }
.feature-icon { width: 48px; height: 48px; background: rgba(245, 158, 11, 0.1); color: var(--primary); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; border: 1px solid rgba(245, 158, 11, 0.3); }
.feature-card h3 { font-size: 20px; margin-bottom: 12px; }
.feature-card p { color: var(--text-muted); line-height: 1.6; font-size: 15px; }

/* --- SUPPORT SECTION --- */
.support-section { padding: 60px 5% 100px; max-width: 1200px; margin: 0 auto; }
.support-card { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; background: linear-gradient(135deg, rgba(145,70,255,0.08), rgba(145,70,255,0.02)); border: 1px solid rgba(145,70,255,0.3); border-radius: 20px; padding: 32px; }
.support-icon { width: 56px; height: 56px; flex-shrink: 0; background: rgba(145,70,255,0.15); color: #a970ff; border-radius: 14px; display: flex; align-items: center; justify-content: center; }
.support-card h3 { font-size: 20px; margin-bottom: 6px; }
.support-card p { color: var(--text-muted); font-size: 15px; max-width: 480px; }
.support-card > div:nth-child(2) { flex: 1; min-width: 240px; }

/* --- FOOTER --- */
.site-footer { padding: 40px 5%; border-top: 1px solid var(--border-color); background: var(--bg-card); }
.footer-top { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; padding-bottom: 24px; }
.footer-brand p { display: flex; align-items: center; gap: 6px; color: var(--text-muted); font-size: 13px; margin-top: 4px; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid var(--border-color); color: var(--text-muted); transition: all 0.2s; }
.footer-socials a:hover { color: var(--primary); border-color: var(--primary); }
.footer-socials i { width: 16px; height: 16px; }
.footer-bottom { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding-top: 24px; border-top: 1px solid var(--border-color); color: var(--text-muted); font-size: 13px; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { color: var(--text-muted); text-decoration: none; }
.footer-links a:hover { color: var(--primary); }

/* Feedback FAB */
.feedback-fab { position: fixed; bottom: 28px; right: 28px; width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--accent)); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px var(--glow); z-index: 50; text-decoration: none; }
.feedback-fab:hover { transform: translateY(-3px); }
.feedback-fab i { width: 22px; height: 22px; }
