/* ===== VARIANT 04: GRADIENT WAVE THEME ===== */
:root {
    --gradient-1: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    --gradient-2: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
    --bg-dark: #0f0f23;
    --bg-card: rgba(255,255,255,0.05);
    --text-white: #ffffff;
    --text-muted: rgba(255,255,255,0.7);
    --font: 'Sora', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font); background: var(--bg-dark); color: var(--text-white); line-height: 1.7; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

.wave-bg { position: fixed; bottom: 0; left: 0; right: 0; z-index: -1; }
.wave { position: absolute; bottom: 0; width: 100%; }
.wave-1 { animation: wave 15s linear infinite; }
.wave-2 { animation: wave 20s linear infinite reverse; }
@keyframes wave { 0%,100% { transform: translateX(0); } 50% { transform: translateX(-25%); } }

.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(15,15,35,0.9); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255,255,255,0.1); }
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 18px 20px; max-width: 1100px; margin: 0 auto; }
.logo { text-decoration: none; font-size: 1.5rem; font-weight: 700; }
.logo-text { color: var(--text-white); }
.logo-highlight { background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.nav-links { display: flex; gap: 35px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--text-muted); font-weight: 500; transition: 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--text-white); }
.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.mobile-menu-btn span { width: 24px; height: 2px; background: var(--text-white); }

.hero { padding: 160px 20px 80px; text-align: center; }
.gradient-badge { display: inline-block; background: var(--gradient-1); padding: 10px 25px; border-radius: 30px; font-weight: 600; margin-bottom: 25px; }
.hero-title { font-size: clamp(2.5rem, 7vw, 4.5rem); font-weight: 800; line-height: 1.1; margin-bottom: 20px; }
.gradient-text { background: var(--gradient-2); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-stats { color: var(--text-muted); font-size: 1.1rem; }

.video-section { padding: 40px 20px 80px; }
.video-card { max-width: 900px; margin: 0 auto; background: var(--bg-card); border-radius: 24px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); }
.video-container { position: relative; padding-top: 56.25%; background: #000; }
.video-container video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: contain; }
.video-info { padding: 25px 30px; }
.creator-mini { display: flex; align-items: center; gap: 15px; }
.avatar { width: 50px; height: 50px; border-radius: 50%; background: var(--gradient-1); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; overflow: hidden; background-size: cover !important; background-position: center !important; }
.avatar[data-thumbnail] span { display: none; }
.creator-mini strong { display: block; }
.creator-mini span { font-size: 0.85rem; color: var(--text-muted); }

.stats-section { padding: 60px 20px; }
.stats-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 50px; }
.stat-item { text-align: center; }
.stat-num { display: block; font-size: 2.5rem; font-weight: 800; background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.stat-label { color: var(--text-muted); }

.creator-section { padding: 60px 20px; }
.creator-card { max-width: 600px; margin: 0 auto; text-align: center; background: var(--bg-card); border-radius: 24px; padding: 50px 40px; border: 1px solid rgba(255,255,255,0.1); }
.creator-img { width: 120px; height: 120px; border-radius: 50%; background: var(--gradient-1); margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; font-size: 3rem; overflow: hidden; background-size: cover !important; background-position: center !important; }
.creator-img[data-thumbnail] span { display: none; }
.creator-card h2 { font-size: 1.8rem; margin-bottom: 15px; }
.creator-card p { color: var(--text-muted); margin-bottom: 25px; }
.social-row { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.social-btn { padding: 12px 25px; background: var(--gradient-1); color: white; text-decoration: none; border-radius: 30px; font-weight: 600; transition: 0.3s; }
.social-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(99,102,241,0.3); }

.permission-section { padding: 40px 20px; }
.permission-box { max-width: 600px; margin: 0 auto; text-align: center; background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); padding: 20px 30px; border-radius: 12px; }

.share-section { padding: 60px 20px; text-align: center; }
.share-section h2 { margin-bottom: 25px; font-size: 1.5rem; }
.share-row { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.share-btn { padding: 14px 30px; border: none; border-radius: 30px; font-family: var(--font); font-weight: 600; cursor: pointer; transition: 0.3s; }
.share-btn.wa { background: #25D366; color: white; }
.share-btn.tg { background: #0088cc; color: white; }
.share-btn.cp { background: var(--bg-card); color: white; border: 1px solid rgba(255,255,255,0.2); }
.share-btn:hover { transform: translateY(-3px); }

.footer { padding: 60px 20px 30px; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 30px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--text-muted); text-decoration: none; }
.footer-links a:hover { color: white; }
.footer p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 5px; }
.copyright { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); color: var(--text-muted); }

@media (max-width: 768px) {
    .mobile-menu-btn { display: flex; }
    .nav-links { position: fixed; top: 70px; left: 0; right: 0; background: rgba(15,15,35,0.98); flex-direction: column; padding: 20px; gap: 15px; transform: translateY(-150%); opacity: 0; transition: 0.3s; }
    .nav-links.active { transform: translateY(0); opacity: 1; }
    .stats-row { gap: 30px; }
}

.page-header { padding: 140px 20px 60px; text-align: center; }
.page-title { font-size: 2.5rem; font-weight: 800; margin-bottom: 10px; background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.page-subtitle { color: var(--text-muted); }
.page-content { padding: 60px 20px; }
.content-section { max-width: 700px; margin: 0 auto 30px; }
.content-section h2 { font-size: 1.5rem; margin-bottom: 20px; background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.content-section p { color: var(--text-muted); margin-bottom: 15px; }
.legal-list { background: var(--bg-card); padding: 25px 30px; border-radius: 16px; border: 1px solid rgba(255,255,255,0.1); }
.legal-list ul { list-style: none; }
.legal-list li { color: var(--text-muted); padding: 8px 0 8px 20px; position: relative; }
.legal-list li::before { content: '→'; position: absolute; left: 0; background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.contact-form { max-width: 500px; margin: 0 auto; background: var(--bg-card); padding: 40px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.1); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; }
.form-group input, .form-group textarea { width: 100%; padding: 14px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; color: white; font-family: var(--font); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: #6366f1; }
.form-group textarea { min-height: 120px; resize: vertical; }
.submit-btn { width: 100%; padding: 14px; background: var(--gradient-1); color: white; border: none; border-radius: 30px; font-family: var(--font); font-weight: 600; cursor: pointer; transition: 0.3s; }
.submit-btn:hover { transform: translateY(-3px); }

