* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
  --cor-principal: #B11226;
  --escura: #1F2024;
  --text-collor: #f2f2f2
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  background-color: black;
  font-family: "montserrat", "inter", sans-serif;
  color: var(--text-collor);
  padding-top: 80px;
  
}

main {
  padding: 50px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 768px) {
    body {
        padding-top: 50px;
    }

    main {
        padding-top: 10px;
    }

    .container {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 25px;
    }

    main {
        padding-top: 0px;
    }

    .container {
        padding: 0 12px;
    }
}

/* HEADER */


.site-header {
    background: black;
    border-bottom: 1px solid #2d2d32;
    padding: 12px 40px 12px 0px;
    display: flex;
    height: 80px;

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    z-index: 1000;
}

.header-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 350px;
    
}

.header-left {
    background-color: rgba(250, 250, 250, 0);
    border-bottom: 1px solid #2d2d32;
    width: 240px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
}

.header-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo {
    height: 70px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 5px red) drop-shadow(0 0 10px red);
}


.header-menu .nav-menu {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-menu a {
    font-size: 14px;
    color: #e5e5e5;
    font-weight: 800;
    text-transform: uppercase;
    transition: 0.2s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--cor-principal);
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: var(--cor-principal);
    transition: 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.header-search form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-search input {
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid #2d2d32;
    background-color: #202024;
    color: #fff;
    outline: none;
    width: 250px;
    transition: 0.2s;
}

.header-search input::placeholder {
    color: #888;
}

.header-search input:focus {
    border-color: var(--cor-principal);
}

.header-search button {
    padding: 10px 16px;
    border: none;
    border-radius: 10px;
    background: var(--cor-principal);
    color: #0f0f10;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.header-search button:hover {
    opacity: 0.9;
} 

@media (max-width: 1200px) {
    .header-container {
        gap: 16px;
    }

    .header-left {
        width: 210px;
        min-width: 210px;
        border-bottom: none;
    }

    .logo {
        height: 110px;
    }

    .header-right {
        gap: 16px;
    }

    .header-menu .nav-menu {
        gap: 12px;
    }

    .nav-menu a {
        font-size: 13px;
    }

    .header-search input {
        width: 210px;
    }
}

/* tablet */
@media (max-width: 992px) {
    .site-header {
        height: auto;
        min-height: 80px;
    }

    .header-container {
        height: auto;
        
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .header-left {
        width: 220px;
        min-width: 220px;
        height: 68px;
        border-bottom: none;padding: 12px 20px;
    }

    .logo {
        height: 95px;
    }

    .header-right {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .header-menu .nav-menu {
        justify-content: center;
        gap: 16px;
    }

    .header-search {
        width: 100%;
    }

    .header-search form {
        width: 100%;
    }

    .header-search input {
        width: 100%;
    }

    .header-search button {
        flex-shrink: 0;
    }

    body {
        padding-top: 150px;
    }
}

/* celular */
@media (max-width: 768px) {
    

    .header-left {
        width: 190px;
        min-width: 190px;
        height: 60px;
        border-bottom: none;
    }

    .logo {
        height: 82px;
    }

    .header-menu .nav-menu {
        justify-content: center;
        gap: 10px 14px;
    }

    .nav-menu a {
        font-size: 12px;
    }

    .header-search {
        display: none;
    }

    body {
        padding-top: 185px;
    }
}

@media (max-width: 480px) {
    .header-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .header-left {
        width: 100%;
        clip-path: none;
        display: flex;
        justify-content: center;
    }

    .logo {
        height: 90px;
        justify-content: center;
    }

    .header-menu .nav-menu {
        gap: 8px 12px;
    }

    .nav-menu a {
        font-size: 11px;
    }

    .header-search input {
        padding: 10px 12px;
        font-size: 14px;
    }

    .header-search button {
        padding: 10px 14px;
        font-size: 14px;
    }

    body {
        padding-top: 180px;
    }
}

/* HOME */

.home-section h2 {
    font-size: 15px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    padding: 10px 0px;
}

.songs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}

.song-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;

    background-color: #18181b;
    border: 1px solid #242427;
    border-radius: 5px;
    padding: 5px;

    transition: 0.2s;
}

.song-card:hover {
    background-color: #202024;
    transform: translateY(-2px);
}

.song-image img {
    width: 50px;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.songh-title {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.topalbuns-Hsection h2 {
    font-size: 20px;
    font-weight: 700;
    padding: 15px 0px;
}

.topalbuns-Hsection ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.albuns-pop {
    display: flex;
    width: 100%;
    overflow: auto;
    overflow-x: auto;
    scrollbar-width: none;
}

.albumpop-card {
    width: 180px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-radius: 7px;
    padding: 10px;
    transition: 0.2s;
}

.albumpop-card:hover {
    background-color: #202024;
    transform: translateY(-2px);
}

.albumpop-image img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    object-fit: cover;
    padding: 0;
    display: block;
}


.albumpop-title {
    font-size: 12px;
    font-weight: 700;
    padding: 0;
    margin: 0;
}

.albumpop-view {
    font-size: 12px;
    padding: 0;
    margin: 0;
    font-weight: 700;
    color: #999;
    
}

.artist-Hsection h2 {
    font-size: 20px;
    font-weight: 700;
    padding: 15px 0px;
}

.artist-Hsection ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.artist-pop {
    display: flex;
    gap: 10px;
    border-radius: 7px;
    padding: 12px;
    transition: 0.2s;
    overflow: auto;
    overflow-x: auto;
    scrollbar-width: none;
    
}

.artistpop-card:hover {
    background-color: #202024;
    transform: translateY(-2px);
}

.artistpop-card {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.artistpop-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    padding: 0;
}

.artistpop-title {
    font-size: 12px;
    font-weight: 700;
    padding: 0;
    margin: 0;
}

.artistpop-view {
    font-size: 12px;
    padding: 0;
    margin: 0;
    font-weight: 700;
    color: #999;
    
}

.pagtitle {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.discography-page section {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.discography-page ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (max-width: 768px) {


    .songs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .songs-grid .song-card-link:nth-child(n+11) {
        display: none;
    }

    .albuns-pop {
        margin: 15px 0;
        gap: 14px;
    }

    .artist-pop {
        gap: 8px;
        padding: 8px 0;
    }
}

/* celular */
@media (max-width: 480px) {


    .songs-grid {
        grid-template-columns: 1fr;
    }

    .song-card {
        gap: 10px;
    }

    .song-image img {
        height: 45px;
    }

    .songh-title {
        font-size: 13px;
    }

    .topalbuns-Hsection h2,
    .artist-Hsection h2,
    .pagtitle {
        font-size: 18px;
    }

    .albuns-pop {
        margin: 12px 0;
        gap: 12px;
    }

    .albumpop-card {
        width: 140px;
        flex: 0 0 auto;
    }

    .artistpop-image img {
        width: 110px;
        height: 110px;
    }

    .artistpop-card {
        flex: 0 0 auto;
    }
}



/* Artistas */

.artistpage-card {
    background-color: var(--escura);
    border: 1px solid #242427;
    border-radius: 5px;
    padding: 10px;
    transition: 0.2s;
    box-sizing: border-box;
    width: 100%;
}

.artistpage-card:hover {
    background-color: #202024;
    transform: translateY(-2px);
}

.artistcard-page {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.artistcard-page a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    width: 100%;
}

.artisttext {
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    word-break: break-word;
    margin-top: 8px;
}

/* notebook/tablet grande */
@media (max-width: 992px) {
    .artistcard-page {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* tablet */
@media (max-width: 768px) {
    .artistcard-page {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .artistpage-card {
        padding: 8px;
    }

    .artisttext {
        font-size: 14px;
    }
}

/* celular */
@media (max-width: 480px) {
    .artistcard-page {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .artistpage-card {
        padding: 7px;
    }

    .artisttext {
        font-size: 13px;
    }
}

/* Song page */

.songpage-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
}

.songpage-card {
    display: flex;
    border-radius: 5px;
    padding: 5px;
    transition: 0.2s;
    list-style: none;
    padding-left: 0;
    gap: 10px;
}

.rank {
    font-size: 18px;
    font-weight: bold;
    color: #ccc;
    width: 30px;
    text-align: right;
    text-align: center;
}


.songpage-card:hover {
    transform: translateY(-2px);
}

.songpage-image img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.songpage-title {
    font-size: 14px;
    font-weight: 700;
    color: #eeeeee;
}

.songpage-view {
    font-size: 12px;
    padding: 0;
    margin: 0;
    font-weight: 700;
    color: #999;
}

/* notebook */
@media (max-width: 1200px) {
    .songpage-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* tablet grande */
@media (max-width: 992px) {
    .songpage-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* tablet */
@media (max-width: 768px) {
    .songpage-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .songpage-card {
        padding: 7px;
        gap: 8px;
    }

    .songpage-image img {
        width: 45px;
        height: 45px;
    }

    .rank {
        font-size: 16px;
        width: 26px;
        min-width: 26px;
    }

    .songpage-title {
        font-size: 13px;
    }

    .songpage-view {
        font-size: 11px;
    }
}

/* celular */
@media (max-width: 480px) {
    .songpage-grid {
        grid-template-columns: 1fr;
    }

    .songpage-card {
        padding: 6px;
    }

    .songpage-image img {
        width: 42px;
        height: 42px;
    }

    .rank {
        font-size: 15px;
        width: 24px;
        min-width: 24px;
    }

    .songpage-title {
        font-size: 12px;
    }

    .songpage-view {
        font-size: 11px;
    }
}

/* album page */

.albumpage-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
}

.albumpage-card {
    display: flex;
    flex-direction: column;
    border-radius: 5px;
    padding: 5px;
    transition: 0.2s;
    list-style: none;
    padding-left: 0;
    gap: 10px;
}


.albumpage-card:hover {
    transform: translateY(-2px);
}

.albumpage-image img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.albumpage-title {
    font-size: 14px;
    font-weight: 700;
    color: #eeeeee;
}

.albumpage-view {
    font-size: 12px;
    padding: 0;
    margin: 0;
    font-weight: 700;
    color: #999;
}

/* notebook */
@media (max-width: 1200px) {
    .albumpage-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* tablet grande */
@media (max-width: 992px) {
    .albumpage-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* tablet */
@media (max-width: 768px) {
    .albumpage-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .albumpage-card {
        gap: 8px;
    }

    .albumpage-title {
        font-size: 13px;
    }

    .albumpage-view {
        font-size: 11px;
    }
}

/* celular */
@media (max-width: 480px) {
    .albumpage-grid {
        grid-template-columns: 1fr;
    }

    .albumpage-title {
        font-size: 12px;
    }

    .albumpage-view {
        font-size: 11px;
    }
}

/*song page*/

.song-page {
    max-width: 1140px;
    margin: 30px auto 60px;
    padding: 0 20px;
}

.song-hero {
    position: relative;
    border-radius: 7px;
    overflow: hidden;
    margin-bottom: 30px;
    min-height: 120px;
}

.song-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(5px);
    transform: scale(1);
}

.song-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 20px;
    padding: 10px;
    min-height: 120px;
}

.song-cover img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 7px;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.song-info {
    color: white;
    padding-bottom: 8px;
    text-decoration: none;
}

.song-title {
    font-size: 30px;
    line-height: 1;
    margin-bottom: 20px;
    font-weight: 900;
    text-transform: uppercase;
}

.song-artist,
.song-album, .song-producers {
    margin-bottom: 8px;
    font-size: 16px;
}

.song-producers {
    margin-top: 50px;
}

.song-info {
    text-decoration: none;
}

.song-feature {
    margin-left: 10
    px;
}

.song-credits {
   
    padding: 5px;
    border-radius: 7px;
}

.song-info a {
    color: white;
    font-weight: 700;
    text-decoration: underline;
}

.song-info a:hover {
    color: #ff4d5a;
}

.song-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 28px;
}

.tab-btn {
    background: #2a2a2f;
    color: white;
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    display: inline-block;
}

.tab-btn.active {
    background: #c8102e;
}

.song-main {
    display: grid;
    grid-template-columns: 1.8fr 320px;
    gap: 40px;
}

.song-left {
    min-width: 0;
}

.song-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.song-section {
    margin-bottom: 34px;
}

.song-section h2 {
    font-size: 20px;
    margin-bottom: 16px;
    font-weight: 800;
    color: white;
}

.song-section h3, .slang-text {
    font-family: "inter", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #f2f2f2;
}

.lyrics-text {
    font-family: "inter", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    color: #E0E0E0;
}



.lyrics-text {
    white-space: pre-line;
}

.song-side-card {
    background: #17181d;
    border: 1px solid #2a2d34;
    border-radius: 10px;
    padding: 18px;
}

.song-side-card p {
    margin-bottom: 12px;
    color: #ddd;
    line-height: 1.7;
}

.song-side-card p:last-child {
    margin-bottom: 0;
}

.ad-box {
    height: 280px;
    background: #23242a;
    border: 1px solid #2a2d34;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-weight: 700;
}

.next-song-box {
    margin-top: 40px;
    padding: 20px;
    border-top: 1px solid #222;
}

.next-song-box h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.next-song-box a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.next-song-box a:hover {
    color: var(--cor-principal);
}

/* notebook */
@media (max-width: 1200px) {
    .song-main {
        grid-template-columns: 1.5fr 280px;
        gap: 28px;
    }

    .song-cover img {
        width: 100%;
        height: 100%;
    }

    .song-title {
        font-size: 26px;
    }
}

/* tablet */
@media (max-width: 992px) {
    .song-page {
        margin: 20px auto 50px;
    }

    .song-hero-content {
        align-items: center;
    }

    .song-cover img {
        width: 100%;
        height: 100%;
    }

    .song-title {
        font-size: 24px;
        margin-bottom: 14px;
    }

    .song-artist,
    .song-album,
    .song-producers {
        font-size: 15px;
    }

    .song-producers {
        margin-top: 20px;
    }

    .song-main {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .song-right {
        order: 2;
    }
}

/* celular */
@media (max-width: 768px) {
    .song-page {
        padding: 0 14px;
        margin: 15px auto 40px;
    }

    .song-hero {
        min-height: auto;
        margin-bottom: 20px;
    }

    .song-hero-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 14px;
        padding: 14px;
    }

    .song-cover img {
        width: 100%;
        height: 100%;
    }

    .song-title {
        font-size: 20px;
        line-height: 1.1;
        margin-bottom: 12px;
    }

    .song-artist,
    .song-album,
    .song-producers {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .song-producers {
        margin-top: 14px;
    }

    .song-tabs {
        gap: 8px;
        margin-bottom: 20px;
    }

    .tab-btn {
        flex: 1;
        text-align: center;
        padding: 11px 14px;
        font-size: 14px;
    }

    .song-main {
        gap: 20px;
    }

    .song-section {
        margin-bottom: 26px;
    }

    .song-section h2 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .song-section h3,
    .slang-text {
        font-size: 14px;
    }

    .lyrics-text {
        font-size: 16px;
        line-height: 1.5;
    }
}

/* celular pequeno */
@media (max-width: 480px) {
    .song-page {
        padding: 0 12px;
    }

    .song-hero-content {
        padding: 12px;
    }

    .song-cover img {
        width: 100%;
        height: 100%;
    }

    .song-title {
        font-size: 18px;
    }

    .song-artist,
    .song-album,
    .song-producers {
        font-size: 13px;
    }

    .tab-btn {
        padding: 10px 12px;
        font-size: 13px;
    }

    .song-section h2 {
        font-size: 17px;
    }

    .song-section h3,
    .slang-text {
        font-size: 13px;
    }

    .lyrics-text {
        font-size: 15px;
    }

    .song-side-card {
        padding: 14px;
    }
}

/* artist page */

.artist-page {
    max-width: 1180px;
    margin: 30px auto 60px;
    padding: 0 20px;
}

.artist-hero {
    position: relative;
    border-radius: 7px;
    overflow: hidden;
    margin-bottom: 30px;
}

.artist-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(8px);
    transform: scale(1.08);
}

.artist-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 24px;
    padding: 10px;
}

.artist-cover img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.artist-info {
    color: #fff;
    padding-bottom: 6px;
}

.artist-title {
    font-size: 44px;
    line-height: 1;
    margin-bottom: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.album-artist,
.artist-info p {
    margin-bottom: 8px;
    font-size: 16px;
}

.artist-info a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.artist-info a:hover {
    color: #c8102e;
}

.artist-main {
    display: grid;
    grid-template-columns: 1.8fr 340px;
    gap: 36px;
}

.section-label {
    display: inline-block;
    background: #c8102e;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    padding: 10px 14px;
    border-radius: 6px;
    margin-bottom: 18px;
}

.tracklist {
    list-style: none;
    margin: 0;
    padding: 0;
}

.track-item {
    background: #17181d;
    border: 1px solid #2a2d34;
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 8px;
    transition: 0.2s;
}

.track-item:hover {
    transform: translateY(-1px);
    border-color: #3a3f4a;
}

.track-item a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
}

.track-item a:hover {
    color: #c8102e;
}

.track-features {
    color: #bdbdbd;
    font-size: 14px;
}

.artist-albums-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.artist-album-card {
    background: #17181d;
    border: 1px solid #2a2d34;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    transition: 0.2s;
}

.artist-album-card:hover {
    transform: translateY(-2px);
    border-color: #3a3f4a;
}

.artist-album-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.artist-album-info {
    padding: 12px;
}

.artist-album-info h3 {
    font-size: 15px;
    margin-bottom: 6px;
    font-weight: 700;
}

.artist-album-info p {
    font-size: 13px;
    color: #aaa;
}

@media (max-width: 900px) {
    .album-hero-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .album-cover img {
        width: 180px;
        height: 180px;
    }

    .album-title {
        font-size: 34px;
    }

    .album-main {
        grid-template-columns: 1fr;
    }
}

/*album page*/

.album-page {
    width: 100%;
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
}


.album-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 36px;
    align-items: start;
}

.album-left {
    position: sticky;
    top: 110px;
}

.album-cover-fixed {
    width: 100%;
    border-radius: 7px;
    display: block;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.album-right {
    min-width: 0;
    width: 100%;
}

.album-header {
    min-height: 150px;
    border-radius: 7px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    margin-bottom: 20px;
    position: relative;
}

.album-header-content {
    padding: 26px 24px;
    color: #fff;
}

.album-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.album-meta {
    font-size: 16px;
    color: #f0f0f0;
    margin-bottom: 8px;
}

.album-meta a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.album-meta a:hover {
    color: #c8102e;
}

.album-extra {
    font-size: 14px;
    color: #d5d5d5;
    margin-bottom: 6px;
}

.section-label {
    display: inline-block;
    background: #c8102e;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    padding: 10px 14px;
    border-radius: 6px;
    margin-bottom: 18px;
}

.tracklist {
    list-style: none;
    margin: 0;
    padding: 0;
}

.track-item {
    background: #17181d;
    border: 1px solid #2a2d34;
    border-radius: 8px;
    padding: 16px 18px;
    margin-bottom: 8px;
    transition: 0.2s;
}

.track-item:hover {
    transform: translateY(-1px);
    border-color: #3a3f4a;
}

.track-item a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
}

.track-item a:hover {
    color: #c8102e;
}

.track-features {
    color: #bdbdbd;
    font-size: 14px;
}

@media (max-width: 900px) {
    .album-layout {
        grid-template-columns: 1fr;
    }

    .album-left {
        position: static;
    }

    .album-cover-fixed {
        max-width: 320px;
    }

    .album-title {
        font-size: 34px;
    }
}

/* search page */

.search-page h1 {
    font-size: 20px;
    margin-top: 10px;
}

.resultados {
    margin-top: 50px;
}

.search-section {
    margin-bottom: 35px;
}

.search-section h2 {
    margin-bottom: 12px;
    font-size: 22px;
}

.search-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.search-section li {
    margin-bottom: 8px;
}

/* Footer */

.site-footer {
    border-top: 1px solid #1f1f1f;
    padding: 18px 30px;
    background: #000;
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-logo {
    height: 50px;
    width: auto;
    display: block;
}

.footer-center {
    display: flex;
    gap: 35px;
}

.footer-center a {
    color: #d6d6d6;
    text-decoration: none;
    font-size: 13px;
}

.footer-center a:hover {
    color: #fff;
}

.footer-right p {
    color: #8b8b8b;
    font-size: 13px;
    margin: 0;
}

.legal-page {
    max-width: 900px;
    margin: 50px auto;
    padding: 0 20px;
}

.legal-page h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #fff;
}

.legal-page h2 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 35px;
    margin-bottom: 12px;
    color: #fff;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #d6d6d6;
    margin-bottom: 14px;
}

.legal-page ul {
    margin: 0 0 20px 22px;
    padding: 0;
}

.legal-page li {
    font-size: 16px;
    line-height: 1.8;
    color: #d6d6d6;
    margin-bottom: 8px;
}

.legal-page a {
    color: #fff;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #c8102e;
}

.legal-page strong {
    color: #fff;
}

/* ===== BASE ADMIN ===== */
.admin-container {
    max-width: 1100px;
    margin: 32px auto 60px;
    padding: 0 20px;
}

.admin-container,
.admin-container * {
    box-sizing: border-box;
}

.admin-container p,
.admin-container h2,
.admin-container h3,
.admin-container label,
.admin-container input,
.admin-container select,
.admin-container textarea,
.admin-container button,
.admin-container a {
    font-family: Arial, Helvetica, sans-serif;
}

/* topo simples */
.admin-topbar {
    margin-bottom: 20px;
}

.admin-topbar p {
    margin: 0 0 10px;
    color: #d6d6d6;
    font-size: 14px;
}

.admin-topbar-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.admin-topbar-nav a {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 999px;
    background: #181818;
    border: 1px solid #2a2a2a;
    color: #e8e8e8;
    text-decoration: none;
    font-size: 13px;
    transition: 0.2s;
}

.admin-topbar-nav a:hover {
    background: #222;
    border-color: #3b3b3b;
}

/* ===== CARDS ===== */
.admin-section {
    background: #111;
    border: 1px solid #262626;
    border-radius: 16px;
    padding: 22px;
    margin-bottom: 22px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

.admin-section h2,
.admin-section h3 {
    margin: 0 0 16px;
    color: #fff;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.admin-section h2 {
    font-size: 22px;
}

.admin-section h3 {
    font-size: 18px;
}

.admin-section p {
    color: #cfcfcf;
    line-height: 1.65;
    margin: 0 0 10px;
}

.admin-section strong {
    color: #fff;
}

/* ===== ALERTAS ===== */
.flash-success {
    background: rgba(20, 120, 60, 0.16);
    border: 1px solid rgba(60, 180, 100, 0.35);
    color: #a9f0c5;
    padding: 12px 14px;
    border-radius: 12px;
    margin-bottom: 18px;
    font-weight: 700;
}

/* ===== FORM ===== */
form[method="POST"] {
    display: block;
}

.admin-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.admin-field label {
    color: #d8d8d8;
    font-size: 13px;
    font-weight: 700;
}

.admin-field input,
.admin-field select,
.admin-field textarea,
#producer-search,
#new_producer_single {
    width: 100%;
    background: #181818;
    border: 1px solid #2f2f2f;
    color: #fff;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 14px;
    outline: none;
    transition: 0.2s;
}

.admin-field input:focus,
.admin-field select:focus,
.admin-field textarea:focus,
#producer-search:focus,
#new_producer_single:focus {
    border-color: #c8102e;
    box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.18);
}

.admin-field textarea {
    min-height: 130px;
    resize: vertical;
    line-height: 1.65;
}

/* ===== GRID DOS DADOS ===== */
.admin-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 18px;
}

.admin-grid .admin-field {
    margin-bottom: 0;
}

.admin-field-full {
    grid-column: 1 / -1;
}

/* ===== BLOCO DE CONTEXTO ===== */
/* BLOCO DE CONTEÚDO */
.admin-content-section {
    background: #111;
    border: 1px solid #262626;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.admin-content-section h2 {
    font-size: 22px;
    margin: 0 0 6px;
    color: #fff;
}

.admin-content-section p {
    margin: 0 0 18px;
    color: #cfcfcf;
    line-height: 1.6;
}

.admin-content-fields {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.admin-content-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.admin-content-field label {
    font-size: 15px;
    font-weight: 700;
    color: #f2f2f2;
}

.admin-content-field textarea,
.admin-content-field input {
    width: 100%;
    display: block;
    background: #f3f3f3;
    color: #111;
    border: 1px solid #bdbdbd;
    border-radius: 6px;
    padding: 12px 14px;
    font-size: 14px;
    line-height: 1.6;
    box-sizing: border-box;
    resize: vertical;
    outline: none;
}

.admin-content-field textarea:focus,
.admin-content-field input:focus {
    border-color: #c8102e;
    box-shadow: 0 0 0 2px rgba(200, 16, 46, 0.15);
}

#description_text {
    min-height: 160px;
}

#lyrics_text {
    min-height: 260px;
}

