:root {
    --ml-yellow: #ffd21f;
    --ml-yellow-dark: #f2b900;
    --ml-red: #e31e24;
    --ml-red-dark: #b91218;
    --ml-black: #111111;
    --ml-dark: #1b1b1b;
    --ml-white: #ffffff;
    --ml-muted: #666666;
    --ml-soft: #fff8df;
    --ml-border: rgba(0, 0, 0, 0.08);
    --ml-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
    --ml-radius: 24px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ml-black);
    background: #ffffff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.ml-topbar {
    background: linear-gradient(90deg, var(--ml-red), var(--ml-red-dark));
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
}

.ml-topbar-left,
.ml-topbar-right {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.ml-topbar-right {
    justify-content: flex-end;
}

.ml-topbar i {
    color: var(--ml-yellow);
}

.ml-mini-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--ml-yellow);
    color: var(--ml-black);
    padding: 7px 14px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 13px;
    transition: all .25s ease;
}

.ml-mini-btn:hover {
    transform: translateY(-2px);
    color: var(--ml-black);
    background: #fff;
}

.ml-mini-btn-whatsapp {
    background: #25d366;
    color: #fff;
}

.ml-mini-btn-whatsapp:hover {
    color: #fff;
    background: #1fb95a;
}

.ml-header {
    position: sticky;
    top: 0;
    z-index: 990;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0,0,0,.07);
}

.ml-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ml-brand img {
    height: 54px;
    width: auto;
    object-fit: contain;
}

.ml-brand-mark,
.ml-footer-logo-text {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--ml-yellow), var(--ml-red));
    color: #fff;
    font-weight: 950;
    box-shadow: 0 12px 25px rgba(227,30,36,.25);
}

.ml-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.ml-brand-text strong {
    color: var(--ml-red);
    font-size: 22px;
    letter-spacing: -.5px;
}

.ml-brand-text small {
    color: var(--ml-muted);
    font-size: 12px;
    font-weight: 700;
}

.ml-menu {
    gap: 4px;
}

.ml-menu .nav-link {
    color: var(--ml-black);
    font-weight: 750;
    padding: 10px 12px !important;
    border-radius: 999px;
    transition: all .25s ease;
}

.ml-menu .nav-link:hover,
.ml-menu .nav-link.active {
    background: var(--ml-soft);
    color: var(--ml-red);
}

.ml-contact-link {
    background: var(--ml-red);
    color: #fff !important;
}

.ml-contact-link:hover {
    background: var(--ml-yellow) !important;
    color: var(--ml-black) !important;
}

.ml-toggler {
    border: 0;
    background: var(--ml-red);
    color: #fff;
    border-radius: 12px;
    padding: 7px 11px;
    font-size: 24px;
}

.ml-hero {
    position: relative;
    padding: 90px 0;
    background:
        radial-gradient(circle at top left, rgba(255,210,31,.35), transparent 35%),
        radial-gradient(circle at bottom right, rgba(227,30,36,.25), transparent 35%),
        linear-gradient(135deg, #fff9de 0%, #fff 45%, #fff1f1 100%);
    overflow: hidden;
}

.ml-hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(227,30,36,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(227,30,36,.06) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: .7;
}

.ml-hero .container {
    position: relative;
    z-index: 2;
}

.ml-hero-badge,
.ml-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #fff;
    color: var(--ml-red);
    border: 1px solid rgba(227,30,36,.15);
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 900;
    box-shadow: 0 10px 25px rgba(0,0,0,.06);
}

.ml-hero h1 {
    margin: 18px 0;
    font-size: clamp(44px, 7vw, 86px);
    line-height: .95;
    font-weight: 950;
    letter-spacing: -3px;
    color: var(--ml-black);
}

.ml-hero h1::first-letter {
    color: var(--ml-red);
}

.ml-hero-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #494949;
    max-width: 680px;
}

