.cards {
    background-color: var(--w);
    gap: 20px;
}

.card {
    width: 360px;
    text-align: center;
    position: relative;
}

.card::after {
    position: absolute;
    content: attr(data-title);
    background: linear-gradient(to right, var(--sub), var(--main));
    display: block;
    padding: 6px;
    border-radius: 7px;
    top: -10px;
    right: -10px;
    font-size: 20px;
    color: var(--w);
}

.card img {
    width: 100%;
    aspect-ratio: 4 / 2.5;
    border-radius: 8px;
    box-shadow: 0 0 3px #00000088;
}


/* 
.card {
    position: relative;
    height: 460px;
    width: 350px;
}

.card .card-color {
    /* background: linear-gradient(135deg, var(--main), var(--sub)); 

background-color: var(--main);
width: 150px;
height: 150px;
position: absolute;
top: 0;
left: 0;
z-index: 3;
border-radius: 30px;

}
.card .card-img {
    border-radius: 30px;
    width: 300px;
    aspect-ratio: 4 / 2.5;
    position: absolute;
    z-index: 4;
    top: 25px;
    left: 25px;
}
.card .card-data {
    position: absolute;
    z-index: 5;
    background-color: var(--w);
    top: 160px;
    left: 50px;
    width: 300px;
    height: 260px;
    padding: 12px;
    border-radius: 30px;
    display: grid;
    gap: 9px;
}
.card .card-data b {
    font-size: 20px;
    color: var(--main);
}
.card .card-data a:hover {
    display: inline-block;
    margin-left: 15px;
}
*/

.imgbox .img {
    max-width: 450px;
}

.imgbox .img img {
    border-radius: 10px;
    box-shadow: 0 0 5px #00000088;
    width: 100%;
}

.link {
    color: var(--sub);
    font-size: 28px;
    margin: 10px;
}

.databox h1 {
    color: #db53d4;
    background-image: -webkit-linear-gradient(0deg, var(--main), var(--sub));
    background-clip: text;
    -webkit-background-clip: text;
    /* text-fill-color: transparent; */
    -webkit-text-fill-color: transparent;
}

.down {
    width: 100%;
    height: 50px;
}

.imgbox .bottom1 {
    position: relative;
    width: 80px;
    animation: bounce 1s ease-in infinite;
}

@keyframes bounce {
    from {
        margin-top: -10px;
    }
    to {
        margin-top: 0;
    }
}

.imgbox .bottom1:after {
    position: absolute;
    content: '';
    width: 50px;
    height: 5px;
    background: var(--main);
    rotate: 30deg;
    left: 0;
    top: 15px;
    border-radius: 5px 0 0 5px;
}

.imgbox .bottom1::before {
    position: absolute;
    content: '';
    width: 50px;
    height: 5px;
    background: var(--main);
    rotate: -30deg;
    left: 40px;
    top: 15px;
    border-radius: 0 5px 5px 0;
}

.imgbox .bottom2 {
    position: relative;
    width: 80px;
}

.imgbox .bottom2:after {
    position: absolute;
    content: '';
    width: 50px;
    height: 5px;
    background: var(--sub);
    rotate: 30deg;
    left: 0;
    top: 15px;
    border-radius: 5px 0 0 5px;
}

.imgbox .bottom2::before {
    position: absolute;
    content: '';
    width: 50px;
    height: 5px;
    background: var(--sub);
    rotate: -30deg;
    left: 40px;
    top: 15px;
    border-radius: 0 5px 5px 0;
}

.databox {
    max-width: 500px;
}

.databox p {
    margin: 30px 0;
    font-weight: 600;
}

.images {
    gap: 10px;
}

.images .img {
    width: 360px;
    border-radius: 5px;
    position: relative;
}

.images .img:before {
    content: attr(data-state);
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--color);
    padding: 3px;
    color: var(--w);
    border-radius: 5px 0 5px 0;
}

.images .img img {
    border-radius: 5px;
    width: 100%;
}

.videos .video {
    width: 360px;
}

.videos .video video {
    width: 100% !important;
}