/* assets/style.css - 830A-Listers Premium Glassmorphism Design System */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&family=Share+Tech+Mono&display=swap');

:root {
    --bg-dark: #050505;
    --glass-bg: rgba(20, 20, 20, 0.45);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-highlight: rgba(255, 255, 255, 0.15);
    --primary-gold: #d4af37;
    --primary-glow: rgba(212, 175, 55, 0.4);
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --digital-font: 'Share Tech Mono', monospace;
    --main-font: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--main-font);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Dynamic Panning Background */
body::before {
    content: '';
    position: fixed;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: url('/assets/bg.png') no-repeat center center;
    background-size: cover;
    opacity: 0.35;
    z-index: -2;
    animation: panBackground 60s linear infinite alternate;
}

/* Subtle gradient overlay to ensure text readability */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5,5,5,0.9) 0%, rgba(15,10,5,0.6) 100%);
    z-index: -1;
    pointer-events: none;
}

@keyframes panBackground {
    0% { transform: scale(1.1) translate(0, 0); }
    50% { transform: scale(1.15) translate(-2%, 2%); }
    100% { transform: scale(1.1) translate(2%, -2%); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    position: relative;
    z-index: 1;
}

/* Glassmorphism Utilities */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), inset 0 1px 1px var(--glass-highlight);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
}

.glass-panel:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 1px 1px var(--glass-highlight), 0 0 20px rgba(212, 175, 55, 0.1);
}

/* Typography & Headers */
h1, h2, h3 {
    font-weight: 800;
    line-height: 1.2;
}

.title-glow {
    color: #fff;
    text-shadow: 0 0 30px rgba(255,255,255,0.2);
}

/* Buttons */
.btn-gold {
    background: linear-gradient(135deg, #f5d76e, var(--primary-gold), #b8860b);
    color: #000;
    border: none;
    padding: 16px 32px;
    font-size: 1.05rem;
    font-weight: 800;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    font-family: var(--main-font);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-20deg);
    transition: left 0.5s ease;
}

.btn-gold:hover::before {
    left: 150%;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px var(--primary-glow);
}

.btn-gold:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Form Elements */
.input-glass {
    width: 100%;
    padding: 18px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: white;
    font-size: 16px;
    font-family: var(--main-font);
    transition: all 0.3s ease;
}

.input-glass:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 15px var(--primary-glow);
}

.input-glass::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Checkboxes */
.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    transition: border-color 0.3s ease;
}

.checkbox-container:hover {
    border-color: rgba(255,255,255,0.2);
}

.checkbox-container input[type="checkbox"] {
    margin-top: 4px;
    accent-color: var(--primary-gold);
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-container label {
    font-size: 0.85rem;
    color: #bbb;
    cursor: pointer;
    line-height: 1.5;
}

/* Header Animation */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-up {
    animation: fadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    opacity: 0;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
