@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

:root {
    --bg: #050505;
    --card: #121212;
    --card-2: #181818;
    --green: #00ff99;
    --white: #ffffff;
    --muted: #b3b3b3;
    --line: rgba(255,255,255,.08);

    --player-bg: #ffffff;
    --player-text: #000000;
    --player-gray: #666666;
    --player-line: #e0e0e0;

    --glass-bg: rgba(10,10,10,.88);
    --glass-border: rgba(255,255,255,.1);
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--white);
    padding-top: 80px;
    padding-bottom: 110px;
    line-height: 1.6;
    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

img {
    max-width: 100%;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 9999;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
}

.header-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    max-height: 55px;
    width: auto;
    object-fit: contain;
}

.menu-desktop {
    display: flex;
    align-items: center;
    gap: 30px;
}

.menu-desktop a {
    color: var(--white);
    font-size: .9rem;
    font-weight: 500;
    opacity: .8;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: .3s;
}

.menu-desktop a i {
    color: var(--green);
}

.menu-desktop a:hover {
    color: var(--green);
    opacity: 1;
    transform: translateY(-2px);
}

.btn-menu-mobile {
    display: none;
    background: none;
    border: none;
    color: var(--green);
    font-size: 1.6rem;
    cursor: pointer;
}

/* MENU MOBILE OVERLAY */

.menu-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.96);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: .4s ease;
}

.menu-mobile-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.btn-close-menu {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
}

.menu-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 35px;
    text-align: center;
}

.menu-mobile-links a {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
}

/* HOME */

.main-content-site {
    width: 100%;
}

.mobile-home-hero {
    padding: 70px 0 30px;
    background:
        radial-gradient(circle at top left, rgba(0,255,153,.18), transparent 35%),
        radial-gradient(circle at bottom right, rgba(0,255,153,.08), transparent 35%);
}

.app-welcome-row {
    display: none;
}

.app-hero-card {
    min-height: 360px;
    background:
        linear-gradient(160deg, rgba(0,255,153,.18), rgba(255,255,255,.04) 45%, rgba(255,255,255,.02)),
        var(--card);
    border: 1px solid var(--line);
    border-radius: 32px;
    padding: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 25px 80px rgba(0,0,0,.45);
    overflow: hidden;
    position: relative;
}

.app-hero-card::after {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    right: -80px;
    bottom: -90px;
    border-radius: 50%;
    background: rgba(0,255,153,.14);
    filter: blur(20px);
}

.status-badge {
    width: max-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .8px;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.status-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #777;
}

.status-badge.online .dot {
    background: var(--green);
    box-shadow: 0 0 12px var(--green);
}

.status-badge.offline .dot {
    background: #ff4d4d;
}

.app-hero-card h1 {
    font-size: clamp(2.2rem, 6vw, 4rem);
    line-height: 1.08;
    font-weight: 800;
    margin: 22px 0 14px;
    position: relative;
    z-index: 2;
}

.app-hero-card h1 span {
    color: var(--green);
}

.app-hero-card p {
    color: var(--muted);
    font-size: 1rem;
    max-width: 520px;
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
}

.btn-primary-modern {
    width: max-content;
    background: var(--green);
    color: #000;
    padding: 15px 28px;
    border-radius: 999px;
    border: none;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: .3s;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.btn-primary-modern:hover {
    background: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0,255,153,.25);
}

/* SEÇÕES */

.banner-section-modern,
.social-section-modern {
    padding: 35px 0;
}

.social-section-modern {
    padding-bottom: 120px;
}

.section-title-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 18px;
}

.section-title-row h2 {
    font-size: 1.6rem;
    line-height: 1;
}

.section-title-row span {
    color: var(--green);
    font-size: .85rem;
    font-weight: 700;
}

.banner-card {
    display: block;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    background: var(--card-2);
    border: 1px solid var(--line);
    box-shadow: 0 15px 45px rgba(0,0,0,.35);
    transition: .3s;
}

.banner-card img {
    width: 100%;
    height: auto;
    display: block;
}

.banner-card:hover {
    border-color: var(--green);
    transform: translateY(-4px);
}

.swiper-pagination-bullet {
    background: #fff !important;
    opacity: .3 !important;
}

.swiper-pagination-bullet-active {
    background: var(--green) !important;
    opacity: 1 !important;
}

.social-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.social-box {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 22px;
    color: var(--white);
    transition: .3s;
}

