@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Rajdhani:wght@500;700;900&display=swap');
:root {
    --bg-base: #030305; --glass-bg: rgba(16, 16, 24, 0.65); --glass-border: rgba(255, 255, 255, 0.08);
    --primary: #ff2a5f; --primary-glow: rgba(255, 42, 95, 0.6); --secondary: #00f0ff;    
    --text-main: #ffffff; --text-muted: #8b9bb4;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: #2a2a35; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

body { background-color: var(--bg-base); color: var(--text-main); min-height: 100vh; overflow-x: hidden; font-family: 'Inter', sans-serif; background-image: radial-gradient(circle at 15% 50%, rgba(255, 42, 95, 0.08), transparent 25%), radial-gradient(circle at 85% 30%, rgba(0, 240, 255, 0.05), transparent 25%); background-attachment: fixed; display: flex; flex-direction: column; }
h1, h2, h3, h4, .logo { font-family: 'Rajdhani', sans-serif; text-transform: uppercase; }
h1 { font-size: 3rem; font-weight: 900; letter-spacing: 2px; text-shadow: 0 4px 15px rgba(0,0,0,0.5); }
h2 { font-weight: 700; letter-spacing: 1px; }

.dashboard-wrapper { display: flex; flex: 1; width: 100%; max-width: 100vw; overflow: hidden; }
.content-area { flex: 1; padding: 40px; width: 100%; position: relative; z-index: 1; min-width: 0; overflow-x: hidden; }
nav.top-nav { display: flex; justify-content: space-between; align-items: center; padding: 20px 50px; background: rgba(3, 3, 5, 0.8); backdrop-filter: blur(20px); border-bottom: 1px solid var(--glass-border); z-index: 100;}
.logo { font-size: 28px; font-weight: 900; color: #fff; letter-spacing: 3px; text-decoration: none; }
.logo span { color: var(--primary); text-shadow: 0 0 15px var(--primary-glow); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--text-muted); text-decoration: none; transition: 0.3s; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;}
.nav-links a:hover { color: #fff; text-shadow: 0 0 10px rgba(255,255,255,0.5); }

.sidebar { width: 280px; background: var(--glass-bg); backdrop-filter: blur(20px); border-right: 1px solid var(--glass-border); padding: 40px 30px; display: flex; flex-direction: column; flex-shrink: 0; box-shadow: 5px 0 30px rgba(0,0,0,0.5); z-index: 10; overflow-y: auto;}
.sidebar h2 { color: #fff; font-size: 2rem; margin-bottom: 40px; }
.sidebar h2 span { color: var(--primary); }
.sidebar-links-container { display: flex; flex-direction: column; gap: 8px; }
.sidebar a { color: var(--text-muted); text-decoration: none; padding: 14px 20px; border-radius: 12px; transition: all 0.4s; font-weight: 600; border: 1px solid transparent; display: flex; align-items: center; gap: 10px; }
.sidebar a:hover, .sidebar a.active { background: rgba(255, 42, 95, 0.1); color: #fff; border-color: var(--primary); box-shadow: inset 0 0 20px rgba(255, 42, 95, 0.2); transform: translateX(8px); }

.card { background: var(--glass-bg); backdrop-filter: blur(15px); border: 1px solid var(--glass-border); border-radius: 20px; padding: 35px; transition: all 0.4s ease; margin-bottom: 25px; width: 100%; box-shadow: 0 10px 30px rgba(0,0,0,0.4); position: relative; overflow: hidden; }
.card::before { content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(to right, transparent, rgba(255,255,255,0.05), transparent); transform: skewX(-25deg); transition: 0.5s; pointer-events: none;}
.card:hover::before { left: 125%; }
.card:hover { transform: translateY(-8px); border-color: rgba(255, 255, 255, 0.2); box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 20px rgba(255, 42, 95, 0.1); }
.grid-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 30px; margin-top: 30px; }

.btn { padding: 12px 24px; border-radius: 8px; font-weight: 700; border: 1px solid transparent; cursor: pointer; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); color: #fff; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; gap: 10px; text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem; }
.btn-primary { background: var(--primary); border: 1px solid #ff4f7b; box-shadow: 0 4px 15px var(--primary-glow); }
.btn-primary:hover:not(:disabled) { background: #fff; color: var(--primary); transform: translateY(-3px) scale(1.02); box-shadow: 0 8px 25px var(--primary-glow); }
.btn-secondary { background: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.1); color: var(--text-muted); }
.btn-secondary:hover:not(:disabled) { background: rgba(255, 255, 255, 0.1); color: #fff; border-color: rgba(255, 255, 255, 0.3); transform: translateY(-3px); }
.btn-danger { background: rgba(255, 42, 95, 0.1); color: #ff2a5f; border-color: rgba(255, 42, 95, 0.3); }
.btn-danger:hover:not(:disabled) { background: #ff2a5f; color: #fff; transform: translateY(-3px); box-shadow: 0 4px 15px rgba(255, 42, 95, 0.4); }

input, textarea, select { width: 100%; padding: 16px 20px; background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.1); color: #fff; border-radius: 10px; margin-bottom: 20px; outline: none; transition: all 0.3s ease; font-family: 'Inter', sans-serif;}
input:focus, textarea:focus, select:focus { border-color: var(--secondary); box-shadow: 0 0 15px rgba(0, 240, 255, 0.2); background: rgba(0,0,0,0.6); }
.alert { padding: 15px 20px; border-radius: 8px; margin-bottom: 25px; background: rgba(46, 204, 113, 0.1); color: #2ecc71; border: 1px solid #2ecc71; font-weight: 600; word-wrap: break-word;}
.badge { padding: 6px 12px; border-radius: 30px; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; display: inline-block; }

.site-footer { width: 100%; padding: 40px 20px 20px; background: rgba(3, 3, 5, 0.95); border-top: 1px solid var(--glass-border); text-align: center; display: flex; flex-direction: column; align-items: center; gap: 20px; margin-top: auto; z-index: 50; }
.social-links { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.social-btn { padding: 12px 25px; border-radius: 8px; font-weight: 800; text-decoration: none; color: #fff; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 8px; text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem; }
.btn-whatsapp { background: #25D366; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2); border: 1px solid #1EBE5D; }
.btn-youtube { background: #FF0000; box-shadow: 0 4px 15px rgba(255, 0, 0, 0.2); border: 1px solid #E60000; }
.footer-slogan { font-family: 'Rajdhani', sans-serif; color: var(--text-muted); font-size: 1.1rem; font-weight: 600; margin-top: 10px; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 20px; width: 100%; max-width: 800px; text-transform: uppercase; letter-spacing: 2px; }

.format-selection-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 15px; margin-bottom: 20px; width: 100%; }
.format-radio { display: none; }
.format-btn { background: rgba(16, 16, 24, 0.8); border: 2px solid var(--glass-border); border-radius: 12px; padding: 20px 15px; cursor: pointer; transition: all 0.3s ease; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; position: relative; overflow: hidden; height: 100%; }
.format-btn:hover { border-color: rgba(255, 255, 255, 0.3); transform: translateY(-5px); background: rgba(255, 255, 255, 0.05); }
.format-icon { font-size: 2.5rem; filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1)); transition: 0.3s; margin-bottom: 5px; }
.format-title { font-family: 'Rajdhani', sans-serif; font-weight: 700; color: #fff; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; transition: 0.3s; }
.format-desc { font-size: 0.75rem; color: var(--text-muted); font-weight: normal; text-transform: none; letter-spacing: 0; margin-top: 5px; transition: 0.3s; line-height: 1.4; }
.format-radio:checked + .format-btn { border-color: var(--secondary); background: rgba(0, 240, 255, 0.05); box-shadow: 0 5px 20px rgba(0, 240, 255, 0.2), inset 0 0 15px rgba(0, 240, 255, 0.1); transform: translateY(-3px); }
.format-radio:checked + .format-btn .format-title { color: var(--secondary); text-shadow: 0 0 10px rgba(0, 240, 255, 0.5); }
.format-radio:checked + .format-btn .format-icon { filter: drop-shadow(0 0 15px var(--secondary)); transform: scale(1.1); }
.format-radio:checked + .format-btn .format-desc { color: rgba(255, 255, 255, 0.9); }

.vid-wrapper { position: relative; padding-bottom: 56.25%; height: 0; border-radius: 12px; overflow: hidden; border:1px solid var(--glass-border); margin-bottom: 15px; background: #000; }
.vid-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

.tree-arrow { display: flex; align-items: center; justify-content: center; color: var(--secondary); font-size: 32px; font-weight: 900; opacity: 0.5; text-shadow: 0 0 10px var(--secondary); }

@media screen and (max-width: 900px) {
    h1 { font-size: 2.2rem; } 
    .content-area { padding: 25px 15px; width: 100vw; overflow-x: hidden; } 
    nav.top-nav { padding: 15px 20px; flex-wrap: wrap; }
    .dashboard-wrapper { flex-direction: column; max-width: 100vw; overflow-x: hidden;} 
    .sidebar { width: 100%; border-right: none; border-bottom: 1px solid var(--glass-border); padding: 20px; }
    .sidebar-links-container { flex-direction: row; overflow-x: auto; padding-bottom: 10px; scrollbar-width: none;} 
    .sidebar a { margin-bottom: 0; white-space: nowrap; font-size: 0.9rem; padding: 12px 20px; } 
}