:root {
    --gold: #c5a059;
    --gold-light: #f3e5ab;
    --dark-bg: #0a0a0a;
    --glass: rgba(255, 255, 255, 0.05);
    --border: rgba(197, 160, 89, 0.3);
}

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

body { 
    background-color: var(--dark-bg);
    color: #e0e0e0;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
}

#starfield {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
}

.container { 
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scrollbar-width: none;
}
.container::-webkit-scrollbar { display: none; }

section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    scroll-snap-align: start;
    text-align: center;
}

h1 { font-family: 'Cinzel', serif; font-size: 1.8rem; letter-spacing: 5px; margin: 10px 0; }
h2 { font-family: 'Cinzel', serif; letter-spacing: 3px; margin-bottom: 10px; }

.gold-text { 
    background: linear-gradient(to bottom, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

.subtitle { letter-spacing: 4px; font-size: 0.7rem; opacity: 0.8; }

.profile-img {
    width: 140px; height: 140px; border-radius: 50%;
    border: 1px solid var(--gold); padding: 5px; margin-bottom: 20px;
}

.card {
    background: var(--glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 25px;
    width: 100%;
    max-width: 340px;
    margin-top: 15px;
}

#countdown { display: flex; justify-content: space-around; gap: 10px; }
.time-box span { display: block; font-size: 1.5rem; font-family: 'Cinzel'; color: var(--gold-light); }
.time-box label { font-size: 0.6rem; text-transform: uppercase; opacity: 0.7; }

.form-scroll { width: 100%; max-height: 55vh; overflow-y: auto; padding: 5px; }

.input-label { display: block; text-align: left; font-size: 0.6rem; color: var(--gold); margin: 10px 0 5px 5px; letter-spacing: 1px; }

input, select {
    width: 100%;
    background: rgba(255,255,255,0.07);
    border: 1px solid var(--border);
    padding: 12px;
    color: white;
    margin-bottom: 12px;
    font-family: 'Montserrat';
    border-radius: 5px;
    outline: none;
}

button {
    width: 100%;
    background: linear-gradient(135deg, #c5a059 0%, #8e6d31 100%);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 40px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-top: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    cursor: pointer;
}

#music-control {
    position: fixed; top: 20px; right: 20px; z-index: 1001;
    background: rgba(0,0,0,0.6); border: 1px solid var(--gold);
    color: var(--gold); padding: 10px 15px; border-radius: 30px;
    font-size: 0.7rem; cursor: pointer; backdrop-filter: blur(5px);
    display: flex; align-items: center; gap: 8px; transition: all 0.3s;
}

#music-control.playing { background: var(--gold); color: black; }

.divider { border: 0; border-top: 1px solid var(--border); width: 60px; margin: 20px auto; }