.social-box:hover {
    background: var(--card-2);
    border-color: var(--green);
    transform: translateY(-4px);
}

.social-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(0,255,153,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.social-icon i {
    font-size: 1.55rem;
    color: var(--green);
}

.social-info {
    flex: 1;
    min-width: 0;
}

.social-info h3 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.social-info span {
    color: var(--muted);
    font-size: .85rem;
}

.social-arrow {
    color: #777;
    font-size: .8rem;
}

.footer-modern {
    padding: 45px 0;
    text-align: center;
    color: #777;
    border-top: 1px solid var(--line);
}

/* PLAYER DESKTOP */

.fixed-player {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    background: var(--player-bg);
    color: var(--player-text);
    border-top: 1px solid var(--player-line);
    z-index: 9998;
}

.fixed-player-content {
    width: 100%;
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 300px 1fr 300px;
    align-items: center;
    padding: 0 25px;
    position: relative;
}

.fixed-left {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    min-width: 0;
}

.fixed-left img {
    width: 55px;
    height: 55px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid #eee;
    flex-shrink: 0;
}

.fixed-left div {
    min-width: 0;
}

.fixed-left h3 {
    font-size: 15px;
    font-weight: 700;
    color: #000;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fixed-left p {
    font-size: 12px;
    color: var(--player-gray);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fixed-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.fixed-center button,
.volume-toggle {
    background: none;
    border: none;
    color: #000;
    font-size: 18px;
    cursor: pointer;
}

.btn-desktop-main {
    width: 50px;
    height: 50px;
    border: 1px solid #000 !important;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fixed-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    position: relative;
}

.volume-slider.fixed-slider {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,.15);
    display: none;
}

.volume-slider.fixed-slider.active {
    display: block;
}

.volume-slider input {
    accent-color: #000;
    cursor: pointer;
}

.fixed-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #eee;
}

.fixed-progress-bar {
    height: 100%;
    width: 0%;
    background: #000;
    transition: .1s linear;
}

/* PLAYER MOBILE MODAL */

.mobile-player-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.96);
    z-index: 1000000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: .4s cubic-bezier(.4,0,.2,1);
}

.mobile-player-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-player-content {
    width: 100%;
    max-width: 340px;
    height: 600px;
    background: var(--player-bg);
    color: var(--player-text);
    border-radius: 18px;
    padding: 25px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 30px 60px rgba(0,0,0,.5);
    position: relative;
    overflow: hidden;
}

.mobile-player-close {
    position: absolute;
    top: -60px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 35px;
    cursor: pointer;
}

.mobile-cover {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    object-fit: cover;
    background: #f9f9f9;
    margin-bottom: 20px;
    border: 1px solid #eee;
}

.mobile-top-actions {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 20px;
    color: #000;
}

.mobile-progress-area {
    width: 100%;
    margin-bottom: 30px;
}

.mobile-progress-area input,
.mobile-volume-container input {
    -webkit-appearance: none;
    width: 100%;
    outline: none;
}

.mobile-progress-area input {
    height: 2px;
    background: #eee;
}

.mobile-progress-area input::-webkit-slider-thumb,
.mobile-volume-container input::-webkit-slider-thumb {
    -webkit-appearance: none;
    background: #000;
    border-radius: 50%;
    cursor: pointer;
}

.mobile-progress-area input::-webkit-slider-thumb {
    width: 12px;
    height: 12px;
}

.mobile-player-controls {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
    padding: 0 15px;
}

.mobile-player-controls button {
    background: none;
    border: none;
    color: #000;
    font-size: 26px;
    cursor: pointer;
}

.btn-mobile-main {
    width: 65px;
    height: 65px;
    border: 1px solid #000 !important;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-volume-container {
    width: 100%;
    margin-bottom: 15px;
}

.mobile-volume-container input {
    height: 4px;
    background: #eee;
    border-radius: 10px;
}

.mobile-volume-container input::-webkit-slider-thumb {
    width: 16px;
    height: 16px;
}

.mobile-music-info {
    width: 100%;
    margin-top: 10px;
    text-align: center;
    overflow: hidden;
}

