* {
    margin: 0;
    padding: 0;
}
body {
    font-family: "Inter", sans-serif;
    height: 100%;
}

.video-bg {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}
.video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover; 
}
.video-mob {display: none;}

.wrap {
    padding: 0 80px;
    display: flex;
    justify-content: space-between;
}
.logo {
    text-align: center;
    width: 200px;
    margin: auto;
    display: block;
    margin: 35px auto 100px;
}
.first-block {
    max-width: 440px;
}
h1 {
    font-size: 64px;
    font-weight: 700;
    text-transform: uppercase;
    color: #FFF;
    padding: 16px 0 30px;
}
 h2 {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    color: #FFF;
    padding-top: 100px;
}
button {
    border-radius: 8px;
    border: 1px solid  #4CD864;
    background: #4CD864;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}
.yellow {
    color: #FFD700;
}
.tables {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.table {
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.20);
    background: linear-gradient(93deg, #020D15 -2.61%, #003B25 105.4%);
    padding: 32px 24px;
}
.flex-block {
    display: flex;
    justify-content: space-between;
}
.flex-block:first-child {
    margin-bottom: 16px;
     justify-content: space-around;
}
.flex-block:nth-child(2) {
    gap: 8px;
}
.date {
    color: #FFF;
    font-family: Sora, sans-serif;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}
.rating-block {
  display: flex;
  align-items: center;
}

.rating-left {
  background: #4CD864;
  padding: 4px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(11, 10, 8, 0.40);
  border-radius: 6px;
  z-index: 2;
}


.rating-right {
  background:  #FFD700;
  padding: 4px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border: 1px solid rgba(11, 10, 8, 0.40);
   margin-left: -3px; 
  z-index: 1;
  position: relative;
}

@media screen and (max-width: 1024px) {
    .wrap {
        flex-direction: row;
        align-items: center;
        justify-content: space-between; 
        height: 90vh; 
        padding-top: 100px;
    }
    .first-block {
        text-align: center;
    }
    h1 {
        font-size: 48px;
        max-width: 80%;
        margin: auto;
        padding: 16px 0 16px;
    }
    h2 {
        font-size: 24px;
        padding-top: 0;
    }
    .logo {
        width: 130px;
        margin: 36px auto 0;
    }
    .table:nth-child(3) {
        display: none;
    }
    .date {
        flex-direction: row;
        align-items: center;
        gap: 0;
    }
    .date p {
        padding: 0 12px;
    }
    .time {
        border-left: 1px solid rgba(181, 180, 180, 0.12);
    }
    .table img {
        max-width: 48px;
    }
    .table {
        padding: 20px 24px;
    }

}

@media screen and (max-width:768px) {
    body {
        background-size: 1050px;
        background-color: #0d1e06;
    } 
    .wrap {
        flex-direction: column;
        padding-top: 0;
    }
    .tables {
        gap: 8px;
    }
    .video-bg {
        top: 100px;
    }
     .video-mob {display: block;}
    .video-desk {display: none;}
}

@media screen and (max-width:480px) {
    body { 
        background-size: 900px;
    }
    h1 {
        font-size: 32px;
        padding: 10px 0 10px;
        max-width: 100%;
    }
    h2 {
        font-size: 16px;
    }
    .wrap {
        padding: 0 20px;
        height: 90vh;
    }
    .logo {
        margin: 5px auto 0;
        width: 98px;
    }
    .tables {
        gap: 4px;
    }
    .video-bg {
        top: 0;
    }
   button {
        padding: 14px 30px;
    }
    h1 {
        font-size: 30px;
    }
}

@media screen and (max-width: 380px) {
    body {  
        background-size: 720px;
    }
    .table {
        padding: 15px 20px;
    }
    
    .video-bg {
        height: 85%;
        top: 65px;
    }
    
}