

body{
	background-color: black;

	
	
}

@font-face{
	font-family:"GameFont";
	src: url("games/jogo-das-palavras/game_assets/momo_trust_sans/fonts/otf/MomoTrustSans-Regular.otf");

}
a, .game-card, .close-button, #open-privacy {

}
header {
    text-align: center;
    padding: 40px 0 10px 0;
    font-family: "GameFont", sans-serif;
    color: white;
}
#ui-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    width: 100%;
}
#ad-container {
    margin-top: 20px;
    width: 100%;
    max-width: 728px;
    display: none;
}

.ad-placeholder {
    background-color: #1a1a1a;
    border: 1px dashed #444;
    color: #666;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: sans-serif;
    border-radius: 4px;
}

#game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 250px));
    gap: 30px;
    padding: 40px;
    justify-content: center;
    flex:1;
}








.card-info {
    padding: 15px;
    font-family: "GameFont", sans-serif;
}

.card-info h3 { margin: 0 0 10px 0; font-size: 1.1em; }
.card-info p { margin: 0; font-size: 0.85em; color: #aaa; }

.lock-badge {
    background: #444;
    padding: 5px;
    font-size: 0.7em;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-block;
    border-radius: 4px;
}

.modal {
    display: none; 
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.8);
}

.modal-content {
    background-color: #222;
    color: #fff;
    margin: 10% auto;
    padding: 20px;
    width: 80%;
    max-width: 600px;
    border-radius: 8px;
    position: relative;
}

.close-button {
    position: absolute;
    right: 20px; top: 10px;
    font-size: 28px;
    cursor: pointer;
}
#game-footer a{
	color:white;
	text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
	}
#game-footer a:hover {
   color: #ff4757;
}
#game-footer{
	position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    background-color: rgba( 61, 64, 61, 1);
    text-align: center;
    z-index: 100;
}


.content-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    color: white;
    font-family: sans-serif;
    line-height: 1.6;
}

.content-container h1 {
    color: #ff4757;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
}

.content-container h2 {
    margin-top: 30px;
    color: #eee;
}

.back-button {
    display: inline-block;
    margin-top: 40px;
    color: #ff4757;
    text-decoration: none;
    font-weight: bold;
}

.citacao-especial {
    margin: 30px 0;
    padding: 20px;
    background: rgba(255, 71, 87, 0.1);
    border-left: 5px solid #ff4757; 
    font-style: italic;
    font-size: 1.2rem;
    color: #ddd;
}

.citacao-especial span {
    display: block;
    margin-top: 10px;
    font-size: 0.9rem;
    font-weight: bold;
    color: #ff4757;
    font-style: normal;
}
.back-button:hover {
    text-decoration: underline;
}
.ovelha-andante {
    position: fixed;
    bottom: 80px;
    left: -130px;
    z-index: 50;
    pointer-events: none;
    
    animation: andar 20s linear infinite;
}

#lyon-ovelha {
    display: block;
    cursor: pointer;
    pointer-events: auto;
 
    animation: saltar 0.5s ease-in-out infinite alternate;
}

@keyframes andar {
    from { transform: translateX(0); }
    to { transform: translateX(calc(100vw + 150px)); }
}

@keyframes saltar {
    from { transform: translateY(0); }
    to { transform: translateY(-30px); }
}

.ovelha-andante:hover, 
.ovelha-andante:hover #lyon-ovelha {
    animation-play-state: paused;
}