:root {
    --live-primary-color: #6A0DAD;
    --live-secondary-color: #FF6B9E;
    --live-background-color: #F5E6FF;
    --live-text-color: #2C003E;
}

.live-page {
    background: linear-gradient(135deg, var(--live-background-color) 0%, #E6E6FA 100%);
    color: var(--live-text-color);
}

.live-event-start {
    position: relative;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.event-start-video {
    position: relative;
    width: 100%;
    max-height: 500px;
    overflow: hidden;
}

.event-start-video video {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.event-start-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
    padding: 20px;
    text-align: center;
}

.event-start-overlay h2 {
    font-size: 2em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.event-start-overlay p {
    font-size: 1em;
    opacity: 0.9;
}

.countdown-section {
    background-color: white;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(106, 13, 173, 0.1);
    text-align: center;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.countdown-segment {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-number {
    font-size: 2.5em;
    font-weight: bold;
    color: var(--live-primary-color);
}

.countdown-label {
    font-size: 0.9em;
    color: var(--live-text-color);
    opacity: 0.7;
}

.live-stats {
    display: flex;
    justify-content: space-between;
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(106, 13, 173, 0.1);
}

.online-counter, .event-status {
    display: flex;
    align-items: center;
    gap: 10px;
}

.live-dot {
    width: 10px;
    height: 10px;
    background-color: red;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 0.7; }
    50% { opacity: 1; }
    100% { opacity: 0.7; }
}

.live-gallery {
    background-color: white;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(106, 13, 173, 0.1);
}

.live-gallery h2 {
    text-align: center;
    color: var(--live-primary-color);
    margin-bottom: 20px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.event-video-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(106, 13, 173, 0.1);
}

.event-video-container video {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.back-btn {
    display: block;
    text-align: center;
    background: var(--live-primary-color);
    color: white;
    padding: 15px;
    text-decoration: none;
    border-radius: 50px;
    margin: 20px 0;
    transition: background-color 0.3s ease;
}

.back-btn:hover {
    background-color: var(--live-secondary-color);
}

@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .countdown {
        gap: 10px;
    }

    .countdown-number {
        font-size: 2em;
    }

    .live-stats {
        flex-direction: column;
        gap: 10px;
    }

    .event-start-overlay h2 {
        font-size: 1.5em;
    }

    .event-start-overlay p {
        font-size: 0.9em;
    }
}