
body{
    margin:0;
    font-family:Arial,sans-serif;
    background:#0b0b0b;
    color:white;
}
header{
    background:#111;
    padding:15px;
    position:sticky;
    top:0;
    z-index:1000;
}
.menu-btn{
    font-size:28px;
    color:#b7ff00;
    cursor:pointer;
}
.sidebar{
    position:fixed;
    top:0;
    left:-250px;
    width:250px;
    height:100%;
    background:#111;
    transition:0.3s;
    padding-top:60px;
    z-index:999;
}
.sidebar a{
    display:block;
    color:white;
    padding:15px 25px;
    text-decoration:none;
    border-bottom:1px solid #222;
}
.sidebar a:hover{
    background:#b7ff00;
    color:black;
}
.sidebar.active{
    left:0;
}
.container{
    padding:25px;
    max-width:1200px;
    margin:auto;
}
.hero{
    text-align:center;
    padding:40px 20px;
}
.hero img{
    width:220px;
    border-radius:20px;
}
.hero h1{
    color:#b7ff00;
    font-size:52px;
}
.section-title{
    color:#b7ff00;
    margin-top:50px;
    border-bottom:2px solid #b7ff00;
    padding-bottom:10px;
}
.card{
    background:#151515;
    border-radius:20px;
    padding:20px;
    margin:25px 0;
    box-shadow:0 0 15px rgba(183,255,0,0.15);
}
.card img, video{
    width:100%;
    border-radius:15px;
}
footer{
    text-align:center;
    padding:30px;
    color:#888;
}
.telegram{
    background:#b7ff00;
    color:black;
    padding:10px 20px;
    display:inline-block;
    border-radius:12px;
    font-weight:bold;
}

video{
    width:100%;
    max-height:700px;
    background:#000;
    border-radius:20px;
    overflow:hidden;
}

ul{
    padding-left:20px;
    line-height:1.9;
}
li{
    color:#d7ff5f;
    font-weight:bold;
}
