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

:root {
    --bg: #12120f;
    --bg-elevated: rgba(17, 17, 17, 0.92);
    --border: #2a2820;
    --text: #e0e0e0;
    --text-dim: #888;
    --accent: #d4c5a9;
    --accent-dim: #8a7d5a;
    --highlight: #c5a84e;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 680px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    flex: 1;
}

header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.event-year {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

h1 {
    font-size: 2rem;
    font-weight: 300;
    color: var(--text);
    margin-bottom: 0.5rem;
}

h1 strong {
    font-weight: 600;
    color: var(--accent);
}

.subtitle {
    font-size: 1rem;
    color: var(--text-dim);
}

.card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 1.75rem;
    margin-bottom: 1.25rem;
}

.card h2 {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
    font-weight: 500;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.detail-value {
    color: var(--text);
    font-size: 0.95rem;
    text-align: right;
}

.detail-value strong {
    color: var(--accent);
}

.hotel-name {
    font-size: 1.1rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.hotel-address {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.hotel-address a {
    color: var(--text-dim);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.hotel-address a:hover {
    color: var(--accent);
}

.hotel-details {
    border-top: 1px solid var(--border);
    padding-top: 1rem;
    margin-top: 0.5rem;
}

.hotel-rate {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.hotel-rate .rate-price {
    font-size: 1.25rem;
    color: var(--highlight);
    font-weight: 600;
}

.hotel-rate .rate-note {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.hotel-info-list {
    font-size: 0.85rem;
    color: var(--text-dim);
    list-style: none;
}

.hotel-info-list li {
    padding: 0.35rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.hotel-info-list li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: var(--accent-dim);
}

.hotel-info-list strong {
    color: var(--text);
}

.hotel-info-list a {
    color: var(--accent);
    text-decoration: none;
}

.hotel-info-list a:hover {
    text-decoration: underline;
}

.deadline {
    background: rgba(197, 168, 78, 0.1);
    border: 1px solid rgba(197, 168, 78, 0.3);
    border-radius: 4px;
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
    color: var(--highlight);
    margin-top: 1rem;
    text-align: center;
}

.menu-section {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.menu-section h3 {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.menu-item-name {
    color: var(--text);
    font-size: 0.95rem;
}

.menu-item-price {
    color: var(--accent);
    font-size: 0.95rem;
    font-weight: 500;
}

.menu-sides {
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-top: 0.5rem;
    font-style: italic;
}

.cta {
    text-align: center;
    margin: 2rem 0;
}

.register-btn {
    display: inline-block;
    background: var(--accent);
    color: var(--bg);
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 197, 169, 0.25);
}

.register-btn span {
    margin-left: 0.5rem;
}

.fine-print {
    font-size: 0.8rem;
    color: var(--text-dim);
    text-align: center;
    margin-top: 1rem;
    line-height: 1.5;
}

.contact-card {
    background: transparent;
    border: 1px dashed var(--border);
}

.contact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.contact-item:not(:last-child) {
    border-bottom: 1px solid var(--border);
}

.contact-label {
    color: var(--text-dim);
    font-size: 0.85rem;
}

.contact-value {
    font-size: 0.9rem;
}

.contact-value a {
    color: var(--accent);
    text-decoration: none;
}

.contact-value a:hover {
    text-decoration: underline;
}

.note {
    text-align: center;
    color: var(--text-dim);
    font-size: 0.85rem;
    margin-top: 1.5rem;
}

.note a {
    color: var(--accent);
    text-decoration: none;
}

.note a:hover {
    text-decoration: underline;
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.countdown-unit {
    text-align: center;
}
.countdown-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--accent);
    font-variant-numeric: tabular-nums;
}
.countdown-label {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dim);
}
.countdown-secondary {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-top: -1.25rem;
    margin-bottom: 2rem;
}
.countdown-secondary strong {
    color: var(--highlight);
}

@media (max-width: 500px) {
    .container {
        padding: 2rem 1rem;
    }

    h1 {
        font-size: 1.6rem;
    }

    .detail-row, .hotel-rate, .contact-item {
        flex-direction: column;
        gap: 0.25rem;
    }

    .detail-value, .contact-value {
        text-align: left;
    }

    .hotel-rate .rate-price {
        font-size: 1.1rem;
    }
}
