/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-v6qjosfymt] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-v6qjosfymt] {
    flex: 1;
}

.sidebar[b-v6qjosfymt] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-v6qjosfymt] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-v6qjosfymt]  a, .top-row[b-v6qjosfymt]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-v6qjosfymt]  a:hover, .top-row[b-v6qjosfymt]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-v6qjosfymt]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-v6qjosfymt] {
        justify-content: space-between;
    }

    .top-row[b-v6qjosfymt]  a, .top-row[b-v6qjosfymt]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-v6qjosfymt] {
        flex-direction: row;
    }

    .sidebar[b-v6qjosfymt] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-v6qjosfymt] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-v6qjosfymt]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-v6qjosfymt], article[b-v6qjosfymt] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-v6qjosfymt] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-v6qjosfymt] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-d0ic8u0t96],
.components-reconnect-repeated-attempt-visible[b-d0ic8u0t96],
.components-reconnect-failed-visible[b-d0ic8u0t96],
.components-pause-visible[b-d0ic8u0t96],
.components-resume-failed-visible[b-d0ic8u0t96],
.components-rejoining-animation[b-d0ic8u0t96] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-d0ic8u0t96],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-d0ic8u0t96],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-d0ic8u0t96],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-d0ic8u0t96],
#components-reconnect-modal.components-reconnect-retrying[b-d0ic8u0t96],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-d0ic8u0t96],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-d0ic8u0t96],
#components-reconnect-modal.components-reconnect-failed[b-d0ic8u0t96],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-d0ic8u0t96] {
    display: block;
}


#components-reconnect-modal[b-d0ic8u0t96] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-d0ic8u0t96 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-d0ic8u0t96 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-d0ic8u0t96 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-d0ic8u0t96]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-d0ic8u0t96 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-d0ic8u0t96 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-d0ic8u0t96 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-d0ic8u0t96 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-d0ic8u0t96] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-d0ic8u0t96] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-d0ic8u0t96] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-d0ic8u0t96] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-d0ic8u0t96] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-d0ic8u0t96] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-d0ic8u0t96] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-d0ic8u0t96 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-d0ic8u0t96] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-d0ic8u0t96 {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* ═══════════════════════════════════════════════════════════════════════════
   Melodia Therapy - Home Page
   Light theme with colorful accents matching the logo
   Colors: Orange #F5A623, Pink #E91E8C, Green #7ED321, Cyan #4FC3F7, Gray #5D6D7E
   ═══════════════════════════════════════════════════════════════════════════ */

/* Container */
.home-container[b-jok53y1f1l] {
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #ffffff;
}

/* Subtle gradient background */
.bg-gradient[b-jok53y1f1l] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #f0f4f8 100%);
    z-index: -3;
}

/* Decorative shapes */
.stars[b-jok53y1f1l] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(233, 30, 140, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(126, 211, 33, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(79, 195, 247, 0.03) 0%, transparent 50%);
}

/* Floating orbs - soft pastel colors from logo */
.floating-orbs[b-jok53y1f1l] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.orb[b-jok53y1f1l] {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: float-b-jok53y1f1l 25s ease-in-out infinite;
}

.orb-1[b-jok53y1f1l] {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #F5A623, #FFD93D);
    top: -150px;
    right: -100px;
}

.orb-2[b-jok53y1f1l] {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #E91E8C, #FF6B9D);
    bottom: 10%;
    left: -100px;
    animation-delay: -8s;
}

.orb-3[b-jok53y1f1l] {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #4FC3F7, #81D4FA);
    top: 50%;
    right: 5%;
    animation-delay: -16s;
}

.orb-4[b-jok53y1f1l] {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #7ED321, #A8E063);
    bottom: -50px;
    left: 30%;
    animation-delay: -12s;
}

@keyframes float-b-jok53y1f1l {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(40px, -40px) scale(1.1); }
    50% { transform: translate(-30px, 30px) scale(0.95); }
    75% { transform: translate(-40px, -30px) scale(1.05); }
}

/* Navigation */
.navbar[b-jok53y1f1l] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    z-index: 100;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(93, 109, 126, 0.1);
}

.nav-brand[b-jok53y1f1l] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon[b-jok53y1f1l] {
    width: 44px;
    height: 44px;
}

.brand-icon svg[b-jok53y1f1l] {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 8px rgba(233, 30, 140, 0.2));
}

.brand-icon.small[b-jok53y1f1l] {
    width: 32px;
    height: 32px;
}

.brand-logo[b-jok53y1f1l] {
    height: 50px;
    width: auto;
}

