

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #a9c2d3; /* soft blue like your mockup */
}





.header{
    width:1000px;
    height:70px;
    margin:0 auto;
    display:grid;
    grid-template-columns:220px 760px 120px;
    align-items:center;
}


   
  .clips-menu{
    position:absolute;
    left:20px;
    top:20px;
    z-index:1000;
}  




.title{
    color:white;
    font-size:32px;
    left:300px;
    position:relative;


} 






.playall{
    justify-self:start;
    margin-left:620px;
}


.playall a{
    color:white;
    text-decoration:none;
    font-size:16px;
}



.turtle-button{
    cursor:pointer;
    color:white;
    font-size:16px;
}

.dropdown{
    display:none;
    position:absolute;
    left:0;
    top:100%;
    width:230px;
    background:white;
    border:1px solid #ccc;
}

.dropdown a{
    display:block;
    padding:10px;
    color:#333;
    text-decoration:none;
}

.dropdown a:hover{
    background:#eeeeee;
}

.dropdown.show{
    display:block;
}


.container{
    display:flex;
    justify-content:center;
    align-items:flex-start;
    gap:40px;
    margin-top:20px;
}




.video-box{
    width:760px;
}

video{
    width:760px;
    height:420px;
    display:block;
}





.nav-buttons{

    display:flex;

    justify-content:space-between;

    margin-top:15px;

}


.intro-line{

    text-align:center;

    margin-top:25px;

    font-size: 16px;
    color: #333;


    line-height:1.5;

}



.start-container{

    text-align:center;

    margin-top:20px;

}


.playall-button{
    display:inline-block;
    margin-left:15px;
    color:white;
    text-decoration:none;
    cursor:pointer;
}






.side-text{

    width:240px;

    margin-top:40px;

    line-height:1.6;

}



.start-button {
    display: inline-block;
    padding: 12px 28px;
    background: white;
    border: 2px solid #e07a2f;
    text-decoration: none;
    color: #333;
}

