.social {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.socBlock {
    width: 100%;
}

.events-panel {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 18px 0 14px;
    text-align: left;
}

.events-panel-title {
    text-align: center;
    color: #00f6ff;
    font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 18px;
    text-shadow: 0 0 8px rgba(0, 255, 255, .35);
}

.events-list {
    width: 100%;
}

.event-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 8px 10px;
    margin-bottom: 2px;
}

.event-left {
    min-width: 0;
}

.event-name {
    color: #00cfff;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 3px;
    text-shadow: 1px 1px 2px #000;
}

.event-label {
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.1;
}

.event-right {
    min-width: 150px;
    text-align: right;
}

.event-hour {
    color: rgba(140, 180, 220, 0.9);
    font-size: 16px;
    line-height: 1.1;
    margin-bottom: 5px;
}

.event-countdown {
    color: rgba(120, 165, 205, 0.75);
    font-size: 12px;
    line-height: 1.1;
}

.event-countdown.started {
    color: #ffd18f;
    font-weight: 700;
}

@media (max-width: 768px) {
    .events-panel {
        max-width: 100%;
        padding: 14px 8px 12px;
    }

    .event-item {
        gap: 10px;
        padding: 8px 4px;
    }

    .event-name {
        font-size: 16px;
    }

    .event-hour {
        font-size: 14px;
    }

    .event-countdown,
    .event-label {
        font-size: 11px;
    }

    .event-right {
        min-width: 120px;
    }
}