.ml-hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.ml-btn-primary,
.ml-btn-outline {
    border-radius: 999px;
    padding: 12px 22px;
    font-weight: 900;
    border: 0;
    transition: all .25s ease;
}

.ml-btn-primary {
    background: linear-gradient(135deg, var(--ml-red), var(--ml-red-dark));
    color: #fff;
    box-shadow: 0 14px 28px rgba(227,30,36,.25);
}

.ml-btn-primary:hover {
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 18px 38px rgba(227,30,36,.35);
}

.ml-btn-outline {
    background: #fff;
    color: var(--ml-red);
    border: 1px solid rgba(227,30,36,.2);
    box-shadow: 0 10px 24px rgba(0,0,0,.06);
}

.ml-btn-outline:hover {
    transform: translateY(-2px);
    background: var(--ml-yellow);
    color: var(--ml-black);
}

.ml-hero-stats {
    margin-top: 35px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.ml-hero-stats div {
    background: rgba(255,255,255,.85);
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 18px;
    padding: 16px 20px;
    min-width: 130px;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.ml-hero-stats strong {
    display: block;
    color: var(--ml-red);
    font-size: 24px;
    font-weight: 950;
}

.ml-hero-stats span {
    color: var(--ml-muted);
    font-weight: 750;
    font-size: 13px;
}

.ml-hero-card {
    position: relative;
    background: var(--ml-black);
    border-radius: 34px;
    padding: 16px;
    box-shadow: var(--ml-shadow);
    transform: rotate(2deg);
}

.ml-hero-card img {
    width: 100%;
    min-height: 380px;
    object-fit: cover;
    border-radius: 26px;
}

.ml-hero-placeholder {
    min-height: 380px;
    border-radius: 26px;
    background:
        linear-gradient(135deg, rgba(255,210,31,.95), rgba(227,30,36,.9)),
        url("data:image/svg+xml,%3Csvg width='140' height='140' xmlns='http://www.w3.org/2000/svg'%3E%3Ctext x='20' y='80' font-size='60' fill='rgba(255,255,255,.25)'%3E♫%3C/text%3E%3C/svg%3E");
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ml-hero-placeholder i {
    font-size: 75px;
}

.ml-hero-placeholder h3 {
    font-size: 36px;
    font-weight: 950;
    margin-top: 12px;
}

.ml-hero-floating {
    position: absolute;
    left: -18px;
    bottom: 34px;
    background: #fff;
    padding: 14px 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--ml-shadow);
}

.ml-hero-floating i {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--ml-red);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.ml-hero-floating strong,
.ml-hero-floating span {
    display: block;
}

.ml-hero-floating strong {
    color: var(--ml-black);
    font-weight: 950;
}

.ml-hero-floating span {
    font-size: 12px;
    color: var(--ml-muted);
    font-weight: 700;
}

.ml-section {
    padding: 82px 0;
}

.ml-soft-bg {
    background: linear-gradient(180deg, #fffaf0, #ffffff);
}

.ml-section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 38px;
}

.ml-section-head h2 {
    margin-top: 14px;
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 950;
    letter-spacing: -1.5px;
}

.ml-section-head p {
    color: var(--ml-muted);
    font-size: 17px;
    line-height: 1.7;
}

.ml-stat-card,
.ml-release-card,
.ml-youtube-card,
.ml-lyrics-card,
.ml-video-card,
.ml-comment-card,
.ml-empty-card {
    height: 100%;
    background: #fff;
    border: 1px solid var(--ml-border);
    border-radius: var(--ml-radius);
    box-shadow: 0 15px 34px rgba(0,0,0,.08);
    transition: all .25s ease;
    overflow: hidden;
}

.ml-stat-card:hover,
.ml-release-card:hover,
.ml-youtube-card:hover,
.ml-lyrics-card:hover,
.ml-video-card:hover,
.ml-comment-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--ml-shadow);
}

