.wrapper-img::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 35%, rgba(0, 0, 0,0.0) 45%)
}
.wrapper-video::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgb(0, 0, 0);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 30%, rgba(84, 61, 7, 0.6) 60%)
}

@media (min-width: 768px){
    .wrapper-video::after{
        background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.8) 20%,
        rgba(84, 61, 7, 0.6) 40%
        );
    }
}


.card-content{
    border-radius: 10px;
    position: absolute;
    background: linear-gradient(to bottom, #1A222E, #121821);
    left: 1px; 
    top:1px;  
    width: calc(100% - 2px);
    height: calc(100% - 2px);
}

.card-wrapper{
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: linear-gradient(to bottom, #374151, #1f2937);
    width: 150px;
    height: 50px;
}

.card-wrapper::before {
    position: absolute; 
    content: "";
    left:50%; 
    top: 50%;
    transform: translate(-50%, -50%);
    height: 500%;
    width: 500%;
    animation: border-spin 7s linear infinite; 
    background: conic-gradient(
      #F7C244 0deg,
      #F0AB0A 45deg,
      transparent 80deg
    );
}

@media (width >= 48rem) {
    .card-wrapper{
        width:160px; 
        height:50px; 
    }
}

@media (width >= 64rem) {
    .card-wrapper{
        width: 200px;
        height: 60px;
    }
}




#highlight::before {
    content: "";
    position: absolute;
    left: 7%;
    bottom: 8px;
    width: 100%;
    height: 10px;
    transform: translateX(-5%);
    background: rgba(247, 194, 68, 0.8);
    z-index: -1;
}

#title{
    opacity: 100;
}

#band{
    opacity: 0;
    transform: translate(300px, 0px);
}

@media (min-width: 280) {
    #highlight::before {
        bottom: 20px;
    }
}

@media (min-width: 560) and (orientation: landscape) {
    #highlight::before {
        bottom: 12px;
    }
}


@media (min-width: 768px) {
    #highlight::before {
        bottom: 15px;
        height: 15px;
    }

    #band{
        transform: translate(0px, -500px);
    }
}

@media (min-width: 1024px) {
    #highlight::before {
        bottom: 15px;
        height: 20px
    }
}

@media (max-height: 450px) and (orientation: landscape) {
    #logo{
        padding: 0;
    }

    #logo img{
        width: 10rem; 
    }

    #title h1{
        font-size: 1.875rem;
        line-height: 2.25rem;
    }

    #title p{
        font-size: 1rem;
        line-height: 1.5rem;
    }
  }


  @keyframes border-spin{
    100%{
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}
  