/* Body */

body {
    font-family: 'Montserrat';
    background: #536883;
    width: 100%;
    margin: 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.8);
}

/* Header */

header {
    width: 100%;
    padding: 0 0;
    background: linear-gradient(to bottom, #3d88ca, #2a5b86, #1e4261, #16334c, #1a1630);
    z-index: 999;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .left-container {
    margin-left: 2%;
    height: 80%;
}

.logo {
    height: 100%;
}

header nav {
    display: flex;
    margin-right: 0.5em;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 0.5em;
}

nav ul li a {
    font-size: small;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    padding: 0.4em;
    border-radius: 10px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.9); /* Sombra no texto */
    border: 2px solid rgba(255, 255, 255, 0.2); /* Borda sutil */
}

/* Home */

.hero {
    text-align: center;
    background: url('../assets/bg.png') no-repeat center center;
    background-size: cover;
    padding: 5em 1em;
    color: #fff;
}

.hero img {
    max-width: 100%;
    height: auto;
}

.hero-text {
    background-color: rgba(30, 30, 30, 0.7); /* Fundo semi-transparente escuro */
    color: #fff;
    border-radius: 10px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.9); /* Sombra no texto */
    border: 2px solid rgba(255, 255, 255, 0.2); /* Borda sutil */
    
}

/* Splitter */

#splitter {
    height: 3px;
    background: #24166d;
}

#splitter2 {
    height: 3px;
    background: #171523;
}

/* Games */

#games {
    padding: 1em 1em;
    background: linear-gradient(to bottom, #234d72, #44f6ff);
    text-align: center;
    padding-bottom: 3em;
}

#games h2 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
}

/* Horizontal Scrolling Games List */
.games-list {
    height: 80p;
}

/* Game Card */

.game-parent-mobile {
    background: #30638f;
    display: flex;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    height: 12em;
    width: 100%;
    margin-bottom: 2em;
}

.game-parent-pc {
    background: #30638f;
    display: flex;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    height: 14em;
    width: 100%;
    margin-bottom: 2em;
}

.game-image {
    background: #193f60;
    border-radius: 10px;
    display: flex;
    margin: 1em;
    padding: 0.6em;
}

.game-image-image {
    border-radius: 10px;
}

.game-info-mobile {
    text-align: center;
    background: #193f60;
    border-radius: 10px;
    width: 100%;
    margin: 1em;
    margin-left: 0;
}

.game-info-mobile h3 {
    margin-top: 2em;
    padding: 0.1em;
}

.game-info-pc {
    text-align: left;
    padding-left: 1.4em;
    background: #193f60;
    width: 100%;
    border-radius: 10px;
    margin: 1em;
    margin-left: 0;
}

.game-info-pc p {
    font-size: 0.8em;
}


/* Play Button */
.btn-play {
    display: inline-block;
    padding: 0.4em 0.5em;
    font-size: 1em;
    font-weight: bold;
    color: #fff;
    background: #6ec1e4;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

/* About */

#about {
    padding: 2em 1em;
    background-color: #1e1e2f;
    text-align: center;
    color: #fff;
}

.team {
    display: flex;
    justify-content: center;
    gap: 2em;
    flex-wrap: wrap;
}

.team-member {
    max-width: 250px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1em;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Estilo da Imagem Circular com Efeito de Gelo */
.profile-image {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(173, 216, 230, 0.5); /* Borda translúcida azul */
    box-shadow: 0 0 15px rgba(173, 216, 230, 0.8); /* Brilho ao redor */
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%; /* Faz a imagem ficar circular */
    filter: brightness(0.8); /* Escurece um pouco para o efeito */
}

/* Adiciona um filtro de gelo */
.profile-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/ice_effects/ice-effect-1.PNG') no-repeat center;
    background-size: cover;
    opacity: 0;
    pointer-events: none;
    border-radius: 50%;
}

/* Footer */

footer {
    background: #111;
    text-align: center;
    padding: 1em 0;
    font-size: 0.9em;
}


@media (min-width: 750px) {
    .game-parent-mobile {
        display: none;
    }
}

@media (max-width: 750px) {
    .game-parent-pc {
        display: none;
    }
}