.ml-stat-card {
    text-align: center;
    padding: 32px 18px;
}

.ml-stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 16px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--ml-yellow), var(--ml-red));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.ml-stat-card h3 {
    font-size: 36px;
    font-weight: 950;
    color: var(--ml-red);
}

.ml-stat-card p {
    margin: 0;
    color: var(--ml-muted);
    font-weight: 800;
}

.ml-poster-wrap,
.ml-youtube-poster {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #111;
}

.ml-poster-wrap.square {
    aspect-ratio: 1 / 1;
}

.ml-poster-wrap img,
.ml-youtube-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .35s ease;
}

.ml-release-card:hover img,
.ml-youtube-card:hover img {
    transform: scale(1.05);
}

.ml-youtube-poster span {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--ml-red);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 12px 25px rgba(227,30,36,.35);
}

.ml-release-body {
    padding: 18px;
}

.ml-release-body h4,
.ml-lyrics-card h4 {
    font-size: 18px;
    font-weight: 950;
    line-height: 1.35;
    margin-bottom: 8px;
}

.ml-release-body p,
.ml-lyrics-card p {
    color: var(--ml-muted);
    margin-bottom: 12px;
    font-weight: 700;
}

.ml-card-link {
    color: var(--ml-red);
    font-weight: 950;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ml-card-link:hover {
    color: var(--ml-red-dark);
}

.ml-card-placeholder {
    width: 100%;
    height: 100%;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--ml-yellow), var(--ml-red));
    color: #fff;
    font-size: 54px;
}

.ml-card-placeholder.wide {
    min-height: 170px;
}

.ml-ott-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ml-ott-links a {
    background: var(--ml-soft);
    color: var(--ml-red);
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 850;
}

.ml-lyrics-card {
    padding: 26px;
}

.ml-lyrics-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: var(--ml-soft);
    color: var(--ml-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 18px;
}

.ml-video-card iframe {
    width: 100%;
    height: 210px;
    border: 0;
    display: block;
}

.ml-comments-section {
    background:
        radial-gradient(circle at top left, rgba(255,210,31,.22), transparent 32%),
        linear-gradient(180deg, #fff, #fff5f5);
}

.ml-comment-card {
    padding: 24px;
}

.ml-stars {
    color: var(--ml-yellow-dark);
    margin-bottom: 14px;
}

.ml-comment-card p {
    color: #444;
    line-height: 1.7;
    min-height: 95px;
}

.ml-comment-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ml-comment-user img,
.ml-comment-user span {
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

.ml-comment-user img {
    object-fit: cover;
}

.ml-comment-user span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ml-red);
    color: #fff;
    font-weight: 950;
}

.ml-about-box,
.ml-contact-box {
    border-radius: 34px;
    padding: 42px;
    background:
        linear-gradient(135deg, rgba(255,210,31,.18), rgba(227,30,36,.08)),
        #fff;
    border: 1px solid var(--ml-border);
    box-shadow: var(--ml-shadow);
}

.ml-about-box h2,
.ml-contact-box h2 {
    margin: 16px 0;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 950;
    letter-spacing: -1.2px;
}

.ml-about-box p,
.ml-contact-box p {
    color: var(--ml-muted);
    font-size: 17px;
    line-height: 1.8;
}

.ml-about-visual {
    min-height: 280px;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--ml-red), var(--ml-yellow));
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ml-about-visual img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
}

.ml-about-visual i {
    font-size: 70px;
}

.ml-about-visual h3 {
    font-weight: 950;
    margin-top: 12px;
}