.footer-logo[b-jok53y1f1l] {
    height: 80px;
    width: auto;
    margin-bottom: 16px;
}

.brand-text[b-jok53y1f1l] {
    font-size: 24px;
    font-weight: 700;
    color: #5D6D7E;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links[b-jok53y1f1l] {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link[b-jok53y1f1l] {
    color: #5D6D7E;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover[b-jok53y1f1l] {
    color: #E91E8C;
}

.nav-link-primary[b-jok53y1f1l] {
    background: linear-gradient(135deg, #E91E8C, #F5A623);
    padding: 10px 24px;
    border-radius: 25px;
    color: white;
}

.nav-link-primary:hover[b-jok53y1f1l] {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(233, 30, 140, 0.3);
    color: white;
}

/* Hero Section */
.hero[b-jok53y1f1l] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 60px 80px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
}

.hero-content[b-jok53y1f1l] {
    flex: 1;
    max-width: 600px;
}

.hero-badge[b-jok53y1f1l] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(233, 30, 140, 0.1), rgba(245, 166, 35, 0.1));
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 24px;
    border: 1px solid rgba(233, 30, 140, 0.2);
    animation: fadeInUp-b-jok53y1f1l 0.8s ease-out;
}

.badge-icon[b-jok53y1f1l] {
    font-size: 16px;
}

.hero-badge span:last-child[b-jok53y1f1l] {
    color: #5D6D7E;
    font-size: 14px;
    font-weight: 500;
}

.hero-title[b-jok53y1f1l] {
    font-size: 56px;
    font-weight: 800;
    color: #2C3E50;
    line-height: 1.1;
    margin: 0 0 24px;
    letter-spacing: -1px;
    animation: fadeInUp-b-jok53y1f1l 0.8s ease-out 0.1s both;
}

