/* * 🌟 Baganix "Aurora Glass" UI Framework
 * Replaces boring flat UI with premium, moving gradients and glassmorphism.
 */

:root {
    --color-1: #1E90FF; /* Dodger Blue */
    --color-2: #FF69B4; /* Hot Pink */
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.2);
    --text-main: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Padauk', sans-serif; /* Native Burmese support */
}

body {
    background-color: #0f0f1a;
    color: var(--text-main);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 🌌 The Moving Aurora Background */
.aurora-bg {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, var(--color-1), transparent 40%),
                radial-gradient(circle at 80% 20%, var(--color-2), transparent 40%);
    filter: blur(80px);
    opacity: 0.6;
    z-index: -1;
    animation: auroraMove 20s infinite alternate ease-in-out;
}

@keyframes auroraMove {
    0% { transform: rotate(0deg) scale(1); }
    100% { transform: rotate(15deg) scale(1.1); }
}

/* 🪟 The Glassmorphism Containers */
.glass-container {
    width: 100%;
    max-width: 480px; /* Mobile-first premium feel */
    height: 90vh;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    position: relative;
}

/* Scrollbar hiding for clean UI */
.glass-container::-webkit-scrollbar { display: none; }
.glass-container { -ms-overflow-style: none; scrollbar-width: none; }

/* 🖋️ Premium Inputs & Buttons */
.bgnx-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 16px;
    color: white;
    font-size: 16px;
    margin-bottom: 20px;
    outline: none;
    transition: all 0.3s ease;
}

.bgnx-input:focus {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.bgnx-btn {
    width: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.3), rgba(255,255,255,0.1));
    border: 1px solid var(--glass-border);
    padding: 15px;
    border-radius: 16px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: transform 0.2s, background 0.3s;
}

.bgnx-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}