@font-face {
    font-family: 'Godnirium';
    src: url('../fonts/Godnirium-Regular.ttf') format('truetype');
}

body {
    font-family: 'Godnirium', Arial, sans-serif;
    background-image: url("/assets/img/background.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    background-attachment: fixed;

    min-height: 100vh;
}
.hero-main {
    min-height: 85vh;
    background-image: linear-gradient(
        rgba(10, 10, 20, 0.75),
        rgba(10, 10, 20, 0.9)
    ),
    url("../img/hero-bg.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 60px 20px;
}

.studio-name {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 750px;
    margin: 0 auto;
    opacity: 0.9;
}

.hero-buttons .btn {
    min-width: 180px;
}

@media (max-width: 768px) {

    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }

}
.game-card {
    position: relative;

    width: 260px;
    height: 260px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;
    overflow: hidden;

    text-decoration: none;

    padding: 16px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

/* Background real */
.game-card::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image: inherit;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    transition:
        filter 0.3s ease,
        transform 0.3s ease;

    z-index: 0;
}

/* Imagen del título */
.game-title-image {
    position: absolute;

    left: 50%;
    bottom: 16px;

    transform: translateX(-50%);

    max-width: calc(100% - 32px);
    max-height: calc(100% - 32px);

    width: auto;
    height: auto;

    object-fit: contain;

    display: block;

    z-index: 1;

    pointer-events: none;

    transition:
        bottom 0.3s ease,
        transform 0.3s ease;
}

/* Hover */
.game-card:hover {
    transform: translateY(-6px);

    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}
.game-card:hover .game-title-image {
    bottom: 50%;
    transform: translate(-50%, 50%);
}
.game-card:hover::before {
    filter: blur(4px);
    transform: scale(1.05);
}

.navbar-logo {
    height: 40px;
    width: auto;

    object-fit: contain;

    display: block;
}