* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #141414;
    color: #fff;
    font-family: Arial, sans-serif;
    transition: 0.3s;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
}

.logo {
    color: #e50914;
    font-size: 32px;
    font-weight: bold;
}

/* BOTÃO DARK MODE */
.theme-toggle {
    background: none;
    border: 1px solid #fff;
    color: #fff;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 5px;
}

/* TÍTULO */
main {
    text-align: center;
    margin-top: 60px;
}

h2 {
    font-size: 28px;
    margin-bottom: 40px;
}

/* PERFIS */
.profiles {
    display: flex;
    justify-content: center;
    gap: 30px;
    list-style: none;
}

.profile-select {
    background: none;
    border: none;
    cursor: pointer;
    text-align: center;
}

/* IMAGENS */
.profile-select img {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    transition: 0.3s;
}

/* NOME */
.profile-select span {
    display: block;
    margin-top: 10px;
    color: #aaa;
}

/* HOVER ESTILO NETFLIX */
.profile-select:hover img {
    transform: scale(1.1);
    border: 3px solid #fff;
}

.profile-select:hover span {
    color: #fff;
}

/* LIGHT MODE */
.light-mode {
    background: #f5f5f5;
    color: #000;
}

.light-mode .logo {
    color: #e50914;
}

.light-mode .theme-toggle {
    border: 1px solid #000;
    color: #000;
}