#slang_text {
    min-height: 170px;
}

#meaning_text {
    min-height: 220px;
}

#ai-status {
    margin-top: -6px;
    margin-bottom: 8px;
    font-size: 13px;
    color: #9f9f9f;
}

/* ===== BLOCO IA ===== */
.admin-ia-note {
    background: linear-gradient(180deg, rgba(200,16,46,0.10), rgba(200,16,46,0.03));
    border: 1px solid rgba(200,16,46,0.22);
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 18px;
}

.admin-ia-note p {
    margin: 0;
    color: #e5d7da;
}

#ai-status {
    min-height: 20px;
    margin-top: 10px;
    font-size: 13px;
    color: #a9a9a9;
}

/* ===== PRODUTORES ===== */
.producer-results,
.selected-producers {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.producer-option,
.producer-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #181818;
    border: 1px solid #2f2f2f;
    color: #fff;
    border-radius: 999px;
    padding: 9px 12px;
    font-size: 13px;
    transition: 0.2s;
}

.producer-option {
    cursor: pointer;
}

.producer-option:hover {
    background: #202020;
    border-color: #474747;
}

.producer-tag {
    background: rgba(200, 16, 46, 0.12);
    border-color: rgba(200, 16, 46, 0.32);
}

.remove-producer {
    border: none;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    padding: 0;
}

