* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.video-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    margin-bottom: 30px;
}

.video-header {
    background: linear-gradient(135deg, #d32f2f 0%, #c62828 100%);
    padding: 20px 30px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.video-header h1 {
    font-size: 28px;
    font-weight: 600;
}

.live-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.live-dot {
    width: 10px;
    height: 10px;
    background: #ff4444;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    background: #000;
}

video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video-controls {
    padding: 25px 30px;
    background: #f8f9fa;
}

.video-info {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.play-button, .mute-button, .fullscreen-button {
    background: linear-gradient(135deg, #d32f2f 0%, #c62828 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.play-button:hover, .mute-button:hover, .fullscreen-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.4);
}

.play-button:active, .mute-button:active, .fullscreen-button:active {
    transform: translateY(0);
}

.video-stats {
    display: flex;
    gap: 20px;
    color: #6c757d;
    font-size: 14px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
}

.info-panel {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.info-panel h2 {
    color: #d32f2f;
    margin-bottom: 15px;
    font-size: 24px;
}

.info-panel p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 10px;
    font-weight: 500;
    color: #495057;
}

.feature-icon {
    color: #28a745;
    font-weight: 700;
    font-size: 18px;
}

@media (max-width: 768px) {
    .video-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .video-header h1 {
        font-size: 22px;
    }
    
    .video-info {
        justify-content: center;
    }
    
    .info-panel {
        padding: 20px;
    }
}