/* Video Player Section Styles */
.video-player-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 20px 15px;
    margin: 15px 10px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.2);
    width: calc(100% - 20px);
    box-sizing: border-box;
}

.video-section-title {
    text-align: center;
    color: #00ff88;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.video-icon {
    font-size: 28px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.video-player-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    min-height: 400px;
}

.video-card {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.video-card.active {
    display: block;
    opacity: 1;
}

.video-wrapper {
    position: relative;
    width: 100%;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.3);
}

.video-player {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    display: block;
    border-radius: 12px;
}

.video-info {
    padding: 15px 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0 0 12px 12px;
    margin-top: -4px;
}

.video-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
}

.video-text-content {
    flex: 1;
}

.video-like-section {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.video-title {
    color: #ffd700;
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 8px 0;
}

.video-description {
    color: #aaa;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.video-description-link {
    text-decoration: none;
    display: block;
    transition: opacity 0.3s ease;
}

.video-description-link:hover {
    opacity: 0.8;
}

.video-description-link .video-description {
    color: #00ff88;
    cursor: pointer;
}

.video-description-link .video-description:hover {
    text-decoration: underline;
}

.video-stats {
    display: flex;
    gap: 20px;
    align-items: center;
}

.video-stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stat-icon {
    font-size: 20px;
}

.stat-count {
    color: #00ff88;
    font-size: 16px;
    font-weight: bold;
}

.stat-label {
    color: #aaa;
    font-size: 12px;
}

.like-button {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2) 0%, rgba(255, 107, 107, 0.3) 100%);
    border: 2px solid #ff6b6b;
    border-radius: 25px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.like-button:hover {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.4) 0%, rgba(255, 107, 107, 0.5) 100%);
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
}

.like-button.liked {
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.5) 0%, rgba(255, 51, 51, 0.6) 100%);
    border-color: #ff3333;
    box-shadow: 0 6px 25px rgba(255, 51, 51, 0.7);
}

.like-button.liked .like-icon {
    animation: heartbeat 0.6s ease;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.3); }
    50% { transform: scale(1.1); }
}

.like-icon {
    font-size: 22px;
    color: #ff3333;
    filter: drop-shadow(0 0 5px rgba(255, 51, 51, 0.8));
}

.like-count {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Video Navigation Dots */
.video-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.video-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-dot:hover {
    background: rgba(0, 255, 136, 0.5);
    transform: scale(1.2);
}

.video-dot.active {
    background: #00ff88;
    width: 30px;
    border-radius: 6px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .video-player-section {
        padding: 15px 10px;
        margin: 10px 5px;
        width: calc(100% - 10px);
    }

    .video-section-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .video-icon {
        font-size: 24px;
    }

    .video-player-container {
        min-height: 250px;
    }

    .video-info {
        padding: 12px 8px;
    }

    .video-header-row {
        gap: 10px;
    }

    .video-title {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .video-description {
        font-size: 13px;
    }

    .video-stats {
        gap: 15px;
    }

    .stat-icon {
        font-size: 18px;
    }

    .stat-count {
        font-size: 14px;
    }

    .stat-label {
        font-size: 11px;
    }

    .like-button {
        padding: 6px 12px;
    }

    .like-icon {
        font-size: 18px;
    }

    .like-count {
        font-size: 14px;
    }

    .video-dot {
        width: 10px;
        height: 10px;
    }

    .video-dot.active {
        width: 25px;
    }
}

@media (max-width: 480px) {
    .video-player-section {
        padding: 12px 8px;
        margin: 8px 3px;
        width: calc(100% - 6px);
    }

    .video-section-title {
        font-size: 18px;
    }

    .video-icon {
        font-size: 22px;
    }

    .video-title {
        font-size: 15px;
    }

    .video-description {
        font-size: 12px;
    }

    .video-stats {
        gap: 12px;
    }

    .stat-icon {
        font-size: 16px;
    }

    .stat-count {
        font-size: 13px;
    }

    .stat-label {
        font-size: 10px;
    }

    .like-button {
        padding: 5px 10px;
    }

    .like-icon {
        font-size: 16px;
    }

    .like-count {
        font-size: 13px;
    }
}

/* Landscape Orientation - Video optimized for landscape */
@media (orientation: landscape) and (max-height: 500px) {
    .video-player {
        max-height: 70vh;
    }

    .video-info {
        padding: 10px 8px;
    }

    .video-title {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .video-description {
        font-size: 12px;
        margin-bottom: 8px;
    }
}
