* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter";
    background-image: url(/img/Desktop\ -\ 3.webp);
    background-position: center;
    background-repeat: repeat;
    background-color: black;
    background-size: cover;
}

.row {
    display: flex;
    flex-wrap: wrap;
}


.col-1 {
    width: 8.33%;
}

.col-2 {
    width: 16.67%;
}

.col-3 {
    width: 25%;
}

.col-4 {
    width: 33.33%;
}

.col-5 {
    width: 41.67%;
}

.col-6 {
    width: 50%;
}

.col-7 {
    width: 58.33%;
}

.col-8 {
    width: 66.67%;
}

.col-9 {
    width: 75%;
}

.col-10 {
    width: 83.33%;
}

.col-11 {
    width: 91.67%;
}

.col-12 {
    width: 100%;
}

.container {
    width: 75%;
    max-width: 992px;
    margin: 0 auto;
    background-color: #000000cc;
}

.games-fict {
    background-color: #000000cc;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 50px;
    margin: 0 12px;
    margin-top: 98px !important;
}

.search-category {
    display: flex;
    align-items: center;
    background: black;
    border-radius: 25px;
    padding: 0px 30px;
    border: 1px solid gray;
    font-size: 14px;
}

.search-category input {
    cursor: pointer;
    background-color: black;
    border: none;
    padding: 12px;
    color: white;
    padding-right: 137px;
    width: 100%;
}

.search-category input:focus {
    outline: 0 none;
}

.search-category input::placeholder {
    color: rgb(186, 185, 185);
    font-size: 14px;
}

.search-category button {
    background-color: black;
    border: none;
    color: white;
}

.search-categories {
    display: flex;
    justify-content: end;
}

.category-games span {
    background-color: #9EF01A;
    padding: 8px;
    border-radius: 25px;
    text-decoration: none;
    color: black;
    font-size: 12px;
    display: inline-block;
    cursor: pointer;
    margin: 0 4px;
    border-bottom: 4px solid #45760d;
}

.category-games {
    text-align: center;
}

.category-games span:active {
    background-color: #45760d;
    border-bottom: 4px solid #9EF01A;
}

.category-games span i {
    padding: 3px;
    border-radius: 25px;
    margin-right: 3px;
}

.game-bar {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    padding: 20px;
}

.game-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    position: relative;
}

.game-card img {
    display: block;
    object-fit: cover;
    width: 100%;
}

.game-title {
    display: none;
    color: white;
    text-align: center;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.477);
    backdrop-filter: blur(3px);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    font-size: 18px;
    transition: all 0.8s;
    border-bottom-left-radius: -9px;
    border-bottom-right-radius: -9px;
    padding: 16px 0;
    animation: 0.8s slide-bottom;
}

@keyframes slide-bottom {
    from {
        margin-bottom: -500px;
    }

    to {
        margin-bottom: 0%;
    }
}

.game-card:hover .game-title {
    display: block;
}

/*----------------------------------------*/


.holographic-card {
    overflow: hidden;
    border-radius: 20px;
    transition: all 0.5s ease;
}


.holographic-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(0deg,
            transparent,
            transparent 30%,
            rgba(255, 255, 255, 0.3));
    transform: rotate(-45deg);
    transition: all 1.5s ease;
    ;
    opacity: 0;
}

.holographic-card:hover {
    transform: scale(1.05);
}

.holographic-card:hover::before {
    opacity: 1;
    transform: rotate(-45deg) translateY(100%);
}



#scrollToTopBtn {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: #88f700;
    color: rgb(0, 0, 0);
    cursor: pointer;
    padding: 13px 18px;
    border-radius: 36px;
    transition: background-color 0.3s;
    font-size: 22px;
}

