/* NAVBAR */

.navbar {
    background-color: #1C1533;
    /* Painéis e caixas */
}

.navbar .nav-link {
    color: #F5F5F7;
    font-size: 1.8rem;
    margin: 0 15px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.navbar .nav-link:hover {
    transform: scale(1.15);
    /* Cor secundária (hover) */
}

.navbar img {
    width: 60px;
    height: 60px;
    margin-right: 10px;
}


/* FOOTER */

footer {
    background-color: #1C1533;
    padding: 40px 0;
    text-align: center;
    color: #B0A9C1;
}

.footer-link {
    color: #3EC1D3;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #FFD54F;
    /* Destaques */
}

/* ÍCONES DO FOOTER */
.icon-container {
    position: relative;
    display: inline-block;
    width: 25px;
    height: 25px;
}

.footer-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 25px;
    height: 25px;
    transition: opacity 0.3s ease;
}

.icon-default {
    opacity: 1;
}

.icon-hover {
    opacity: 0;
}

.icon-container:hover .icon-default {
    opacity: 0;
}

.icon-container:hover .icon-hover {
    opacity: 1;
}

/* container */
.page {
    max-width: 1150px;
    margin: 120px auto 60px;
    padding: 0 18px;
    text-align: center;
}

#top10 h2 {
    font-size: 1.8rem;
    margin-bottom: 6px;
    color: #E41C78;
    font-weight: 700;
}

.lead {
    color: #B0A9C1;
    margin: 0 auto 18px;
    max-width: 720px;
}



body {
    background-color: #0F0A1E;
    color: #F5F5F7;
    padding-top: 130px;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    padding-top: 0;
}

/* base */
* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

/* NAVBAR */

.navbar {
    background-color: #1C1533;
    /* Painéis e caixas */
}

.navbar .nav-link {
    color: #F5F5F7;
    font-size: 1.8rem;
    margin: 0 15px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.navbar .nav-link:hover {
    transform: scale(1.15);
    /* Cor secundária (hover) */
}

.navbar img {
    width: 60px;
    height: 60px;
    margin-right: 10px;
}

/* container */
.page {
    max-width: 1150px;
    margin: 120px auto 60px;
    padding: 0 18px;
    text-align: center;
}

#top10 h2 {
    font-size: 1.8rem;
    margin-bottom: 6px;
    color: #E41C78;
    font-weight: 700;
}

.lead {
    color: #B0A9C1;
    margin: 0 auto 18px;
    max-width: 720px;
}

/* layout duas colunas */
.top10-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 32px;
    margin-top: 30px;
    align-items: start;
}

/* coluna empilha 5 items */
.col {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* item */
.track-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #1C1533;
    border-radius: 10px;
    padding: 12px;
    box-shadow: 0 6px 0 rgba(0, 0, 0, 0.25) inset, 0 8px 24px rgba(0, 0, 0, 0.45);
    width: 100%;
    transition: transform .18s ease, box-shadow .18s ease;
}

/* cover */
.cover {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.cover img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 6px;
}

/* texto */
.meta {
    flex: 1;
    text-align: left;
    padding-left: 4px;
}

.title {
    font-weight: 700;
    color: #F5F5F7;
    font-size: 0.98rem;
    margin-bottom: 4px;
}

.sub {
    font-size: 0.85rem;
    color: #B0A9C1;
    line-height: 1.12;
}

.sub.artist {
    opacity: 0.95
}

/* votos */
.votes {
    width: 72px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 72px;
    justify-content: center;
}

.vote-arrow {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #FFD54F;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.25);
}

.vote-arrow img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
}

.vote-count {
    background: #311981;
    color: #F5F5F7;
    padding: 4px 8px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.2);
}

.track-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}


/* FOOTER */

footer {
    background-color: #1C1533;
    padding: 40px 0;
    text-align: center;
    color: #B0A9C1;
}

.footer-link {
    color: #3EC1D3;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #FFD54F;
    /* Destaques */
}

/* ÍCONES DO FOOTER */
.icon-container {
    position: relative;
    display: inline-block;
    width: 25px;
    height: 25px;
}

.footer-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 25px;
    height: 25px;
    transition: opacity 0.3s ease;
}

.icon-default {
    opacity: 1;
}

.icon-hover {
    opacity: 0;
}

.icon-container:hover .icon-default {
    opacity: 0;
}

.icon-container:hover .icon-hover {
    opacity: 1;
}