* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #ffffff;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Header Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 20px 0;
    border-bottom: 2px solid #333;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-left i {
    font-size: 2.5rem;
    color: #8b5cf6;
}

.header-left h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
}

.header-right .badge {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* Video Card Styles */
.video-card {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #333;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

/* Video Thumbnail */
.video-thumbnail {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: #000;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
    z-index: 2;
}

.featured-badge {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.discount-badge {
    background: linear-gradient(135deg, #ff4757, #ff3742);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(139, 92, 246, 0.9);
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
}

.video-card:hover .play-button {
    opacity: 1;
}

.play-button:hover {
    background: #8b5cf6;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Video Content */
.video-content {
    padding: 25px;
}

.video-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.video-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    flex: 1;
    margin-right: 15px;
}

.pro-badge {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 700;
    white-space: nowrap;
}

.video-description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* Video Rating */
.video-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #ffd700;
    font-size: 0.9rem;
}

.rating-count {
    color: #888;
    font-size: 0.9rem;
}

/* Video Tags */
.video-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.tag {
    background: #333;
    color: #cccccc;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Video Stats */
.video-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    color: #888;
    font-size: 0.9rem;
}

/* Video Access */
.video-access {
    background: linear-gradient(145deg, #2a2a2a, #333);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #444;
}

.access-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.access-label {
    color: #8b5cf6;
    font-weight: 600;
    font-size: 0.9rem;
}

.access-duration {
    background: #444;
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
}

.pricing {
    margin-bottom: 15px;
}

.current-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #8b5cf6;
    margin-bottom: 5px;
}

.original-price {
    color: #888;
    text-decoration: line-through;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.special-offer {
    color: #666;
    font-size: 0.8rem;
    font-style: italic;
}

.savings {
    text-align: right;
}

.save-amount {
    color: #00d2d3;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.discount-percent {
    color: #00d2d3;
    font-weight: 700;
    font-size: 0.8rem;
}

/* Watch Button */
.watch-button {
    width: 100%;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: #ffffff;
    border: none;
    padding: 15px;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.watch-button:hover {
    background: linear-gradient(135deg, #a855f7, #8b5cf6);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}

.watch-button i {
    font-size: 1.1rem;
}

/* Chat Bubble */
.chat-bubble {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.chat-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-left h1 {
        font-size: 2rem;
    }
    
    .header-left i {
        font-size: 2rem;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .video-content {
        padding: 20px;
    }
    
    .video-title {
        font-size: 1.1rem;
    }
    
    .current-price {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 15px;
    }
    
    .header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .video-content {
        padding: 15px;
    }
    
    .video-access {
        padding: 15px;
    }
}
