@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.search-bar {
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    background-color: black;
    color: #FFEF00;
}

.search-bar:focus {
    color: #FFEF00;
    outline: none;
}

.search-pg-games-bar {
    width: 90%;
}

.game-card {
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    color: white;
    width: 300px;
    height: 715px;
    border-radius: 10px;
    overflow: hidden;
}

.game-card-link,
.game-card-link:hover {
    text-decoration: none;
    color: white;
}

/* Estilo inicial do botão de coração */
.btn-heart {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
}

.btn-heart i {
    font-size: 24px;
    color: rgb(0 0 0 / 60%);
}

.btn-heart.active i {
    color: red;
}

.btn-heart:focus {
    outline: none;
}

.game-cover {
    background-size: cover;
    background-position: center;
    height: 250px;
}

.game-icon {
    width: 100% !important;
}

.game-info {
    padding: 20px;
    height: auto;
    backdrop-filter: blur(15px);
    position: relative;
    top: -50px;
}

.game-title {
    text-align: center;
    font-weight: bolder;
}

.game-stats {
    text-align: center;
}

.game-status-mode {
    font-size: 0.8em;
    font-weight: 400;
}

.demo-p {
    text-align: center;
    font-size: 0.85em;
    width: 100%;
}

.game-stats h4 {
    text-align: center;
    padding-bottom: 0.7em;
    font-weight: 600;
}

.top-platforms h4 {
    font-weight: 600;
    text-align: center;
    font-size: 0.9em;
    margin-bottom: 0.6em;
}

.game-card .top-platforms .platform-link {
    width: 60px;
    height: 60px;
    overflow: hidden;
    padding: 0.2em;
    background-color: rgba(0, 0, 0, 0.219);
    margin: 0px 2px;
    transition: 0.2s;
}

.game-card .top-platforms .platform-link:hover {
    box-shadow: 0 0 7px 2px rgba(255, 255, 255, 0.38);
}

.game-buttons>a {
    padding: 20px 0;
    margin: 0.5em 0px;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    color: rgb(255, 255, 255) !important;
    font-weight: bolder;
    font-size: 0.8em;
}

.game-buttons>a:hover {
    background-color: rgba(255, 255, 255, 0.397);
}

@media (max-width: 600px) {
    .game-cover {
        height: 180px;
    }

    .game-card {
        width: 47%;
        height: 610px;
    }

    .game-title {
        font-size: 0.7em;
    }

    .game-icon {
        width: 200% !important;
    }

    .game-stats {
        font-size: 0.7em;
    }

    .rtp-percent h4 {
        font-size: 0.7em;
    }

    .top-platforms h4 {
        font-size: 0.6em;
    }

    .game-card .top-platforms .platform-link {
        width: 45px;
        height: 45px;
    }

    .demo {
        font-size: 0.65em;
    }

    .game-buttons {
        font-size: 0.7em;
    }

    .game-buttons > a {
        padding: 10px 0 !important;
    }
}