.mobile-music-info h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-music-info p {
    font-size: .9rem;
    color: var(--player-gray);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* MODAIS APP */

.spotify-modal {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9997;
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .3s ease, transform .3s ease;
}

.spotify-modal.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.modal-content-app {
    width: 100%;
    height: 100%;
    padding: 25px;
    padding-top: 40px;
    overflow-y: auto;
    color: #fff;
}

.modal-header-app {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.modal-header-app h2 {
    font-size: 24px;
    font-weight: 700;
}

.close-modal {
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

.search-bar-app {
    background: #fff;
    padding: 12px 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.search-bar-app i {
    color: #000;
}

.search-bar-app input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 1rem;
    color: #000;
}

.search-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.cat-card {
    height: 100px;
    border-radius: 12px;
    padding: 15px;
    font-weight: 700;
    display: flex;
    align-items: flex-end;
}

.lib-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.lib-filters span,
.filter-tag {
    padding: 8px 16px;
    border: 1px solid #777;
    border-radius: 20px;
    font-size: .8rem;
    cursor: pointer;
}

.lib-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.lib-img,
.lib-img-styled,
.lib-item img,
.lib-img-thumb {
    width: 55px;
    height: 55px;
    border-radius: 6px;
    object-fit: cover;
}

.lib-img,
.lib-img-styled {
    background: linear-gradient(135deg, #450af5, #c4efd9);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lib-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.lib-info p {
    font-size: .8rem;
    color: var(--muted);
}

.create-form {
    text-align: center;
    margin-top: 50px;
}

.create-icon-placeholder {
    width: 150px;
    height: 150px;
    background: #282828;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    box-shadow: 0 10px 30px rgba(0,0,0,.5);
}

.input-create,
.create-form input {
    background: transparent;
    border: none;
    border-bottom: 2px solid #777;
    width: 100%;
    color: #fff;
    font-size: 1.6rem;
    text-align: center;
    padding: 15px 0;
    outline: none;
}

.input-create:focus,
.create-form input:focus {
    border-bottom-color: var(--green);
}

.btn-done {
    background: #fff;
    color: #000;
    border: none;
    padding: 7px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: .8rem;
}

.disabled-link {
    opacity: .5;
    pointer-events: none;
}

.disabled-player {
    opacity: .5;
    cursor: not-allowed;
}

/* MENU SPOTIFY MOBILE */

.spotify-menu-mobile {
    display: none;
}

.spotify-menu-mobile .spotify-item,
.spotify-menu-mobile button.spotify-item {
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    cursor: pointer;
}

.spotify-menu-mobile .spotify-item i,
.spotify-menu-mobile .spotify-item span {
    background: transparent !important;
}

/* RESPONSIVO */

@media(max-width: 991px) {
    .menu-desktop {
        display: none;
    }

    .btn-menu-mobile {
        display: block;
    }
}

/* APP MOBILE */

@media(max-width: 768px) {

    html,
    body {
        width: 100%;
        min-height: 100%;
        background: #050505;
    }

    body {
        padding-top: 74px;
        padding-bottom: 158px !important;
        line-height: 1.5;
    }

    .container {
        padding: 0 16px;
    }

    .header {
        height: 74px;
        background: rgba(5,5,5,.92);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .header-container {
        padding: 0 16px;
    }

    .logo img {
        max-height: 44px;
    }

    .btn-menu-mobile {
        width: 42px;
        height: 42px;
        border-radius: 14px;
        background: rgba(255,255,255,.08);
        color: var(--green);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-home-hero {
        padding: 16px 0 18px;
        background:
            radial-gradient(circle at top right, rgba(0,255,153,.18), transparent 42%),
            linear-gradient(180deg, #090909, #050505);
    }

    .app-welcome-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 16px;
    }

    .app-welcome-row span {
        color: var(--muted);
        font-size: .78rem;
    }

    .app-welcome-row h2 {
        font-size: 1.1rem;
        line-height: 1.2;
        max-width: 250px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .app-logo-circle {
        width: 46px;
        height: 46px;
        border-radius: 16px;
        object-fit: cover;
        border: 1px solid rgba(255,255,255,.12);
        background: #111;
    }

    .app-hero-card {
        min-height: auto;
        border-radius: 28px;
        padding: 26px 20px;
        background:
            linear-gradient(160deg, rgba(0,255,153,.18), rgba(255,255,255,.04)),
            #101010;
        box-shadow: 0 18px 45px rgba(0,0,0,.55);
    }

    .app-hero-card h1 {
        font-size: 2rem;
        line-height: 1.12;
        margin: 18px 0 12px;
    }

    .app-hero-card p {
        font-size: .9rem;
        color: #c7c7c7;
        margin-bottom: 22px;
    }

    .status-badge {
        font-size: .68rem;
        padding: 7px 14px;
    }

    .btn-primary-modern {
        width: 100%;
        height: 50px;
        justify-content: center;
        border-radius: 18px;
        font-size: .92rem;
        padding: 0 20px;
    }

    .banner-section-modern,
    .social-section-modern {
        padding: 18px 0;
    }

    .social-section-modern {
        padding-bottom: 35px;
    }

    .section-title-row {
        margin-bottom: 14px;
    }

    .section-title-row h2 {
        font-size: 1.22rem;
    }

    .section-title-row span {
        font-size: .75rem;
    }

    .banner-card {
        border-radius: 22px;
        box-shadow: 0 12px 32px rgba(0,0,0,.45);
    }

    .social-grid-modern {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .social-box {
        min-height: 78px;
        border-radius: 22px;
        padding: 14px;
        background: linear-gradient(180deg, #141414, #0f0f0f);
    }

    .social-icon {
        width: 50px;
        height: 50px;
        border-radius: 18px;
    }

    .footer-modern {
        padding: 25px 0 10px;
        font-size: .78rem;
        border-top: none;
    }

    .fixed-player {
        height: 76px !important;
        bottom: 68px !important;
        background: #ffffff;
        border-top: none;
        border-radius: 22px 22px 0 0;
        box-shadow: 0 -12px 35px rgba(0,0,0,.35);
        z-index: 9998 !important;
    }

    .fixed-player-content {
        grid-template-columns: 1fr auto;
        padding: 0 14px;
    }

    .fixed-left {
        gap: 11px;
    }

    .fixed-left img {
        width: 50px;
        height: 50px;
        border-radius: 14px;
    }

    .fixed-left h3 {
        font-size: 13px;
        font-weight: 800;
    }

    .fixed-left p {
        font-size: 11px;
    }

    .fixed-center,
    .fixed-right {
        display: none;
    }

    .fixed-progress {
        height: 3px;
        top: auto;
        bottom: 0;
        background: #e9e9e9;
    }

    .fixed-progress-bar {
        background: var(--green);
    }

    .spotify-menu-mobile {
        display: flex !important;
        position: fixed !important;
        left: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: 68px !important;
        background: rgba(0,0,0,.96) !important;
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        border-top: 1px solid rgba(255,255,255,.08) !important;
        z-index: 10000 !important;
        justify-content: space-around;
        align-items: center;
        padding-bottom: env(safe-area-inset-bottom);
    }

    .spotify-item {
        height: 100%;
        flex: 1;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        color: #8d8d8d !important;
        font-size: 10px !important;
        font-weight: 600;
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .spotify-item i {
        font-size: 21px !important;
        margin: 0 !important;
    }

    .spotify-item.active {
        color: var(--green) !important;
    }

    .spotify-item.active i {
        text-shadow: 0 0 14px rgba(0,255,153,.55);
    }

    .spotify-modal {
        top: 0 !important;
        left: 0 !important;
        bottom: 68px !important;
        width: 100% !important;
        height: calc(100vh - 68px) !important;
        background: #050505 !important;
        z-index: 9999 !important;
    }

    .modal-content-app {
        padding: 24px 18px 110px;
    }

    .modal-header-app h2 {
        font-size: 1.35rem;
    }

    .search-bar-app {
        border-radius: 18px;
        padding: 14px 16px;
    }

    .cat-card {
        border-radius: 20px;
    }

    .lib-item {
        background: #111;
        border: 1px solid rgba(255,255,255,.07);
        border-radius: 20px;
        padding: 12px;
        margin-bottom: 12px;
    }

    .mobile-player-modal {
        display: flex !important;
        padding: 18px;
    }

    .mobile-player-content {
        max-width: 100%;
        height: auto;
        min-height: 560px;
        border-radius: 28px;
        padding: 22px;
    }

    .mobile-cover {
        border-radius: 22px;
    }

    .btn-mobile-main {
        width: 66px;
        height: 66px;
    }
}

@media(max-width: 380px) {
    .app-hero-card h1 {
        font-size: 1.75rem;
    }

    .mobile-player-content {
        min-height: 530px;
        padding: 18px;
    }

    .spotify-item span {
        font-size: 9px;
    }
}