/* body {
    min-height: 100vh;
    background:
        radial-gradient(circle at top, #1e88e5 0%, #0d47a1 45%, #062f6d 100%);
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
} */

body {
    min-height: 100vh;
    background-image: url("../img/background.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    font-family: 'Segoe UI', sans-serif;
}

/* HEADER EVENT */
.event-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.event-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.event-left img {
    height: 55px;
}

.event-text h5 {
    margin: 0;
    font-weight: bold;
}

.event-text span {
    font-size: 14px;
    opacity: 0.85;
}

.event-right i {
    font-size: 48px;
    color: #053f9f;
    animation: pulse 2s infinite;
}

/* PULSE ICON */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: .7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 14px;
}

.card-header {
    background: linear-gradient(45deg, #1976d2, #2196f3);
    color: #fff;
    font-weight: bold;
}

.bg-glow {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 40%),
        radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.06), transparent 40%);
    pointer-events: none;
}