/* Estilos Gerais */
:root {
    --primary: #2A9D8F;
    --secondary: #264653;
    --accent: #E9C46A;
    --danger: #E76F51;
    --bamboo: #87A96B;
    --background: #F0F3BD;
    --light: #FFFFFF;
}

* {
    margin: 0;
    box-sizing: border-box;
}

.text{
    color: #ffff;
    font-weight: bold;
}

html {
    touch-action: manipulation;
}

body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    background: var(--secondary);
    color: var(--light);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin: 0;
    padding: 20px;
}

/* Header */
.main-header {
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    font-weight: bold;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
    text-align: center;
    margin-left: 7px;
}

.logo {
    width: 50px;
    height: 50px;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: var(--light);
    text-decoration: none;
    transition: opacity 0.3s;
}

.main-nav a:hover {
    opacity: 0.8;
    color: #ffc636;
}
/* final do header */

/* button de play */
.play-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 18px;
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s, background 0.3s;
    margin-top: 2rem;
}

.play-button:hover {
    background:  #ffc636;
    color: #222020da;
    transform: translateY(-2px);
}


/* Página Inicial */
.start-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.start-content {
    text-align: center;
    animation: fadeIn 1s ease-in;
}

.game-logo img {
    width: 150px;
    margin-bottom: 1rem;
}

/* Footer */
.main-footer {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    text-align: center;
    color: #ffffff;
    font-weight: bold;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.social-icons a {
    color: var(--light);
    font-size: 1.5rem;
    transition: opacity 0.3s;
}

.social-icons a:hover {
    opacity: 0.8;
    color: #ffc123;
}
/* final do footer */


/* Media para telas */
@media (max-width: 768px) {
    .main-header {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .game-logo img {
        width: 100px;
    }

    .play-button {
        padding: 0.8rem 2rem;
    }
}

