:root {
    --event-blue: #1a3a8a;
    --event-gold: #c5a059;
    --dark-blue: #0a1931;
    --pure-white: #ffffff;
}

body {
    background: #000;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.main-wrapper {
    max-width: 480px;
    margin: 0 auto;
    background: #fff;
    position: relative;
    box-shadow: 0 0 40px rgba(0,0,0,0.5);
}

/* Empowered Living Inspired Header */
.event-header {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--event-blue) 100%);
    color: white;
    padding: 40px 0 0 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.top-logo { max-width: 100px; margin-bottom: 20px; }

.hero-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
}

.ona-portrait {
    max-width: 280px;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.4));
}

.event-title {
    font-family: 'Montserrat';
    font-weight: 900;
    font-size: 2.5rem;
    margin: 20px 0 5px;
    letter-spacing: -1px;
}

.event-title span { color: var(--event-gold); }

.event-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 40px;
    padding: 0 30px;
}

.slanted-divider {
    height: 60px;
    background: var(--event-gold);
    clip-path: polygon(0 80%, 100% 0, 100% 100%, 0% 100%);
    margin-top: -30px;
}

/* Feature Grid */
.value-section { padding: 40px 20px; text-align: center; }

.section-label { color: var(--event-blue); font-size: 1.5rem; margin-bottom: 30px; }

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-card {
    background: #f8f9fa;
    padding: 20px 10px;
    border-radius: 15px;
    border-bottom: 3px solid var(--event-gold);
}

.feature-icon { font-size: 2rem; display: block; margin-bottom: 10px; }

.feature-card p { font-size: 0.8rem; font-weight: 700; margin: 0; }

/* Urgency Bar */
.urgency-bar {
    background: var(--dark-blue);
    color: white;
    padding: 30px 20px;
    text-align: center;
    border-top: 4px solid var(--event-gold);
}

#countdown {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--event-gold);
    margin: 10px 0;
}

/* Form Styling */
.form-section { background: #eaecf1; padding: 40px 20px; }

.event-form input, .event-form textarea {
    width: 100%;
    padding: 18px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid #ced4da;
    box-sizing: border-box;
}

.submit-btn {
    width: 100%;
    padding: 22px;
    background: var(--event-blue);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(26, 58, 138, 0.4);
}