@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Cinzel:wght@400;600&display=swap');

:root {
    /* Light Teal Blue Theme */
    --void: #f0f9ff;
    --deep-blue: #e0f2fe;
    --mid-blue: #bae6fd;
    --light-blue: #0d9488;
    --cyan: #14b8a6;
    --gold: #f59e0b;
    --amber: #d97706;
    --glass: rgba(255, 255, 255, 0.7);
    --text: #0f172a;
    --text-dim: #475569;
    --success: #10b981;
    --white: #ffffff;
    --shadow-color: rgba(0, 0, 0, 0.1);
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }

html { scroll-behavior: smooth; }

body {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #ccfbf1 100%);
    background-color: var(--void);
    color: var(--text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* --- Celestial Background (Light Version) --- */
.celestial-bg {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.light-rays {
    position: absolute;
    top: -50%;
    left: 50%;
    width: 200%;
    height: 200%;
    transform: translateX(-50%);
    background: repeating-conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(20, 184, 166, 0.08) 5deg,
        transparent 10deg,
        rgba(13, 148, 136, 0.06) 15deg,
        transparent 20deg,
        rgba(245, 158, 11, 0.04) 25deg,
        transparent 30deg
    );
    animation: rotate-rays 60s linear infinite;
}

@keyframes rotate-rays {
    from { transform: translateX(-50%) rotate(0deg); }
    to { transform: translateX(-50%) rotate(360deg); }
}

.lightning {
    position: absolute;
    opacity: 0;
    animation: flash 4s infinite;
}

.lightning-1 {
    top: 10%; left: 20%;
    width: 2px; height: 100px;
    background: linear-gradient(to bottom, transparent, var(--cyan), transparent);
    filter: blur(1px);
}

.lightning-2 {
    top: 30%; right: 25%;
    width: 2px; height: 150px;
    background: linear-gradient(to bottom, transparent, rgba(245,158,11,0.8), transparent);
    animation-delay: 1.5s;
    filter: blur(1px);
}

.lightning-3 {
    top: 5%; left: 60%;
    width: 1px; height: 80px;
    background: linear-gradient(to bottom, transparent, var(--light-blue), transparent);
    animation-delay: 2.8s;
}

@keyframes flash {
    0%, 90%, 100% { opacity: 0; }
    5% { opacity: 0.6; }
    10% { opacity: 0.2; }
    15% { opacity: 0.8; }
    20% { opacity: 0; }
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: float 20s infinite ease-in-out;
}

.orb-1 { 
    width: 400px; height: 400px; 
    background: rgba(13, 148, 136, 0.25); 
    top: -100px; left: -100px; 
}
.orb-2 { 
    width: 300px; height: 300px; 
    background: rgba(20, 184, 166, 0.2); 
    bottom: -50px; right: -50px; 
    animation-delay: -10s; 
}
.orb-3 { 
    width: 200px; height: 200px; 
    background: rgba(245, 158, 11, 0.15); 
    top: 40%; left: 40%; 
    animation-delay: -5s; 
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

.particles {
    position: absolute;
    width: 100%; height: 100%;
}

.particle {
    position: absolute;
    bottom: -10px;
    width: 3px; height: 3px;
    background: rgba(13, 148, 136, 0.6);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(13, 148, 136, 0.4);
    animation: rise 10s infinite linear;
}

.particle:nth-child(1) { left: 10%; animation-duration: 8s; }
.particle:nth-child(2) { left: 20%; animation-duration: 12s; animation-delay: 1s; width: 4px; height: 4px; background: var(--gold); }
.particle:nth-child(3) { left: 30%; animation-duration: 9s; animation-delay: 2s; }
.particle:nth-child(4) { left: 40%; animation-duration: 11s; animation-delay: 0.5s; }
.particle:nth-child(5) { left: 50%; animation-duration: 7s; animation-delay: 3s; background: var(--cyan); }
.particle:nth-child(6) { left: 60%; animation-duration: 13s; animation-delay: 1.5s; }
.particle:nth-child(7) { left: 70%; animation-duration: 8s; animation-delay: 2.5s; }
.particle:nth-child(8) { left: 80%; animation-duration: 10s; animation-delay: 0s; background: var(--gold); }
.particle:nth-child(9) { left: 90%; animation-duration: 14s; animation-delay: 3.5s; }
.particle:nth-child(10) { left: 15%; animation-duration: 9s; animation-delay: 4s; }

@keyframes rise {
    0% { transform: translateY(0) scale(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 0.5; }
    100% { transform: translateY(-100vh) scale(1); opacity: 0; }
}

.grid {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: linear-gradient(rgba(13, 148, 136, 0.05) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(13, 148, 136, 0.05) 1px, transparent 1px);
    background-size: 100px 100px;
    z-index: 1;
    pointer-events: none;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem;
    position: relative;
    z-index: 2;
}

@media (min-width: 640px) {
    .container { padding: 2rem; }
}

.glass-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(13, 148, 136, 0.2);
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

@media (min-width: 640px) {
    .glass-card { padding: 2.5rem; }
}

/* --- Typography & Header --- */
.header { text-align: center; margin-bottom: 2rem; }

.brand {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 600;
    background: linear-gradient(135deg, #0f172a 0%, #0d9488 50%, #14b8a6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(13, 148, 136, 0.2);
    letter-spacing: 0.05em;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .brand { font-size: 2.8rem; }
}

.slogan { 
    color: var(--text-dim); 
    font-size: 1rem; 
    margin-top: 0.5rem; 
    font-weight: 400; 
}

@media (min-width: 640px) {
    .slogan { font-size: 1.1rem; }
}

/* --- Navigation & Status --- */
.lang-bar {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.lang-btn {
    padding: 0.4rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(13, 148, 136, 0.3);
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.6);
    touch-action: manipulation;
    font-weight: 500;
}

.lang-btn:hover, .lang-btn.active {
    border-color: var(--cyan);
    color: var(--cyan);
    background: rgba(20, 184, 166, 0.15);
    box-shadow: 0 0 15px rgba(20, 184, 166, 0.2);
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(13, 148, 136, 0.15);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-dim);
    flex-wrap: wrap;
    gap: 0.5rem;
}

.quota-badge {
    background: rgba(245, 158, 11, 0.15);
    color: var(--amber);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.admin-indicator {
    background: rgba(16, 185, 129, 0.15);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
}

.google-signin-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #ffffff;
    color: #0f172a;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s;
    border: 1px solid rgba(13, 148, 136, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.google-signin-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background: #f8fafc;
}

.google-signin-btn svg { width: 18px; height: 18px; }

/* --- ENHANCED FORMS & SEARCH BOX --- */
.input-group { 
    margin-bottom: 1.5rem;
    position: relative;
}

.label {
    display: block;
    color: #0f172a;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
}

/* MAIN SEARCH INPUT - HIGH VISIBILITY YELLOW */
.styled-input {
    width: 100%;
    background: linear-gradient(135deg, #fef9c3 0%, #fef3c7 50%, #fde68a 100%) !important;
    background-color: #fef9c3 !important;
    border: 3px solid #0d9488;
    color: #0f172a;
    padding: 1.25rem 1rem;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 700;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
    box-shadow: 
        inset 0 2px 4px rgba(0,0,0,0.05),
        0 4px 6px rgba(0,0,0,0.05);
    letter-spacing: 0.02em;
}

/* BOLD PLACEHOLDER TEXT - Cross-browser compatible */
.styled-input::placeholder {
    color: #78716c;
    font-weight: 600;
    font-size: 16px;
    opacity: 1;
}

.styled-input::-webkit-input-placeholder {
    color: #78716c;
    font-weight: 600;
    font-size: 16px;
    opacity: 1;
}

.styled-input::-moz-placeholder {
    color: #78716c;
    font-weight: 600;
    font-size: 16px;
    opacity: 1;
}

.styled-input:-ms-input-placeholder {
    color: #78716c;
    font-weight: 600;
    font-size: 16px;
    opacity: 1;
}

.styled-input:focus {
    border-color: #14b8a6;
    box-shadow: 
        0 0 0 4px rgba(20, 184, 166, 0.2),
        0 10px 25px rgba(13, 148, 136, 0.2),
        inset 0 2px 4px rgba(0,0,0,0.05);
    background: linear-gradient(135deg, #fefce8 0%, #fef9c3 50%, #fef3c7 100%) !important;
    transform: translateY(-2px);
}

/* Alternative: Even brighter yellow version */
.styled-input.yellow-mode {
    background: linear-gradient(135deg, #fef08a 0%, #fde047 50%, #facc15 100%) !important;
    border: 3px solid #0d9488;
    font-weight: 800;
    font-size: 20px;
    padding: 1.5rem 1.25rem;
}

.styled-input.yellow-mode::placeholder {
    color: #713f12;
    font-weight: 700;
    font-size: 18px;
}

.styled-input.yellow-mode:focus {
    background: linear-gradient(135deg, #fef9c3 0%, #fef08a 50%, #fde047 100%) !important;
    box-shadow: 
        0 0 0 5px rgba(20, 184, 166, 0.25),
        0 15px 35px rgba(13, 148, 136, 0.25);
}

/* CAPTCHA INPUT - MATCHING STYLE */
.captcha-input {
    max-width: 300px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 auto;
    display: block;
    background: linear-gradient(135deg, #fef9c3 0%, #fef3c7 100%) !important;
    border: 3px solid #0d9488;
    font-size: 20px;
    letter-spacing: 0.1em;
    padding: 1rem;
}

/* CAPTCHA BOX ENHANCED */
.captcha-box {
    background: rgba(255, 255, 255, 0.9);
    border: 3px dashed #0d9488;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.captcha-text {
    font-size: 1.3rem;
    color: #0d9488;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* SUBMIT BUTTON - MATCHING BOLD STYLE */
.submit-btn {
    width: 100%;
    padding: 1.25rem;
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 50%, #0d9488 100%);
    border: none;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    touch-action: manipulation;
    min-height: 56px;
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.submit-btn:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 12px 30px rgba(13, 148, 136, 0.4);
    background: linear-gradient(135deg, #14b8a6 0%, #2dd4bf 50%, #14b8a6 100%);
}

.submit-btn:active { 
    transform: translateY(-1px); 
    box-shadow: 0 6px 15px rgba(13, 148, 136, 0.3);
}

/* --- Results --- */
.results { animation: fadeIn 0.6s ease-out; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    margin: 1.5rem 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(13, 148, 136, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: #000;
}

.video-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

.result-block {
    background: rgba(255, 255, 255, 0.95);
    border-left: 5px solid #0d9488;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 0 16px 16px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-top: 1px solid rgba(13, 148, 136, 0.1);
    border-right: 1px solid rgba(13, 148, 136, 0.1);
    border-bottom: 1px solid rgba(13, 148, 136, 0.1);
}

.block-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #475569;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-weight: 600;
}

.lang-tag {
    background: rgba(20, 184, 166, 0.15);
    color: #14b8a6;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
}

.cache-tag {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
}

.block-content {
    font-size: 1.05rem;
    line-height: 1.8;
    white-space: pre-wrap;
    overflow-wrap: break-word;
    color: #0f172a;
    font-weight: 500;
}

.share-bar {
    display: flex;
    gap: 0.75rem;
    margin: 1.5rem 0;
    justify-content: center;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
    border: 1px solid rgba(13, 148, 136, 0.3);
    color: #0f172a;
    background: rgba(255, 255, 255, 0.7);
    touch-action: manipulation;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.share-btn svg { width: 20px; height: 20px; fill: currentColor; }

.share-whatsapp { border-color: rgba(16, 185, 129, 0.4); color: #059669; }
.share-whatsapp:hover { background: rgba(16, 185, 129, 0.1); }

.share-facebook { border-color: rgba(59, 130, 246, 0.4); color: #2563eb; }
.share-facebook:hover { background: rgba(59, 130, 246, 0.1); }

.share-twitter { border-color: rgba(20, 184, 166, 0.4); color: #0d9488; }
.share-twitter:hover { background: rgba(20, 184, 166, 0.1); }

.missionary-cta {
    display: block;
    text-align: center;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(245, 158, 11, 0.05) 100%);
    border: 1px solid rgba(245, 158, 11, 0.4);
    color: #b45309;
    text-decoration: none;
    border-radius: 12px;
    margin: 1.5rem 0;
    font-weight: 600;
    transition: all 0.3s;
    touch-action: manipulation;
}

.missionary-cta:hover {
    background: rgba(245, 158, 11, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.15);
}

.secondary-btn {
    display: inline-block;
    background-color: #dc2626;
    color: #ffffff !important;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    border: 2px solid #b91c1c;
    transition: all 0.2s ease;
}

.secondary-btn:hover {
    background-color: #b91c1c;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

/* --- LOADER (Light Teal Theme) --- */
.loading-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(240, 249, 255, 0.98);
    z-index: 1000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
}

.loading-overlay.active { display: flex; }

.celestial-orb-loader {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.9) 0%, rgba(13, 148, 136, 0.6) 40%, transparent 70%);
    box-shadow: 0 0 40px rgba(20, 184, 166, 0.5);
    animation: pulse-orb 2s ease-in-out infinite;
    position: relative;
}

.celestial-orb-loader::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 3px solid transparent;
    border-top-color: rgba(20, 184, 166, 0.9);
    border-right-color: rgba(245, 158, 11, 0.6);
    border-radius: 50%;
    animation: spin-loader 1s linear infinite;
}

@keyframes pulse-orb {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.15); opacity: 1; box-shadow: 0 0 60px rgba(20, 184, 166, 0.7), 0 0 80px rgba(245, 158, 11, 0.2); }
}

@keyframes spin-loader {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.loading-text {
    color: #0d9488;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    text-align: center;
    max-width: 90%;
    line-height: 1.5;
    animation: pulse-text 2s ease-in-out infinite;
    font-weight: 500;
}

@keyframes pulse-text {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; text-shadow: 0 0 20px rgba(20, 184, 166, 0.3); }
}

/* --- Footer --- */
.footer {
    margin-top: 2rem;
    text-align: left;
    font-size: 0.8rem;
    color: #475569;
    border-top: 1px solid rgba(13, 148, 136, 0.2);
    padding-top: 1rem;
    line-height: 1.6;
}

.footer-share {
    margin: 1.5rem 0;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(13, 148, 136, 0.2);
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.footer-share a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(13, 148, 136, 0.3);
    color: #475569;
    transition: all 0.3s;
    text-decoration: none;
}

.footer-share a:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.9);
    border-color: #14b8a6;
    color: #14b8a6;
}

.footer-share a svg { width: 22px; height: 22px; fill: currentColor; }

.footer p { margin-bottom: 0.5rem; }

.admin-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: #475569;
    text-decoration: none;
    font-size: 0.75rem;
    opacity: 0.6;
    transition: opacity 0.3s;
    padding: 0.5rem;
}

.admin-link:hover { opacity: 1; color: #0d9488; }

/* --- History Section --- */
.history-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(13, 148, 136, 0.2);
}

.history-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #d97706;
    font-family: 'Cinzel', serif;
    font-weight: 600;
}

.history-list {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 1rem;
}

.history-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    border: 1px solid rgba(13, 148, 136, 0.1);
}

.history-item-text {
    flex: 1;
    margin-right: 1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #0f172a;
    font-weight: 500;
}

.history-item-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #475569;
    font-size: 0.8rem;
}

.history-delete {
    color: #dc2626;
    text-decoration: none;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: background 0.2s;
    font-weight: 500;
}

.history-delete:hover { background: rgba(220, 38, 38, 0.1); }

.history-clear {
    font-size: 0.85rem;
    color: #475569;
    text-decoration: underline;
}

.history-clear:hover { color: #0f172a; }

/* --- Mobile Optimization --- */
@media (max-width: 640px) {
    .label {
        font-size: 0.9rem;
        color: #0f172a;
        font-weight: 700;
        letter-spacing: 0.08em;
    }

    .block-label {
        font-size: 0.8rem;
        color: #475569;
        font-weight: 600;
    }

    .block-content {
        font-size: 1.05rem;
        line-height: 1.75;
        color: #0f172a;
    }

    .slogan {
        font-size: 1.05rem;
        color: #475569;
    }

    .lang-btn {
        font-size: 0.9rem;
        padding: 0.5rem 1.1rem;
    }

    .status-bar {
        font-size: 0.9rem;
    }

    .quota-badge, .admin-indicator {
        font-size: 0.85rem;
        font-weight: 700;
    }

    .styled-input {
        font-size: 19px;
        font-weight: 700;
        padding: 1.35rem 1rem;
        border-width: 3px;
    }

    .styled-input::placeholder {
        font-size: 17px;
        font-weight: 600;
    }

    .styled-input::-webkit-input-placeholder {
        font-size: 17px;
        font-weight: 600;
    }

    .styled-input::-moz-placeholder {
        font-size: 17px;
        font-weight: 600;
    }

    .submit-btn {
        font-size: 1.15rem;
        padding: 1.35rem;
    }

    /* Mobile Loader - Light Theme */
    .celestial-orb-loader {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(20, 184, 166, 0.8) 30%, rgba(13, 148, 136, 0.4) 60%, transparent 70%);
        animation: gentle-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
        position: relative;
        box-shadow: 0 0 40px rgba(20, 184, 166, 0.3);
    }

    .celestial-orb-loader::before,
    .celestial-orb-loader::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        border-radius: 50%;
        border: 2px solid #14b8a6;
        opacity: 0;
        animation: ripple 3s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

    .celestial-orb-loader::after {
        animation-delay: 1.5s;
    }

    @keyframes gentle-pulse {
        0%, 100% { transform: scale(0.95); opacity: 0.8; }
        50% { transform: scale(1.1); opacity: 1; box-shadow: 0 0 60px rgba(20, 184, 166, 0.5); }
    }

    @keyframes ripple {
        0% { width: 80px; height: 80px; opacity: 1; }
        100% { width: 150px; height: 150px; opacity: 0; }
    }
}
