/* Estilos para a página de promoção de releases */
:root {
    /* Cores de Texto */
    --texto-principal: #D4A35A;
    --texto-secundario: #C49355;
    --titulos-destaques: #E6B980;
    --texto-fundo-claro: #8A6642;
    
    /* Cores de Fundo */
    --fundo-principal: #0A0A0A;
    --sobreposicao-fundo: rgba(0, 0, 0, 0.85);
    --player-musica: #121212;
    --cartoes-destaque: #151515;
    --cabecalhos-secoes: #0F0F0F;
    --overlay-imagem: rgba(0, 0, 0, 0.7);
    
    /* Cores de Destaque */
    --destaque-principal: #E6A95F;
    --hover-destaque: #D49B56;
    --contornos-simbolos: #E6A95F;
    --bordas-divisorias: #8A6642;
}

#bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

#bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(15px) brightness(0.3);
}

#content {
    position: relative;
    z-index: 1;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 100px;
}

#content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 0 auto;
    max-width: 600px;
}

#cover {
    text-align: center;
    margin-bottom: 20px;
}

#cover img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--destaque-principal);
}

#album-info {
    text-align: center;
    margin-bottom: 30px;
}

#bundle-name {
    font-size: 2.5rem;
    color: var(--titulos-destaques);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

#bundle-name strong {
    color: var(--destaque-principal);
    font-size: 3rem;
    display: block;
    margin-bottom: 5px;
}

#links {
    margin-bottom: 30px;
}

.row-flex {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    background-color: var(--cartoes-destaque);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--bordas-divisorias);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.row-flex:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.col-xs-6, .col {
    flex: 1;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.col-xs-6:first-child, .col:first-child {
    background-color: rgba(0, 0, 0, 0.2);
    border-right: 1px solid var(--bordas-divisorias);
}

.shop-img-res {
    max-width: 100%;
    height: auto;
    max-height: 40px;
}

.hover-btn {
    display: inline-block;
    padding: 10px 20px;
    color: var(--texto-principal);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    width: 100%;
    text-align: center;
}

.hover-btn:hover {
    color: var(--destaque-principal);
}

#share {
    margin-bottom: 30px;
}

.no-m {
    margin: 0;
}

.oswald {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--texto-secundario);
    text-align: center;
    margin: 15px 0;
}

.privacy-policy-link {
    text-align: center;
    margin-bottom: 20px;
    font-size: 0.8rem;
}

.privacy-policy-link a {
    color: var(--texto-secundario);
    text-decoration: underline;
}

.release-description {
    text-align: center;
    margin-bottom: 30px;
    color: var(--texto-secundario);
    line-height: 1.6;
    padding: 0 20px;
}

.release-date {
    text-align: center;
    margin-bottom: 20px;
    font-style: italic;
    color: var(--texto-fundo-claro);
}

.release-tracklist {
    background-color: var(--cartoes-destaque);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    border: 1px solid var(--bordas-divisorias);
}

.release-tracklist h3 {
    color: var(--destaque-principal);
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.track-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--bordas-divisorias);
}

.track-item:last-child {
    border-bottom: none;
}

.track-number {
    color: var(--destaque-principal);
    font-weight: bold;
    margin-right: 10px;
}

.track-title {
    flex: 1;
}

.track-duration {
    color: var(--texto-fundo-claro);
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-in-out forwards;
}

/* Responsividade */
@media (max-width: 768px) {
    #content-grid {
        max-width: 100%;
    }
    
    #bundle-name {
        font-size: 2rem;
    }
    
    #bundle-name strong {
        font-size: 2.5rem;
    }
}
