:root {
    --bg: #0f172a;
    --card: #111827;
    --primary: #38bdf8;
    --text: #e5e7eb;
    --muted: #9ca3af;
    --border: #1f2933;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: radial-gradient(1200px 600px at 10% 10%, #0b1220, var(--bg));
    color: var(--text);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 24px;
}

header {
    text-align: center;
    margin-bottom: 80px;
}

.top-image {
    margin: 20px;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(56,189,248,0.1);
    color: var(--primary);
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 20px;
}

h1 {
    font-size: 44px;
    font-weight: 700;
    margin: 0 0 16px;
}

.subtitle {
    font-size: 18px;
    color: var(--muted);
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.subtitle2 {
    font-size: 14px;
    color: var(--muted);
    max-width: 700px;
    margin: 30px auto;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 80px;
}

.card {
    background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.03));
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
}

.card h2 {
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 12px;
}

.card p {
    color: var(--muted);
    margin: 0;
}

.list {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
}

.list li {
    margin-bottom: 8px;
}

.event {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(180deg, rgba(56,189,248,0.08), rgba(56,189,248,0));
    border: 1px solid rgba(56,189,248,0.3);
    border-radius: 24px;
    padding: 48px 24px;
}

.event h2 {
    font-size: 28px;
    margin-bottom: 12px;
}

.event-time {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.event p {
    max-width: 600px;
    color: var(--muted);
    margin-bottom: 28px;
}

.cta {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 12px;
    background: var(--primary);
    color: #020617;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(56,189,248,0.3);
}

footer {
    text-align: center;
    margin-top: 80px;
    font-size: 14px;
    color: var(--muted);
}

@media (max-width: 600px) {
    h1 { font-size: 34px; }
}