/* Musiqi Məzmunu – Modern Landing Page Styles */
.mm-landing {
    display: flex;
    flex-direction: column;
    gap: 80px;
    padding-top: 40px;
    padding-bottom: 80px;
}

.mm-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-color);
}

.mm-eyebrow::before {
    content: "";
    width: 24px;
    height: 1px;
    background: currentColor;
    opacity: 0.4;
}

.mm-eyebrow--light {
    color: rgba(255, 255, 255, 0.7);
}

.mm-hero-simple {
    position: relative;
    display: flex;
    justify-content: center;
    padding: clamp(72px, 14vw, 128px) 24px clamp(56px, 10vw, 96px);
    text-align: center;
    overflow: hidden;
}

.mm-hero-simple__content {
    position: relative;
    max-width: 820px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: center;
    text-align: center;
    font-family: "Poppins", "Inter", "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.mm-hero-simple__title {
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: clamp(2.25rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    color: #222;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.mm-hero-simple__title-part {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.mm-hero-simple__typing {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
    width: 8ch;
    justify-content: flex-start;
}

.mm-hero-simple__typing-text {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    color: var(--primary-color);
    text-transform: lowercase;
    width: 0;
    padding-right: 2px;
    animation: mm-typing 4.5s steps(8, end) infinite;
    animation-delay: 0.6s;
    will-change: width;
}

.mm-hero-simple__cursor {
    display: none;
}

.mm-hero-simple__lead {
    margin: 0;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    line-height: 1.75;
    color: #4a4f57;
    max-width: 700px;
}

@keyframes mm-typing {
    0% {
        width: 0ch;
    }
    45% {
        width: 8ch;
    }
    60% {
        width: 8ch;
    }
    100% {
        width: 0ch;
    }
}

.mm-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    border: 1px solid transparent;
    cursor: pointer;
}

.mm-button--primary {
    background: linear-gradient(135deg, #2a6df4 0%, #3f8cff 100%);
    color: #fff;
    box-shadow: 0 18px 35px rgba(63, 140, 255, 0.35);
}

.mm-button--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 40px rgba(63, 140, 255, 0.4);
}

.mm-button--ghost {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.35);
}

.mm-button--ghost:hover {
    background: rgba(255, 255, 255, 0.18);
}

.mm-button--link {
    padding: 0;
    border: none;
    color: var(--primary-color);
    background: transparent;
    gap: 6px;
}

.mm-button--inverted {
    background: #fff;
    color: #111;
    box-shadow: 0 16px 35px rgba(255, 255, 255, 0.2);
}

.mm-button--light {
    color: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.25);
}

.mm-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.mm-section__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
}

.mm-section__header h2 {
    margin: 8px 0 0;
    font-size: clamp(26px, 4vw, 34px);
}

.mm-section--muted {
    background: #f7f8fb;
    padding: 48px;
    border-radius: 24px;
}

.mm-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.mm-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 26px;
    border-radius: 20px;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border: 1px solid rgba(218, 220, 224, 0.6);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mm-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 32px rgba(14, 15, 28, 0.08);
}

.mm-card__icon {
    display: inline-flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 20px;
    color: #fff;
}

.mm-card__title {
    font-size: 20px;
    font-weight: 600;
}

.mm-card__description {
    color: #5f6368;
    flex: 1;
}

.mm-card__meta {
    font-weight: 600;
    color: #202124;
}

