* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0a0a0a;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

.mhg-index-wrapper {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    padding-bottom: 80px;
}

/* =====================================
   1. WHATSAPP CTA BUTTON
   ===================================== */
.mhg-whatsapp-cta {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    margin: 20px 16px;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    text-decoration: none;
}

.mhg-whatsapp-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.mhg-whatsapp-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.mhg-whatsapp-text h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.mhg-whatsapp-text p {
    font-size: 13px;
    opacity: 0.9;
}

/* =====================================
   2. TRENDING BEATS
   ===================================== */
.mhg-section {
    margin: 40px 0;
    padding: 0 16px;
}

.mhg-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.mhg-section-title {
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mhg-section-title i {
    color: #fff;
    -webkit-text-fill-color: #fff;
}

.mhg-trending-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 5px;
}

.mhg-trending-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0px;
    gap: 2px;
}

.mhg-trending-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.mhg-trending-cover {
    width: 60px;
    height: 50px;
    border-radius: 2px;
    object-fit: cover;
    flex-shrink: 0;
}

.mhg-trending-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mhg-trending-badge {
    display: inline-block;
    padding: 3px 8px;
    background: #000;
    color: #fff;
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 3px;
    margin-bottom: 6px;
    letter-spacing: 0.3px;
    width: fit-content;
}

.mhg-trending-title {
    font-size: 12px;
    font-weight: 700;
    color: #000;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mhg-trending-artist {
    font-size: 10px;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mhg-trending-stats {
    display: none;
}

/* =====================================
   3. MÚSICAS SLIDE
   ===================================== */
.mhg-musicas-slider {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.mhg-musicas-slider::-webkit-scrollbar {
    display: none;
}

.mhg-musica-card {
    flex: 0 0 auto;
    width: 160px;
    background: linear-gradient(145deg, #1a1a1a 0%, #0f0f0f 100%);
    border-radius: 16px;
    padding: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    scroll-snap-align: start;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mhg-musica-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.3);
}

.mhg-musica-cover {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 10px;
}

.mhg-musica-title {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mhg-musica-artist {
    font-size: 11px;
    color: #d4af37;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* =====================================
   4. ARTISTAS POPULARES CAROUSEL
   ===================================== */
.mhg-artistas-carousel {
    position: relative;
    overflow: hidden;
}

.mhg-artistas-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.mhg-artistas-track::-webkit-scrollbar {
    display: none;
}

.mhg-artista-card {
    flex: 0 0 auto;
    width: 140px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mhg-artista-card:hover {
    transform: translateY(-8px);
}

.mhg-artista-photo-wrapper {
    position: relative;
    margin-bottom: 12px;
}

.mhg-artista-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(212, 175, 55, 0.3);
    margin: 0 auto;
    display: block;
    transition: all 0.3s ease;
}

.mhg-artista-card:hover .mhg-artista-photo {
    border-color: #d4af37;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

.mhg-artista-name {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mhg-artista-location {
    font-size: 10px;
    color: #888;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* =====================================
   5. ÚLTIMOS LANÇAMENTOS (3 CARDS)
   ===================================== */
.mhg-lancamentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.mhg-lancamento-card {
    background: linear-gradient(145deg, #1a1a1a 0%, #0f0f0f 100%);
    border-radius: 12px;
    padding: 8px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.mhg-lancamento-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
}

.mhg-lancamento-cover {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 8px;
}

.mhg-new-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    background: linear-gradient(135deg, #d4af37, #f4d96e);
    color: #000;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mhg-lancamento-title {
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mhg-lancamento-artist {
    font-size: 9px;
    color: #d4af37;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}