/* Central Stylesheet - Netflix Free Web Dashboard */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-primary: #09090b;
    --bg-secondary: #18181b;
    --bg-card: rgba(24, 24, 27, 0.75);
    --border-color: rgba(255, 255, 255, 0.08);
    --text-primary: #f4f4f5;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --accent: #e50914; /* Netflix Red */
    --accent-glow: rgba(229, 9, 20, 0.2);
    --primary-btn: #4f46e5;
    --primary-btn-hover: #6366f1;
}

body {
    background: radial-gradient(circle at top, #1e1b4b 0%, #09090b 100%);
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    min-height: 100vh;
    margin: 0;
}

/* Glassmorphism Cards */
.custom-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

/* Inputs styling */
.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.custom-input {
    background-color: rgba(9, 9, 11, 0.6) !important;
    border: 1px solid var(--border-color) !important;
    color: var(--text-primary) !important;
    border-radius: 8px !important;
    padding: 10px 14px !important;
    font-size: 0.95rem !important;
    transition: all 0.2s ease-in-out !important;
}

.custom-input:focus {
    background-color: rgba(9, 9, 11, 0.9) !important;
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 4px var(--accent-glow) !important;
    outline: none !important;
}

/* Custom buttons */
.btn-accent {
    background-color: var(--accent);
    color: #fff;
    border: none;
    font-weight: 600;
    border-radius: 8px;
    padding: 10px 20px;
    transition: all 0.2s ease;
}

.btn-accent:hover {
    background-color: #ff1f2c;
    box-shadow: 0 0 15px rgba(229, 9, 20, 0.4);
    transform: translateY(-1px);
}

.btn-accent:active {
    transform: translateY(0);
}

/* SweetAlert2 Styling overrides */
.swal2-popup {
    background: #18181b !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 16px !important;
}

.swal2-title {
    color: #ffffff !important;
}

.swal2-html-container {
    color: #a1a1aa !important;
}

/* WhatsApp Premium Button and Footer */
.custom-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    background: transparent !important;
}

.btn-whatsapp {
    background: transparent;
    border: 1px solid #25d366;
    color: #25d366;
    font-weight: 600;
    border-radius: 8px;
    padding: 10px 24px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-whatsapp:hover {
    background-color: #25d366 !important;
    color: #09090b !important;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
    transform: translateY(-1px);
}

.btn-whatsapp:active {
    transform: translateY(0);
}

/* Custom input placeholder colors for high contrast readability */
.custom-input::placeholder {
    color: #a1a1aa !important;
    opacity: 0.8 !important;
}
.custom-input::-webkit-input-placeholder {
    color: #a1a1aa !important;
    opacity: 0.8 !important;
}
.custom-input::-moz-placeholder {
    color: #a1a1aa !important;
    opacity: 0.8 !important;
}
.custom-input:-ms-input-placeholder {
    color: #a1a1aa !important;
    opacity: 0.8 !important;
}