.gradient-text[b-jok53y1f1l] {
    background: linear-gradient(135deg, #E91E8C, #F5A623, #7ED321);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle[b-jok53y1f1l] {
    font-size: 18px;
    color: #5D6D7E;
    line-height: 1.7;
    margin: 0 0 40px;
    animation: fadeInUp-b-jok53y1f1l 0.8s ease-out 0.2s both;
}

.hero-buttons[b-jok53y1f1l] {
    display: flex;
    gap: 16px;
    animation: fadeInUp-b-jok53y1f1l 0.8s ease-out 0.3s both;
}

@keyframes fadeInUp-b-jok53y1f1l {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn[b-jok53y1f1l] {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn svg[b-jok53y1f1l] {
    width: 22px;
    height: 22px;
}

.btn-primary[b-jok53y1f1l] {
    background: linear-gradient(135deg, #E91E8C, #F5A623);
    color: white;
    box-shadow: 0 8px 30px rgba(233, 30, 140, 0.3);
}

.btn-primary:hover[b-jok53y1f1l] {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(233, 30, 140, 0.4);
}

.btn-secondary[b-jok53y1f1l] {
    background: #ffffff;
    color: #5D6D7E;
    border: 2px solid #e0e0e0;
}

.btn-secondary:hover[b-jok53y1f1l] {
    background: #f8f9fa;
    border-color: #7ED321;
    color: #7ED321;
    transform: translateY(-3px);
}

/* Hero Visual */
.hero-visual[b-jok53y1f1l] {
    flex: 1;
    display: flex;
    justify-content: center;
    animation: fadeInUp-b-jok53y1f1l 1s ease-out 0.4s both;
}

.phone-mockup[b-jok53y1f1l] {
    width: 280px;
    height: 580px;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 
        0 50px 100px rgba(93, 109, 126, 0.2),
        0 0 0 1px rgba(0, 0, 0, 0.05),
        inset 0 0 20px rgba(255, 255, 255, 0.8);
    animation: phoneFloat-b-jok53y1f1l 6s ease-in-out infinite;
}

@keyframes phoneFloat-b-jok53y1f1l {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.phone-screen[b-jok53y1f1l] {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.screen-content[b-jok53y1f1l] {
    padding: 20px;
    width: 100%;
}

.mini-player[b-jok53y1f1l] {
    background: linear-gradient(135deg, rgba(233, 30, 140, 0.1), rgba(245, 166, 35, 0.1));
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(233, 30, 140, 0.2);
}

.wave-animation[b-jok53y1f1l] {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 20px;
    height: 60px;
    align-items: flex-end;
}

.wave-animation span[b-jok53y1f1l] {
    width: 8px;
    background: linear-gradient(180deg, #E91E8C, #F5A623);
    border-radius: 4px;
    animation: wave-b-jok53y1f1l 1.2s ease-in-out infinite;
}

.wave-animation span:nth-child(1)[b-jok53y1f1l] { animation-delay: 0s; height: 20px; }
.wave-animation span:nth-child(2)[b-jok53y1f1l] { animation-delay: 0.1s; height: 35px; }
.wave-animation span:nth-child(3)[b-jok53y1f1l] { animation-delay: 0.2s; height: 50px; }
.wave-animation span:nth-child(4)[b-jok53y1f1l] { animation-delay: 0.3s; height: 35px; }
.wave-animation span:nth-child(5)[b-jok53y1f1l] { animation-delay: 0.4s; height: 20px; }

@keyframes wave-b-jok53y1f1l {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(1.5); }
}

.track-info[b-jok53y1f1l] {
    text-align: center;
}

.track-title[b-jok53y1f1l] {
    display: block;
    color: #2C3E50;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.track-category[b-jok53y1f1l] {
    display: block;
    color: #5D6D7E;
    font-size: 13px;
}

/* Features Section */
.features[b-jok53y1f1l] {
    padding: 100px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.features-header[b-jok53y1f1l] {
    text-align: center;
    margin-bottom: 60px;
}

.section-title[b-jok53y1f1l] {
    font-size: 42px;
    font-weight: 700;
    color: #2C3E50;
    margin: 0 0 16px;
    letter-spacing: -0.5px;
}

.section-subtitle[b-jok53y1f1l] {
    font-size: 18px;
    color: #5D6D7E;
    margin: 0;
}

.features-grid[b-jok53y1f1l] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.feature-card[b-jok53y1f1l] {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(93, 109, 126, 0.1);
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(93, 109, 126, 0.08);
}

.feature-card:hover[b-jok53y1f1l] {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(233, 30, 140, 0.15);
    border-color: rgba(233, 30, 140, 0.2);
}

.feature-card:nth-child(1) .feature-icon[b-jok53y1f1l] {
    background: linear-gradient(135deg, #F5A623, #FFD93D);
}

.feature-card:nth-child(2) .feature-icon[b-jok53y1f1l] {
    background: linear-gradient(135deg, #E91E8C, #FF6B9D);
}

.feature-card:nth-child(3) .feature-icon[b-jok53y1f1l] {
    background: linear-gradient(135deg, #4FC3F7, #81D4FA);
}

.feature-card:nth-child(4) .feature-icon[b-jok53y1f1l] {
    background: linear-gradient(135deg, #7ED321, #A8E063);
}

.feature-icon[b-jok53y1f1l] {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #E91E8C, #F5A623);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon svg[b-jok53y1f1l] {
    width: 28px;
    height: 28px;
    color: white;
}

.feature-card h3[b-jok53y1f1l] {
    font-size: 20px;
    font-weight: 600;
    color: #2C3E50;
    margin: 0 0 12px;
}

.feature-card p[b-jok53y1f1l] {
    font-size: 15px;
    color: #5D6D7E;
    line-height: 1.6;
    margin: 0;
}

/* Download Section */
.download-section[b-jok53y1f1l] {
    padding: 80px 60px 100px;
    max-width: 900px;
    margin: 0 auto;
}

.download-card[b-jok53y1f1l] {
    background: linear-gradient(135deg, #E91E8C, #F5A623);
    border-radius: 32px;
    padding: 60px;
    text-align: center;
    box-shadow: 0 40px 80px rgba(233, 30, 140, 0.3);
    position: relative;
    overflow: hidden;
}

.download-card[b-jok53y1f1l]::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    pointer-events: none;
}

.download-content h2[b-jok53y1f1l] {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin: 0 0 16px;
    position: relative;
}

.download-content p[b-jok53y1f1l] {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 40px;
    position: relative;
}

.store-buttons[b-jok53y1f1l] {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
}

.store-btn[b-jok53y1f1l] {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 28px;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.store-btn svg[b-jok53y1f1l] {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.store-text[b-jok53y1f1l] {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.store-label[b-jok53y1f1l] {
    font-size: 11px;
    opacity: 0.9;
}

.store-name[b-jok53y1f1l] {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.app-store[b-jok53y1f1l] {
    background: #000;
    color: #fff;
}

.app-store:hover[b-jok53y1f1l] {
    background: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.play-store[b-jok53y1f1l] {
    background: #ffffff;
    color: #2C3E50;
}

.play-store:hover[b-jok53y1f1l] {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.4);
}

/* Footer */
.footer[b-jok53y1f1l] {
    padding: 40px 60px;
    border-top: 1px solid rgba(93, 109, 126, 0.1);
    background: #fafafa;
}

.footer-content[b-jok53y1f1l] {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-brand[b-jok53y1f1l] {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: #5D6D7E;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-text[b-jok53y1f1l] {
    font-size: 14px;
    color: #5D6D7E;
    margin: 0 0 8px;
}

.footer-tagline[b-jok53y1f1l] {
    font-size: 14px;
    color: #7ED321;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero[b-jok53y1f1l] {
        flex-direction: column;
        text-align: center;
        padding: 120px 40px 60px;
    }

    .hero-content[b-jok53y1f1l] {
        max-width: 100%;
    }

    .hero-title[b-jok53y1f1l] {
        font-size: 44px;
    }

    .hero-buttons[b-jok53y1f1l] {
        justify-content: center;
    }

    .phone-mockup[b-jok53y1f1l] {
        width: 240px;
        height: 500px;
    }
}

@media (max-width: 768px) {
    .navbar[b-jok53y1f1l] {
        padding: 16px 24px;
    }

    .nav-links[b-jok53y1f1l] {
        gap: 16px;
    }

    .nav-link:not(.nav-link-primary)[b-jok53y1f1l] {
        display: none;
    }

    .hero[b-jok53y1f1l] {
        padding: 100px 24px 40px;
    }

    .hero-title[b-jok53y1f1l] {
        font-size: 36px;
    }

    .hero-subtitle[b-jok53y1f1l] {
        font-size: 16px;
    }

    .hero-buttons[b-jok53y1f1l] {
        flex-direction: column;
        align-items: stretch;
    }

    .btn[b-jok53y1f1l] {
        justify-content: center;
    }

    .features[b-jok53y1f1l] {
        padding: 60px 24px;
    }

    .section-title[b-jok53y1f1l] {
        font-size: 32px;
    }

    .download-section[b-jok53y1f1l] {
        padding: 40px 24px 60px;
    }

    .download-card[b-jok53y1f1l] {
        padding: 40px 24px;
    }

    .download-content h2[b-jok53y1f1l] {
        font-size: 28px;
    }

    .store-buttons[b-jok53y1f1l] {
        flex-direction: column;
        align-items: stretch;
    }

    .store-btn[b-jok53y1f1l] {
        justify-content: center;
    }

    .footer[b-jok53y1f1l] {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .brand-text[b-jok53y1f1l] {
        font-size: 18px;
    }

    .hero-title[b-jok53y1f1l] {
        font-size: 32px;
    }

    .phone-mockup[b-jok53y1f1l] {
        width: 200px;
        height: 420px;
    }
}
/* /Components/Pages/OpenApp.razor.rz.scp.css */
/* ═══════════════════════════════════════════════════════════════════════════
   Melodia Therapy - Open App Fallback Page
   Light theme with colorful accents matching the logo
   Colors: Orange #F5A623, Pink #E91E8C, Green #7ED321, Cyan #4FC3F7, Gray #5D6D7E
   ═══════════════════════════════════════════════════════════════════════════ */

/* Container */
.open-app-container[b-u8yngqq0v5] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #ffffff;
}

/* Subtle gradient background */
.bg-gradient[b-u8yngqq0v5] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #f0f4f8 100%);
    z-index: -2;
}

/* Floating orbs - soft pastel colors from logo */
.floating-orbs[b-u8yngqq0v5] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
}

.orb[b-u8yngqq0v5] {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float-b-u8yngqq0v5 20s ease-in-out infinite;
}

.orb-1[b-u8yngqq0v5] {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #F5A623, #FFD93D);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2[b-u8yngqq0v5] {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #E91E8C, #FF6B9D);
    bottom: -50px;
    left: -50px;
    animation-delay: -7s;
}

.orb-3[b-u8yngqq0v5] {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #7ED321, #A8E063);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

@keyframes float-b-u8yngqq0v5 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }
    75% {
        transform: translate(-30px, -20px) scale(1.05);
    }
}

/* Content card */
.content-card[b-u8yngqq0v5] {
    background: #ffffff;
    border-radius: 24px;
    padding: 48px 40px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 50px rgba(93, 109, 126, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    animation: slideUp-b-u8yngqq0v5 0.6s ease-out;
}

@keyframes slideUp-b-u8yngqq0v5 {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* App icon */
.app-icon[b-u8yngqq0v5] {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    animation: pulse-b-u8yngqq0v5 2s ease-in-out infinite;
}

.app-icon svg[b-u8yngqq0v5] {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 10px 20px rgba(233, 30, 140, 0.3));
}

.app-icon img[b-u8yngqq0v5] {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes pulse-b-u8yngqq0v5 {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Typography */
.title[b-u8yngqq0v5] {
    font-size: 28px;
    font-weight: 700;
    color: #2C3E50;
    margin: 0 0 8px;
    letter-spacing: -0.5px;
}

.subtitle[b-u8yngqq0v5] {
    font-size: 16px;
    color: #5D6D7E;
    margin: 0 0 32px;
}

/* Loader */
.loader[b-u8yngqq0v5] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.spinner[b-u8yngqq0v5] {
    width: 48px;
    height: 48px;
    border: 3px solid #f0f0f0;
    border-top-color: #E91E8C;
    border-radius: 50%;
    animation: spin-b-u8yngqq0v5 1s linear infinite;
}

@keyframes spin-b-u8yngqq0v5 {
    to {
        transform: rotate(360deg);
    }
}

.loader-text[b-u8yngqq0v5] {
    font-size: 14px;
    color: #5D6D7E;
    margin: 0;
}

/* Fallback content */
.fallback-content[b-u8yngqq0v5] {
    display: none;
    animation: fadeIn-b-u8yngqq0v5 0.4s ease-out;
}

@keyframes fadeIn-b-u8yngqq0v5 {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Message box */
.message-box[b-u8yngqq0v5] {
    background: linear-gradient(135deg, #FFF8E1 0%, #FFECB3 100%);
    border: 1px solid #FFB300;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
}

.info-icon[b-u8yngqq0v5] {
    width: 24px;
    height: 24px;
    color: #F5A623;
    flex-shrink: 0;
    margin-top: 2px;
}

.message-box p[b-u8yngqq0v5] {
    font-size: 14px;
    color: #5D4037;
    margin: 0;
    line-height: 1.5;
}

/* Buttons */
.btn[b-u8yngqq0v5] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn svg[b-u8yngqq0v5] {
    width: 20px;
    height: 20px;
}

.btn-primary[b-u8yngqq0v5] {
    background: linear-gradient(135deg, #E91E8C, #F5A623);
    color: white;
    width: 100%;
    box-shadow: 0 4px 15px rgba(233, 30, 140, 0.3);
}

.btn-primary:hover[b-u8yngqq0v5] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 30, 140, 0.4);
}

.btn-primary:active[b-u8yngqq0v5] {
    transform: translateY(0);
}

/* Divider */
.divider[b-u8yngqq0v5] {
    display: flex;
    align-items: center;
    margin: 28px 0;
    color: #5D6D7E;
    font-size: 13px;
}

.divider[b-u8yngqq0v5]::before,
.divider[b-u8yngqq0v5]::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0e0e0, transparent);
}

.divider span[b-u8yngqq0v5] {
    padding: 0 16px;
}

/* Store buttons */
.store-buttons[b-u8yngqq0v5] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.store-btn[b-u8yngqq0v5] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.store-btn svg[b-u8yngqq0v5] {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.store-text[b-u8yngqq0v5] {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.store-label[b-u8yngqq0v5] {
    font-size: 11px;
    opacity: 0.9;
}

.store-name[b-u8yngqq0v5] {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.app-store[b-u8yngqq0v5] {
    background: #000;
    color: #fff;
}

.app-store:hover[b-u8yngqq0v5] {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.play-store[b-u8yngqq0v5] {
    background: linear-gradient(135deg, #7ED321 0%, #4FC3F7 100%);
    color: #fff;
}

.play-store:hover[b-u8yngqq0v5] {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(126, 211, 33, 0.4);
}

/* Footer */
.footer[b-u8yngqq0v5] {
    margin-top: 32px;
    text-align: center;
}

.footer p[b-u8yngqq0v5] {
    font-size: 12px;
    color: #5D6D7E;
    margin: 0;
}

/* Responsive */
@media (max-width: 480px) {
    .content-card[b-u8yngqq0v5] {
        padding: 36px 24px;
        border-radius: 20px;
    }

    .title[b-u8yngqq0v5] {
        font-size: 24px;
    }

    .app-icon[b-u8yngqq0v5] {
        width: 100px;
        height: 100px;
    }

    .orb-1[b-u8yngqq0v5] {
        width: 250px;
        height: 250px;
    }

    .orb-2[b-u8yngqq0v5] {
        width: 200px;
        height: 200px;
    }

    .orb-3[b-u8yngqq0v5] {
        width: 150px;
        height: 150px;
    }
}