.ml-contact-mini-list {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.ml-contact-mini-list a {
    color: var(--ml-black);
    font-weight: 850;
}

.ml-contact-mini-list i {
    color: var(--ml-red);
    margin-right: 8px;
}

.ml-empty-card {
    text-align: center;
    padding: 38px 20px;
}

.ml-empty-card i {
    font-size: 48px;
    color: var(--ml-red);
}

.ml-empty-card h5 {
    margin-top: 14px;
    font-weight: 950;
}

.ml-empty-card p {
    margin-bottom: 0;
    color: var(--ml-muted);
}

.ml-footer {
    background: #111;
    color: #fff;
    padding: 70px 0 20px;
}

.ml-footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.ml-footer-brand img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.ml-footer-brand h4 {
    margin: 0;
    color: var(--ml-yellow);
    font-weight: 950;
}

.ml-footer-brand p {
    margin: 0;
    color: rgba(255,255,255,.65);
    font-size: 13px;
    font-weight: 700;
}

.ml-footer-about {
    color: rgba(255,255,255,.7);
    line-height: 1.8;
}

.ml-footer h5 {
    color: var(--ml-yellow);
    font-weight: 950;
    margin-bottom: 18px;
}

.ml-footer-links,
.ml-contact-list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.ml-footer-links a,
.ml-contact-list a {
    color: rgba(255,255,255,.72);
    transition: all .2s ease;
}

.ml-footer-links a:hover,
.ml-contact-list a:hover {
    color: var(--ml-yellow);
}

.ml-contact-list i {
    color: var(--ml-yellow);
    margin-right: 8px;
}

.ml-socials {
    display: flex;
    gap: 10px;
}

.ml-socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all .25s ease;
}

.ml-socials a:hover {
    background: var(--ml-red);
    transform: translateY(-3px);
}

.ml-footer-bottom {
    margin-top: 48px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.ml-footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,.6);
}

.ml-footer-bottom a {
    color: var(--ml-yellow);
    font-weight: 900;
}

.ml-floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 900;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 16px 30px rgba(37,211,102,.35);
}

.ml-floating-whatsapp:hover {
    color: #fff;
    transform: translateY(-3px);
}

.ml-welcome-overlay {
    position: fixed;
    inset: 0;
    z-index: 5000;
    background:
        radial-gradient(circle at top, rgba(255,210,31,.25), transparent 36%),
        rgba(10,10,10,.88);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.ml-welcome-card {
    width: min(460px, 100%);
    background: #fff;
    border-radius: 30px;
    padding: 36px;
    text-align: center;
    box-shadow: 0 30px 90px rgba(0,0,0,.35);
}

.ml-welcome-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 18px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--ml-yellow), var(--ml-red));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
}

.ml-welcome-card h2 {
    font-weight: 950;
    letter-spacing: -1px;
}

.ml-welcome-card p {
    color: var(--ml-muted);
    line-height: 1.7;
}

@media (max-width: 991px) {
    .ml-topbar-right {
        justify-content: flex-start;
    }

    .ml-menu {
        padding-top: 14px;
    }

    .ml-menu .nav-link {
        border-radius: 14px;
    }

    .ml-hero {
        padding: 62px 0;
    }

    .ml-hero h1 {
        letter-spacing: -1.5px;
    }

    .ml-hero-card {
        transform: none;
    }

    .ml-hero-floating {
        left: 20px;
        right: 20px;
        bottom: 28px;
    }
}

@media (max-width: 575px) {
    .ml-topbar {
        font-size: 12px;
    }

    .ml-brand img,
    .ml-brand-mark {
        height: 46px;
        width: 46px;
    }

    .ml-brand-text strong {
        font-size: 18px;
    }

    .ml-brand-text small {
        font-size: 11px;
    }

    .ml-hero {
        padding: 46px 0;
    }

    .ml-hero-content p {
        font-size: 16px;
    }

    .ml-hero-stats {
        display: grid;
        grid-template-columns: 1fr;
    }

    .ml-section {
        padding: 58px 0;
    }

    .ml-about-box,
    .ml-contact-box {
        padding: 26px;
        border-radius: 24px;
    }

    .ml-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .ml-welcome-card {
        padding: 28px 20px;
    }
}