.mm-card--blue .mm-card__icon {
    background: linear-gradient(140deg, #4285f4, #6ea1ff);
}

.mm-card--violet .mm-card__icon {
    background: linear-gradient(140deg, #9c27ff, #c26dff);
}

.mm-card--sunset .mm-card__icon {
    background: linear-gradient(140deg, #ff7043, #ffa726);
}

.mm-card--mint .mm-card__icon {
    background: linear-gradient(140deg, #00bfa6, #35efba);
}

.mm-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.mm-list--grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.mm-list-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 22px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(218, 220, 224, 0.7);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.mm-list-item:hover {
    border-color: rgba(63, 140, 255, 0.4);
    box-shadow: 0 14px 28px rgba(66, 133, 244, 0.12);
}

.mm-list-item__badge {
    align-self: flex-start;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(66, 133, 244, 0.1);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 600;
}

.mm-list-item__title a {
    font-size: 18px;
    font-weight: 600;
    color: #202124;
    text-decoration: none;
}

.mm-list-item__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #5f6368;
}

.mm-list-item__person {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.mm-list-item__avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 2px solid rgba(66, 133, 244, 0.2);
    box-shadow: 0 12px 24px rgba(32, 33, 36, 0.25);
    flex-shrink: 0;
}

.mm-list-item__artist {
    font-weight: 600;
    color: #202124;
    display: inline-block;
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mm-list-item__views {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.mm-empty {
    padding: 24px;
    border-radius: 16px;
    background: rgba(32, 33, 36, 0.05);
    color: #5f6368;
    text-align: center;
}

.mm-difficulty-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.mm-difficulty-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 24px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.08) 0%, rgba(66, 133, 244, 0) 100%);
    border: 1px solid rgba(66, 133, 244, 0.2);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mm-difficulty-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 24px rgba(66, 133, 244, 0.16);
}

.mm-difficulty-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mm-difficulty-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(66, 133, 244, 0.12);
    color: var(--primary-color);
}

.mm-difficulty-card__title {
    font-size: 18px;
    font-weight: 600;
}

.mm-difficulty-card__count {
    font-weight: 600;
    color: #3c4043;
}

.mm-section--split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.mm-section__panel {
    padding: 40px;
    border-radius: 24px;
    background: #f8f9fb;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.mm-section__panel--accent {
    background: #0e0f1c;
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: #fff;
    box-shadow: 0 30px 50px rgba(14, 15, 28, 0.35);
}

.mm-artist-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.mm-artist-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mm-artist-card__image {
    width: 100%;
    padding-top: 100%;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 2px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 14px 26px rgba(8, 12, 22, 0.35);
}

.mm-artist-card__name {
    font-weight: 600;
}

.mm-artist-card__count {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.mm-latest-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.mm-latest-column {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 28px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(218, 220, 224, 0.7);
}

.mm-latest-column__header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mm-latest-column__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(66, 133, 244, 0.12);
    color: var(--primary-color);
    font-size: 18px;
}

.mm-latest-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mm-latest-list__item {
    display: flex;
}

.mm-latest-list__link {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
    padding: 12px;
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s ease;
}

.mm-latest-list__link:hover {
    background: rgba(66, 133, 244, 0.08);
}

.mm-latest-list__title {
    font-weight: 600;
}

.mm-latest-list__meta {
    font-size: 13px;
    color: #5f6368;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.mm-latest-column__cta {
    align-self: flex-start;
}

.mm-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.mm-feature {
    padding: 28px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(218, 220, 224, 0.7);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mm-feature__icon {
    font-size: 28px;
    color: var(--primary-color);
}

.mm-feature__title {
    font-size: 20px;
    font-weight: 600;
}

.mm-feature__text {
    color: #5f6368;
    line-height: 1.6;
}

.mm-section--cta {
    background: #0e0f1c;
    border-radius: 32px;
    padding: 56px 60px;
    color: #fff;
    overflow: hidden;
}

.mm-cta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 60px;
    align-items: center;
}

.mm-cta__copy {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.mm-cta__copy h2 {
    font-size: clamp(32px, 5vw, 44px);
}

.mm-cta__copy p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.6;
}

.mm-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.mm-cta__side {
    display: flex;
    justify-content: flex-end;
}

.mm-cta__stats {
    display: grid;
    gap: 16px;
    min-width: 220px;
}

.mm-cta__stat {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mm-cta__number {
    display: block;
    font-size: 28px;
    font-weight: 700;
}

.mm-cta__label {
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 1080px) {
    .mm-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mm-list--grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mm-difficulty-grid,
    .mm-latest-grid,
    .mm-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mm-section--split,
    .mm-cta {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 768px) {
    .mm-hero-simple {
        padding: 64px 18px 52px;
    }

    .mm-hero-simple__title {
        gap: 8px;
    }

    .mm-hero-simple__lead {
        padding: 0;
    }

    .mm-landing {
        gap: 60px;
        padding: 32px 0 60px;
    }

    .mm-section--muted {
        padding: 32px;
    }

    .mm-card-grid,
    .mm-list--grid,
    .mm-difficulty-grid,
    .mm-latest-grid,
    .mm-feature-grid,
    .mm-artist-grid {
        grid-template-columns: 1fr;
    }

    .mm-section__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
}

@media (max-width: 600px) {
    .mm-hero-simple {
        padding: 56px 16px 48px;
    }

    .mm-hero-simple__title {
        flex-direction: column;
    }

    .mm-hero-simple__lead {
        padding: 0;
    }

    .mm-list-item__artist {
        max-width: 180px;
    }

    .mm-list-item__avatar {
        width: 44px;
        height: 44px;
    }
}
.mm-hero-simple__fade {
    opacity: 0;
    animation: mm-fade-up 0.8s ease forwards;
}

.mm-hero-simple__fade--delayed {
    animation-delay: 0.25s;
}

@keyframes mm-fade-up {
    0% {
        opacity: 0;
        transform: translate3d(0, 18px, 0);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}
