
/* /* style_videos.css */ */


*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#f5f7fb;
    color:#333;
    padding-top:70px;
}

/* CONTAINER */

.container{
    max-width:1150px;
    margin:auto;
    padding:10px;
}
/* HEADER */

.site-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    background:#1200ff;
    box-shadow:0 3px 15px rgba(0,0,0,.15);
}

.header-container{
    max-width:1275px;
    margin:auto;
    padding:10px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo-area h2{
    color:#fff;
    font-size:27px;
    font-weight:700;
    margin:0;
}

.logo-area p{
    color:#fff;
    font-size:15px;
    margin-top:4px;
}

.main-nav ul{
    display:flex;
    list-style:none;
    gap:40px;
    margin:0;
    padding:0;
}

.main-nav a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
    position:relative;
}

.main-nav a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-5px;
    width:0;
    height:2px;
    background:#fff;
    transition:.3s;
}

.main-nav a:hover::after{
    width:100%;
}

@media(max-width:768px){

    .header-container{
        flex-direction:column;
        gap:15px;
    }

    .main-nav ul{
        gap:18px;
        flex-wrap:wrap;
        justify-content:center;
    }
}




.videos-section{
    padding:10px 0;
    background:#f8fbff;
}

.section-title{
    text-align:center;
    margin-bottom:22px;
}

.section-title h2{
    font-size:32px;
    color:#0d6efd;
    margin-bottom:10px;
    font-weight:700;
}

.section-title p{
    color:#666;
    font-size:18px;
}

.video-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.video-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    text-decoration:none;
    transition:.35s;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.video-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(13,110,253,.25);
    border:2px solid #0d6efd;
}
.video-thumb{
    position:relative;
    overflow:hidden;
}

.video-thumb img{
    width:100%;
    height:120px;
    object-fit:cover;
    display:block;
    transition:.5s;
}

.video-card:hover img{
    transform:scale(1.08);
}





.video-number{
    position:absolute;
    top:10px;
    left:10px;
    background:#0d6efd;
    color:#fff;
    padding:6px 10px;
    border-radius:30px;
    font-size:10px;
    font-weight:700;
}

.video-content{
    padding:7px;
}

.video-content h3{
    margin:0;
    color:#222;
    font-size:15px;
    line-height:1.4;
    font-weight:600;
    
}

@media(max-width:991px){
    .video-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:767px){
    .video-grid{
        grid-template-columns:1fr;
    }

    .section-title h2{
        font-size:26px;
    }
}
.bottom-container{
    max-width:1150px;
    margin:40px auto 0;
    padding:0 10px;
}

.important-note{
    background:#f5eed9;
    border-left:6px solid #ff9800;
    border-radius:14px;
    padding:25px 30px;
    margin-bottom:25px;
}

.important-note h3{
    color:#ff5722;
    font-size:18px;
    font-weight:700;
    margin-bottom:12px;
}

.important-note p{
    color:#333;
    font-size:15px;
    line-height:1.5;
}

.support-box{
    background:#fff;
    border-radius:14px;
    padding:28px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    margin-bottom:35px;
}

.support-box h3{
    color:#1200ff;
    font-size:18px;
    margin-bottom:15px;
}

.support-box p{
    color:#222;
    font-size:15px;
    margin-bottom:6px;
}

.site-footer{
    background:#1200ff;
    color:#fff;
    text-align:center;
    padding:18px;
    font-size:14px;
    font-weight:500;
}

@media(max-width:768px){

    .important-note,
    .support-box{
        padding:20px;
    }

    .site-footer{
        font-size:13px;
    }
}

.play-icon{
    position:absolute;
    bottom:10px;
    right:10px;
    width:35px;
    height:35px;
    border-radius:50%;
    background:#ff0000;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:15px;
    font-weight:bold;
    z-index:2;
}