/* ==========================================================
   KTV SMART KARAOKE - CORRECTED DARK BACKGROUND & GLASS CARDS
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --ktv-bg: #07090e;
    --ktv-card-bg: rgba(15, 23, 42, 0.75);
    --ktv-card-border: rgba(99, 102, 241, 0.25);
    --ktv-primary: #6366f1;
    --ktv-secondary: #a855f7;
    --ktv-accent: #ec4899;
    --ktv-cyan: #06b6d4;
    --ktv-gold: #f59e0b;
    --ktv-success: #10b981;
    --ktv-danger: #ef4444;
    --ktv-surface: #0b1120;
    --ktv-surface-light: #1e293b;
}

/* --- Background Utama Halaman (Area yang Anda Tandai Merah) --- */
/* --- Global Reset & Background --- */
body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--ktv-bg);
    color: #f1f5f9;
    min-height: 100vh;
    background-image: 
        radial-gradient(circle at 10% 15%, rgba(99, 102, 241, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 85%, rgba(168, 85, 247, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(236, 72, 153, 0.08) 0%, transparent 60%);
    background-attachment: fixed;
}


h1, h2, h3, h4, h5, h6, .brand-font {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
}

/* --- Typography Gradients --- */
.gradient-text {
    background: linear-gradient(135deg, #a855f7, #6366f1, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-gold {
    background: linear-gradient(135deg, #fbbf24, #f59e0b, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-cyan {
    background: linear-gradient(135deg, #38bdf8, #06b6d4, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-pink {
    background: linear-gradient(135deg, #f472b6, #ec4899, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Glassmorphism Cards & Panels (Kembali Transparan) --- */
.card-custom, .glass-card {
    background: rgba(15, 23, 42, 0.75) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--ktv-card-border) !important;
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.card-custom:hover, .glass-card:hover {
    border-color: rgba(168, 85, 247, 0.45);
    box-shadow: 0 12px 35px rgba(99, 102, 241, 0.25);
}

.glass-panel {
    background: rgba(11, 17, 32, 0.6) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

/* --- Neon Glowing Buttons --- */
.btn-neon, .btn-neon-gradient {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
    color: #ffffff !important;
    border: none;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 18px rgba(168, 85, 247, 0.4);
}

.btn-neon:hover, .btn-neon-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.6);
    color: #ffffff !important;
}

.btn-outline-glow {
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #e2e8f0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.btn-outline-glow:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #6366f1;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.4);
}

/* --- Form Controls --- */
.form-control, .form-select {
    background-color: rgba(15, 23, 42, 0.8) !important;
    border: 1px solid rgba(99, 102, 241, 0.25) !important;
    color: #ffffff !important;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    background-color: rgba(15, 23, 42, 0.95) !important;
    border-color: #a855f7 !important;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.4) !important;
    color: #ffffff !important;
}

.input-group-text {
    background-color: rgba(15, 23, 42, 0.9) !important;
    border: 1px solid rgba(99, 102, 241, 0.25) !important;
    color: #a5b4fc !important;
    border-radius: 10px;
}

/* --- Tables --- */
.table, .table-dark, .table-custom {
    --bs-table-bg: transparent !important;
    --bs-table-color: #e2e8f0 !important;
    color: #e2e8f0 !important;
    background-color: transparent !important;
}

.table-custom tbody tr, .table tr {
    background: rgba(15, 23, 42, 0.6) !important;
    backdrop-filter: blur(8px);
}

.table-custom tbody tr:hover, .table tr:hover {
    background: rgba(30, 41, 59, 0.85) !important;
}

/* --- Custom Scrollbars & Marquee --- */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(7, 9, 14, 0.6);
}

::-webkit-scrollbar-thumb {
    background: rgba(99, 102, 241, 0.4);
    border-radius: 4px;
}

.marquee-box {
    background: #0b1120;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    position: relative;
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    font-size: 1.05rem;
    color: #facc15;
    font-weight: 500;
}