* {
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f4f6f9;
    margin: 0;
    color: #111827;
}

.page {
    min-height: 100vh;
    padding: 30px 16px;
    display: flex;
    flex-direction: column;
}

.header {
    max-width: 900px;
    margin: 0 auto 24px;
    text-align: center;
}

.logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 16px;
}

h1 {
    font-size: 28px;
    margin: 0 0 8px;
    color: #000e48;
}

.subtitle {
    font-size: 15px;
    color: #6b7280;
    margin: 0;
}

.container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    flex: 1;
}

.event-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 14px;
    margin-bottom: 14px;
    box-shadow: 0 4px 14px rgba(0, 14, 72, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid rgba(0, 14, 72, 0.08);
}

.event-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0, 14, 72, 0.12);
}

.event-info {
    line-height: 1.45;
    flex: 1;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #dcfce7;
    color: #166534;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 999px;
    margin-bottom: 8px;
}

.status::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
    animation: liveBlink 1s infinite;
    box-shadow: 0 0 0 rgba(34, 197, 94, 0.7);
}

@keyframes liveBlink {
    0% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }

    70% {
        opacity: 0.5;
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
    }

    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.event-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111827;
}

.event-meta {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.7;
}

.event-meta div {
    margin-bottom: 2px;
}

.meta-label {
    font-weight: 700;
    color: #374151;
}

.btn {
    background: #000e48;
    color: #ffffff;
    padding: 11px 16px;
    border-radius: 9px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.2s ease;
}

.btn:hover {
    background: #00072a;
    transform: scale(1.03);
}

.empty {
    background: #ffffff;
    text-align: center;
    color: #6b7280;
    margin-top: 20px;
    padding: 40px 20px;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0, 14, 72, 0.08);
    border: 1px solid rgba(0, 14, 72, 0.08);
}

.empty-title {
    font-size: 18px;
    font-weight: bold;
    color: #000e48;
    margin-bottom: 6px;
}

.footer {
    max-width: 900px;
    width: 100%;
    margin: 40px auto 0;
    text-align: center;
    font-size: 13px;
    color: #6b7280;
    padding-bottom: 10px;
}

@media (max-width: 600px) {
    .page {
        padding: 24px 12px;
    }

    .logo {
        max-width: 145px;
    }

    h1 {
        font-size: 24px;
    }

    .event-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .event-name {
        font-size: 18px;
    }

    .event-meta {
        font-size: 13px;
    }
}

.quick-links {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.quick-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.25s ease;
}

.quick-btn:hover {
    background: #f36f21;
    color: #fff;
    transform: translateY(-2px);
}