* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    scrollbar-width: none;
}

body {
    background: radial-gradient(circle at top, #1e1b4b, #0d1117);
    color: #f8fafc;
    overflow: auto;
    min-height: 100vh;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #f8fafc, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.05em;
}

p {
    font-size: 1.2rem;
    color: #94a3b8;
    max-width: 400px;
    line-height: 1.6;
    margin: 0 auto;
}

/* ================= Tela de Carregamento ================= */

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #0d1117;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.logo-symbol {
    font-size: 4.5rem;
    font-weight: 800;
    color: #ec4899;
    /* Rosa vibrante */
    text-shadow: 0 0 25px rgba(236, 72, 153, 0.6);
    /* Transição suave para o efeito de ampliação */
    transition: transform 0.6s cubic-bezier(0.85, 0, 0.15, 1), opacity 0.6s ease;
}

/* Classe adicionada ao final do progresso para simular o zoom do logo */
.logo-symbol.expand {
    transform: scale(25);
    opacity: 0;
}

.progress-bar-container {
    width: 240px;
    height: 6px;
    background-color: #1e293b;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
    transition: opacity 0.4s ease;
}

.progress-bar {
    height: 100%;
    width: 0%;
    /* Inicia zerado e cresce pelo JS */
    background: linear-gradient(90deg, #ec4899, #f472b6, #fb7185);
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(236, 72, 153, 0.8);
}

.progress-bar-container.fade-out {
    opacity: 0;
}

.hidden {
    display: none !important;
}

/* Inicio*/

header {
    position: fixed;
    justify-content: right;
    width: 100%;
    display: flex;
    padding-right: 15px;
    z-index: 1500;
    pointer-events: none;
}

.start-presentation {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 1;
    padding: 2rem;
    width: 100%;
    min-height: 100vh;
    margin-bottom: 200px;
}

#hi {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #f8fafc, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.05em;
}

#header-h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #f8fafc, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.05em;
    text-shadow: 0 0 25px rgba(236, 72, 153, 0.6);
    cursor: pointer;
    transition: transform 0.2s ease, text-shadow 0.2s ease;
    z-index: 1000;
    pointer-events: auto;
}

#header-h1:hover {
    transform: scale(1.1);
    text-shadow: 0 0 35px rgba(236, 72, 153, 0.8);
    z-index: 1000;
}

/* Sidebar Menu */
.side-menu {
    height: 100vh;
    width: 250px;
    position: fixed;
    z-index: 2000;
    top: 0;
    right: -250px;
    /* Hidden off-screen right */
    background-color: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(10px);
    overflow-x: hidden;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding-top: 60px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

.side-menu.open {
    right: 0;
}

.side-menu ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.side-menu ul li {
    padding: 8px 8px 8px 32px;
    z-index: 1000;
}

.side-menu ul li a {
    text-decoration: none;
    font-size: 1.2rem;
    color: #94a3b8;
    display: block;
    transition: color 0.3s ease, transform 0.3s ease;
    z-index: 1000;
}

.side-menu ul li a:hover {
    color: #f8fafc;
    transform: translateX(10px);
}

.side-menu .close-btn {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 40px;
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
    z-index: 1000;
}

.side-menu .close-btn:hover {
    color: #ec4899;
    transform: scale(1.2);
}

.music {
    position: relative;
    top: 7px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    opacity: 1;
    padding: 2rem;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 60px;
}

#start_music_div {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #f8fafc, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.05em;
    text-align: center;
}

.music_list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 2rem;
}

.too_sweat_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

#too_sweat_img {
    width: 200px;
    height: 200px;
    border-radius: 10px;
}

#play_button_img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.play_button {
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.a_ultima_lagrima_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

#a_ultima_lagrima_img {
    width: 200px;
    height: 200px;
    border-radius: 10px;
}

.play_button_a_ultima_lagrima {
    background-color: transparent;
    border: none;
    cursor: pointer;
}

#play_button_img_a_ultima_lagrima {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.terceira_musica_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

#terceira_musica_img {
    width: 200px;
    height: 200px;
    border-radius: 10px;
}

.play_button_terceira_musica {
    background-color: transparent;
    border: none;
    cursor: pointer;
}

#play_button_img_terceira_musica {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

/* ================= Reveal Animation ================= */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Favorite Games */

.favorite_games {
    position: relative;
    top: 7px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    opacity: 1;
    padding: 2rem;
    width: 100%;
    min-height: 100vh;
    box-sizing: border-box;
}


.game_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.game_container img {
    width: 200px;
    height: 200px;
    border-radius: 10px;
}

.game_list {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 2rem;
}