Header Styles
.slider-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.youtube-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.channel-logo-container {
    position: relative;
    display: flex;
    align-items: center;
}

.youtube-logo {
    height: 32px;
    width: 32px;
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: white;
    border-radius: 50%;
    padding: 2px;
    z-index: 2;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

.channel-logo {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.channel-stats p {
    font-size: 12px;
    margin-bottom: 5px;
}

.channel-stats h3{
    font-size: 18px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ff0000;
    transition: all 0.5s ease-out;
}

.stat-label {
    font-size: 0.7rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.slider-title {
    margin: 0;
    font-size: 1.5rem;
    color: #333;
    font-weight: 600;
}

/* Existing Slider Styles */
.slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 15px;
    overflow: hidden;
}

.slider-container .video-grid {
    display: flex;
    transition: transform 0.4s ease-out;
    gap: 20px;
    padding: 10px 0;
    scroll-behavior: smooth;
}

.slider-container .video-card {
    flex: 0 0 calc(50% - 10px); /* Default to 2 videos */
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.slider-container .video-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.slider-container .video-card iframe {
    width: 100%;
    height: 180px;
    border: none;
    display: block;
}

.slider-container .video-title {
    padding: 15px;
    font-size: 1rem;
    font-weight: 500;
    color: #222;
    background: #fff;
    border-top: 1px solid #eee;
}

.slider-container .new-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff0000;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: bold;
    z-index: 2;
    display: none;
}

.slider-container .slider-controls {
    display: flex;
    justify-content: center;
    margin-top: 25px;
    gap: 10px;
}

.slider-container .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #ff0000;
    transform: scale(-0.85);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .slider-container .video-card {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 640px) {
    .slider-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .slider-container .video-card {
        flex: 0 0 100%;
    }
}

.btn-subscribe {
    background-color: #e63946;
    color: #ffffff;
    padding: 5px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease;
    font-size: 12px;
}


.btn-subscribe:hover {
  background-color: #d62828;
}

.logo-youtube {
  width: 80px;
}

.content-sub-logo{
  display: flex;
  align-items: center;
  gap: 30px;
}

.right-side-slider-header p{
    margin-bottom: 0;
    text-align: end;
}

.right-side-slider-header h3{
    text-align: end;
    font-size: 36px;
    color: #968167;
}


.right-side-slider-header{
    padding-left: 80px;

}

.yt-section{
    padding-top: 20px;
}




