:root {
    --bg: #ffffff;
    --text: #0b1220;
    --muted: #6b7280;
    --card: #ffffff;
    --card-border: #e5e7eb;
    --brand: #e11d48;
    --brand-strong: #b31239;
    --brand-soft: #fff1f4;
    --green: #10b981;
    /* New green color */
    --green-strong: #059669;
    /* Darker green for hover */
    --green-soft: #ecfdf5;
    /* Light green for contrast */
    --shadow: 0 8px 24px rgba(16, 24, 40, .06);
    --radius: 16px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body.lf-body {
    background: var(--bg);
    color: var(--text);
    font-family: system-ui, Segoe UI, Roboto, Arial;
}

/* Layout util */
.wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 16px;
}

.no-u {
    text-decoration: none;
    color: inherit;
}

.muted {
    color: var(--muted);
    font-size: .9rem;
}

/* Topbar */
.topbar {
    position: sticky;
    top: 0;
    background: #ffffff;
    border-bottom: 1px solid var(--card-border);
    z-index: 20;
}

.topbar__inner {
    display: flex;
    gap: 16px;
    align-items: center;
    min-height: 80px;
}

.brand {
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--brand);
}

.menu-btn {
    border: 1px solid var(--card-border);
    background: #fff;
    border-radius: 10px;
    padding: 10px 12px;
    cursor: pointer;
    font-size: 1.2rem;
    display: none;
}

.top-actions {
    display: flex;
    gap: 16px;
    margin-left: auto;
}

.top-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 8px 12px;
}

.top-link:hover {
    color: var(--brand);
}

/* Big Red Button */
.big-red-btn {
    display: inline-flex;
    align-items: center;
    background: var(--brand);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 12px 24px;
    border-radius: 999px;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.big-red-btn:hover {
    background: var(--brand-strong);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(225, 29, 72, 0.3);
}

/* Big Green Button */
.big-green-btn {
    display: inline-flex;
    align-items: center;
    background: var(--green);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 12px 24px;
    border-radius: 999px;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.big-green-btn:hover {
    background: var(--green-strong);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* Search */
.search {
    display: flex;
    gap: 8px;
    flex: 1;
    max-width: 720px;
    margin-left: 16px;
}

.search__input {
    flex: 1;
    border: 1px solid var(--card-border);
    border-radius: 999px;
    padding: 12px 16px;
    outline: none;
    font-size: 1rem;
    background: #fff;
}

.search__input:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(225, 29, 72, .15);
}

.search__btn {
    border: 0;
    background: var(--brand);
    color: #fff;
    border-radius: 999px;
    padding: 12px 20px;
    font-weight: 800;
    cursor: pointer;
}

.search__btn:hover {
    background: var(--brand-strong);
}

/* Mobile menu styles */
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
    background: #ffffff;
    border-bottom: 1px solid var(--card-border);
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 10;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu .top-link {
    display: block;
    padding: 12px 16px;
    font-size: 1.1rem;
}

.mobile-menu .big-red-btn,
.mobile-menu .big-green-btn {
    padding: 10px 20px;
    font-size: 1rem;
    margin: 0 16px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .topbar__inner {
        min-height: 64px;
        flex-wrap: wrap;
    }

    .menu-btn {
        display: block;
    }

    .top-actions {
        display: none;
    }

    .search {
        max-width: 100%;
        margin-left: 0;
        order: 2;
        flex: 1 1 100%;
        margin-top: 8px;
    }

    .brand {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .search__input {
        padding: 10px 12px;
        font-size: 0.95rem;
    }

    .search__btn {
        padding: 10px 14px;
    }

    .big-red-btn,
    .big-green-btn {
        padding: 8px 16px;
        font-size: 0.95rem;
    }
}

/* Seções */
.section {
    margin: 22px 0;
}

.titleSec {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 2px 10px;
}

.titleSec h2 {
    margin: 0;
    font-size: 1.05rem;
    letter-spacing: .2px;
    color: #111827;
}

.cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--brand);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: .2px;
}

.cta:hover {
    background: var(--brand-strong);
}

.cta--ghost {
    background: var(--brand-soft);
    color: var(--brand);
}

/* Grid/cards */
.grid {
    display: grid;
    gap: 14px;
}

.g-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

@media (max-width: 1100px) {
    .g-6 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 800px) {
    .g-6 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.thumb {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    background: #f3f4f6;
    display: block;
}

.pad {
    padding: 10px;
}

.name {
    font-weight: 800;
    margin: 6px 0 4px;
    line-height: 1.25;
    color: #111827;
}

.artist {
    color: #ffe6ec;
    font-size: .9rem;
    color: var(--muted);
}

/* Ribbon/vermelho */
.ribbon {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--brand);
    color: #fff;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .3px;
    box-shadow: 0 8px 20px rgba(225, 29, 72, .25);
}

/* Cards de ÁLBUM (vermelhos) */
.card--album {
    background: var(--brand);
    border-color: transparent;
    color: #fff;
}

.card--album .no-u {
    color: #fff;
}

.card--album .no-u:hover {
    opacity: .92;
}

.thumb--album {
    border-radius: 14px;
    margin: 10px;
    width: calc(100% - 20px);
    aspect-ratio: 1/1;
    object-fit: cover;
    background: #fff;
    box-shadow: 0 8px 20px rgba(255, 255, 255, .15);
    border: 3px solid rgba(255, 255, 255, .75);
}

.pad--album {
    padding: 12px 14px 14px;
}

.name--album {
    color: #fff;
}

.artist--album {
    color: #ffe6ec;
    font-weight: 600;
}

.ribbon--album {
    background: #fff;
    color: var(--brand);
    box-shadow: 0 8px 20px rgba(255, 255, 255, .25);
    font-weight: 900;
}