.producer-create-row {
    display: flex;
    gap: 10px;
}

.producer-create-row input {
    flex: 1;
}

/* ===== AÇÕES ===== */
.admin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.editor-button,
.admin-btn,
#add-new-producer {
    border: none;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.2s;
}

.editor-button button[type="submit"],
.admin-btn-primary {
    background: #c8102e;
    color: #fff;
}

.editor-button button[type="submit"]:hover,
.admin-btn-primary:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
}

.editor-button button[name="action"][value="save_back"],
.admin-btn-secondary {
    background: #2a2a2a;
    color: #fff;
}

.editor-button button[name="action"][value="save_back"]:hover,
.admin-btn-secondary:hover {
    background: #353535;
}

.editor-button  button[name="action"][value="save_next"] {
    background: #fff;
    color: #111;
}

.editor-button  button[name="action"][value="save_next"]:hover {
    background: #ececec;
}

/* ===== REGRAS ÚTEIS PRA ESTRUTURA ATUAL ===== */
hr {
    border: none;
    border-top: 1px solid #222;
    margin: 22px 0;
}

br {
    display: none;
}

input[type="hidden"] {
    display: none !important;
}

/* links gerais do admin */
.admin-container a {
    color: #fff;
    text-decoration: none;
}

.admin-container a:hover {
    color: #ff5c74;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 900px) {
    .admin-grid,
    .admin-context-list {
        grid-template-columns: 1fr;
    }

    .producer-create-row,
    .admin-actions {
        flex-direction: column;
    }

    button,
    #add-new-producer {
        width: 100%;
    }
}