body {
    background-color: #000000;
    color: #FFFFFF;
}

.logo {
    position: fixed;
    z-index: 1000;
}

.logo-container {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 8px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.logo-text {
    font-family: 'Arial', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.logo-ved {
    color: #000000;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

.logo-zone {
    color: #8B0000;
    text-shadow: 1px 1px 2px rgba(139, 0, 0, 0.3);
}

.logo-container:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.featured_video {
    height: 70vh;
    background-size: cover;
    background-position: center;
}

.featured_video .gradient {
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0), #000);
}

.card {
    transition: all 0.3s ease-in-out;
    border: none;
    background: #1a1a1a;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card-title {
    font-size: 0.9rem;
    line-height: 1.2;
    margin-bottom: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-body {
    padding: 0.75rem;
}

.video-container {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.video-container:hover .play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.underline-highlight {
    color: #ff4757;
    position: relative;
    overflow: hidden;
}

.underline-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff4757, transparent);
    animation: underline-sweep 2s ease-in-out infinite;
}

@keyframes underline-sweep {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(0); }
    100% { transform: translateX(100%); }
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: all 0.3s ease;
    font-size: 20px;
    color: #000;
    z-index: 10;
}

.video-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.video-embed {
    width: 100%;
    height: 200px;
    border: none;
    border-radius: 8px 8px 0 0;
}

.loading-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #000;
}

.loading-spinner {
    position: relative;
    width: 80px;
    height: 80px;
}

.spinner-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-top: 4px solid #e50914;
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    margin-top: 20px;
    font-size: 1.2rem;
    color: #fff;
    font-weight: 300;
    letter-spacing: 1px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Featured video styles */
.featured-video-container {
    position: relative;
    width: 100%;
    height: 400px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.featured-video-embed {
    width: 100%;
    height: 100%;
    border: none;
}

.featured-video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    transition: all 0.3s ease;
    font-size: 28px;
    color: #000;
    z-index: 10;
    cursor: pointer;
}

.featured-play-button:hover {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.featured-video-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 40px 20px 20px;
    color: white;
}

.featured-video-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.featured-video-info p {
    font-size: 0.9rem;
    opacity: 0.9;
}

@media (max-width: 576px) {
    .video-grid .col-md-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 576px) and (max-width: 768px) {
    .video-grid .col-md-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}