@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
    --bg-dark: #fafbfc;
    --bg-mesh: radial-gradient(at 0% 0%, rgba(236, 230, 255, 0.15) 0, transparent 50%),
        radial-gradient(at 50% 0%, rgba(171, 192, 255, 0.12) 0, transparent 50%),
        radial-gradient(at 100% 0%, rgba(255, 188, 212, 0.12) 0, transparent 50%);

    --text-main: #0f172a;
    --text-muted: #64748b;

    --glass-surface: rgba(255, 255, 255, 0.6);
    --glass-border: rgba(0, 0, 0, 0.08);
    --glass-highlight: rgba(0, 0, 0, 0.04);

    --primary: #125d61;
    --primary-glow: rgba(18, 93, 97, 0.2);

    --primary-gradient-start: #062324;
    --primary-gradient-end: #2a7e82;

    --icon-bg: rgba(18, 93, 97, 0.08);
    --icon-color: #125d61;
    --card-hover-bg: rgba(18, 93, 97, 0.04);

    --switch-bg: #e2e8f0;
    --switch-border: #cbd5e1;
    --switch-knob: #ffffff;

    --footer-bg: rgba(0, 0, 0, 0.02);
    --text-inverse: #ffffff;

    --nav-glass-bg: rgba(255, 255, 255, 0.7);
    --nav-glass-border: rgba(0, 0, 0, 0.06);
    --logo-gradient-light: #062324;

    --subheading-bg: rgba(18, 93, 97, 0.04);
    --subheading-text: #125d61;
    --subheading-border: rgba(18, 93, 97, 0.12);

    --secondary-glow: rgba(139, 92, 246, 0.1);

    --nav-hover-color: var(--primary);
    --nav-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
    --glass-border-hover: var(--primary);

    --secondary: #8b5cf6;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --nav-height: 80px;
}

[data-theme="dark"] {
    --bg-dark: #0a0e13;
    --bg-mesh: radial-gradient(at 0% 0%, rgba(88, 80, 141, 0.15) 0, transparent 50%),
        radial-gradient(at 50% 0%, rgba(59, 90, 152, 0.12) 0, transparent 50%),
        radial-gradient(at 100% 0%, rgba(139, 58, 98, 0.12) 0, transparent 50%);

    --primary: #5F9598;
    --primary-glow: rgba(95, 149, 152, 0.3);

    --glass-surface: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-highlight: rgba(255, 255, 255, 0.12);

    --text-main: #f1f5f9;
    --text-muted: #94a3b8;

    --icon-bg: rgba(95, 149, 152, 0.12);
    --icon-color: #a5f3f6;
    --card-hover-bg: rgba(255, 255, 255, 0.05);

    --switch-bg: rgba(255, 255, 255, 0.1);
    --switch-border: rgba(255, 255, 255, 0.2);
    --switch-knob: #ffffff;

    --footer-bg: rgba(0, 0, 0, 0.3);
    --text-inverse: #ffffff;

    --nav-glass-bg: rgba(255, 255, 255, 0.02);
    --nav-glass-border: rgba(255, 255, 255, 0.08);
    --logo-gradient-light: #ffffff;

    --subheading-bg: rgba(95, 149, 152, 0.12);
    --subheading-text: #a5f3f6;
    --subheading-border: rgba(95, 149, 152, 0.25);

    --secondary-glow: rgba(139, 92, 246, 0.2);

    --nav-hover-color: #ffffff;
    --nav-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    --glass-border-hover: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Smooth transitions for theme switching */
*,
*::before,
*::after {
    transition: background-color 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        color 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        border-color 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        filter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Override transition for elements that need custom timing */
a,
button,
.btn,
.nav-link::after {
    transition: all 0.3s ease !important;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Theme transition overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--transition-x, 50%) var(--transition-y, 10%),
            rgba(95, 149, 152, 0.3) 0%,
            transparent 60%);
    opacity: 0;
    pointer-events: none;
    z-index: 9999;
    transition: opacity 0.6s ease;
}

body.theme-transitioning::after {
    opacity: 1;
    animation: themeRipple 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes themeRipple {
    0% {
        transform: scale(0);
        opacity: 0.8;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--bg-mesh);
    background-size: cover;
    z-index: -1;
    pointer-events: none;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2rem, 4vw + 1rem, 3.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--logo-gradient-light) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: clamp(2rem, 3vw + 1rem, 3rem);
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--logo-gradient-light) 0%, var(--primary) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--subheading-text) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1.8rem;
    border-radius: 999px;
    font-weight: 500;
    font-family: var(--font-heading);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--primary);
    color: var(--text-inverse);
    border: 1px solid transparent;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-glass {
    background: transparent;
    border: 1px solid var(--switch-border);
    color: var(--text-main);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--glass-border-hover);
    transform: translateY(-2px);
}

.btn-icon {
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
}

[data-theme="dark"] .btn-glass {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-inverse);
}

[data-theme="dark"] .btn-glass:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--glass-border-hover);
}

.theme-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.theme-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--switch-bg);
    border: 1px solid var(--switch-border);
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 3px;
    background-color: var(--switch-knob);
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: var(--primary);
    border-color: var(--primary);
}

input:checked+.slider:before {
    transform: translateX(24px);
}

[data-theme="dark"] .slider {
    background-color: var(--switch-bg);
    border-color: var(--switch-border);
}

[data-theme="dark"] .slider:before {
    background-color: var(--switch-knob);
    box-shadow: none;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

.glass {
    background: var(--glass-surface);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.glass-panel {
    border-radius: 24px;
    padding: 2.5rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

.nav-wrapper {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 1000;
    padding: 0 20px;
    animation: slideDown 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    border-radius: 100px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0.8rem 1.5rem;
    position: relative;
    z-index: 100;
}

.nav-container::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 100px;
    background: var(--nav-glass-bg);
    border: 1px solid var(--nav-glass-border);
    box-shadow: var(--nav-shadow);
    z-index: -1;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--primary);
    justify-self: start;
}

.logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    justify-self: center;
}

.nav-link {
    font-weight: 500;
    color: var(--text-muted);
    font-size: 0.95rem;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--nav-hover-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 2px;
    background: var(--primary);
    transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
    justify-self: end;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-self: end;
}



.mobile-only {
    display: none;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--nav-height) + 35px) 20px 60px;
    position: relative;
}

.hero-container {
    max-width: 1280px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleReveal {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.hero-content {
    max-width: 600px;
    z-index: 2;
}

.hero-content>* {
    opacity: 0;
    animation: slideUpFade 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-content .subheading {
    animation-delay: 0.1s;
}

.hero-content h1 {
    animation-delay: 0.2s;
}

.hero-content .hero-text {
    animation-delay: 0.3s;
}

.hero-buttons {
    animation-delay: 0.4s;
    display: flex;
    gap: 1rem;
}

.subheading {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: var(--subheading-bg);
    color: var(--subheading-text);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid var(--subheading-border);
}

.hero-text {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin: 1.5rem 0 2.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--logo-gradient-light) 0%, var(--primary) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px;
    transform: translateX(75px);
}

.hero-card {
    transition: transform 0.5s ease;
    position: absolute;
    width: 280px;
}

.hero-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.5s ease, transform 0.3s ease !important;
}

/* Image fade animation during theme switch */
img[data-dark-src][data-light-src] {
    transition: opacity 0.4s ease !important;
}

img[data-dark-src][data-light-src].theme-changing {
    opacity: 0.6;
}

.card-1 {
    transform: perspective(1000px) rotateY(-10deg) translateX(-110px) translateZ(0);
    z-index: 1;
    width: 320px;
    opacity: 0;
    animation: slideInLeft 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s forwards;
}

.card-2 {
    transform: perspective(1000px) rotateY(10deg) translateX(110px) translateZ(50px);
    z-index: 2;
    width: 300px;
    opacity: 0;
    animation: slideInRight 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: perspective(1000px) rotateY(-20deg) translateX(-200px) translateZ(-100px);
    }

    to {
        opacity: 1;
        transform: perspective(1000px) rotateY(-10deg) translateX(-110px) translateZ(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: perspective(1000px) rotateY(20deg) translateX(200px) translateZ(-50px);
    }

    to {
        opacity: 1;
        transform: perspective(1000px) rotateY(10deg) translateX(110px) translateZ(50px);
    }
}

.hero-visual:hover .card-1 {
    transform: perspective(1000px) rotateY(-5deg) translateX(-120px) translateZ(20px);
    transition: transform 0.5s ease;
}

.hero-visual:hover .card-2 {
    transform: perspective(1000px) rotateY(5deg) translateX(120px) translateZ(80px);
    transition: transform 0.5s ease;
}

.glow-blob {
    position: fixed;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
    opacity: 0.4;
    animation: float 10s ease-in-out infinite;
    pointer-events: none;
}

.blob-1 {
    top: -10%;
    right: -10%;
}

.blob-2 {
    bottom: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--secondary-glow) 0%, transparent 70%);
}

@media (max-width: 768px) {
    .glow-blob {
        width: 300px;
        height: 300px;
        opacity: 0.3;
    }

    .blob-1 {
        right: -50px;
    }

    .blob-2 {
        width: 350px;
        height: 350px;
        left: -50px;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-20px, 30px);
    }
}

.features {
    padding: 10rem 20px 140px;
    text-align: left;
}

.features-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 2rem;
    width: 100%;
}

.feature-card:nth-child(4n+1) {
    grid-column: span 6;
}

.feature-card:nth-child(4n+2) {
    grid-column: span 4;
}

.feature-card:nth-child(4n+3) {
    grid-column: span 4;
}

.feature-card:nth-child(4n+4) {
    grid-column: span 6;
}



@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-card:nth-child(n) {
        grid-column: auto;
    }
}

.feature-card:hover {
    background: var(--card-hover-bg);
    transform: translateY(-5px);
    border-color: var(--glass-highlight);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--icon-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--icon-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.feature-card p {
    color: var(--text-muted);
}

.show-more-btn {
    display: none;
}

.feature-card.hidden-card {
    display: block;
}

footer {
    padding: 4rem 1rem;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    background: var(--footer-bg);
    margin-top: auto;
    width: 100%;
    position: relative;
    z-index: 10;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 48px;
    width: auto;
    filter: none;
    transition: all 0.3s ease;
}

[data-theme="dark"] .footer-logo img {
    filter: grayscale(1) opacity(0.8);
}

.footer-logo:hover img {
    filter: none;
    opacity: 1;
    transform: scale(1.05);
}

.footer-logo span {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: 1px;
}

.social-links {
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-surface);
    color: var(--text-muted);
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--primary);
    color: var(--text-inverse);
    transform: scale(1.1);
}

.app-showcase {
    padding: 1rem 20px 8rem;
    position: relative;
    overflow: hidden;
}

.showcase-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
}

.showcase-visual {
    opacity: 0;
    transform: translateX(-150px);
    transition: all 1s ease-out;
}

.app-showcase.in-view .showcase-visual {
    opacity: 1;
    transform: translateX(-100px);
}

.lyrics-showcase .showcase-visual {
    opacity: 0;
    transform: translateX(125px);
}

.app-showcase.lyrics-showcase.in-view .showcase-visual {
    opacity: 1;
    transform: translateX(75px);
}

#discover .app-showcase:first-child.in-view .showcase-visual,
#discover .app-showcase:nth-child(3).in-view .showcase-visual {
    transform: translateX(-50px);
}

.showcase-content {
    transform: translateX(25px);
    display: flex;
    flex-direction: column;
}

.showcase-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.showcase-image-wrapper img {
    width: 85%;
    height: auto;
    display: block;
    margin: 0 auto;
    transition: opacity 0.4s ease !important;
}


.section-description {
    margin: 0.5rem 0 2rem;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

.align-right .section-description {
    margin-left: auto;
    margin-right: 0;
}

.align-left .section-description {
    margin-right: auto;
    margin-left: 0;
}

.download-cta {
    padding: 10rem 20px;
    text-align: center;
}

.cta-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.cta-container h2 {
    margin-bottom: 0;
    line-height: 1.2;
}

.cta-container p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
}


@media (max-width: 900px) {
    .showcase-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding: 0 20px;
    }

    .showcase-image-wrapper img {
        width: 100%;
        max-width: 400px;
    }

    .features {
        padding: 2rem 20px;
    }

    .features-wrapper {
        padding: 1rem 1.5rem;
        align-items: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-card {
        grid-column: auto !important;
        transition: all 0.3s ease;
    }

    .feature-card.hidden-card {
        display: none;
    }

    .show-more-btn {
        display: block;
        margin: 2rem auto 0;
        padding: 0.9rem 2.5rem;
        background: var(--primary);
        color: white;
        border: none;
        border-radius: 100px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .show-more-btn:hover {
        transform: translateY(-2px);
        filter: brightness(1.1);
    }

    .show-more-btn.hidden {
        display: none;
    }

    .showcase-content {
        text-align: center;
        align-items: center;
        order: 1;
        transform: none;
    }

    .showcase-content .btn {
        display: none;
    }

    .nav-wrapper {
        padding: 0 10px;
    }

    .nav-container {
        border-radius: 100px;
        padding: 0.8rem 1.5rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }

    .nav-links {
        display: none !important;
    }

    .desktop-only {
        display: none !important;
    }

    .logo img {
        height: 34px;
    }

    .logo {
        font-size: 1.3rem;
    }

    .nav-actions {
        display: flex;
        gap: 0.5rem;
        align-items: center;
    }

    .menu-btn {
        display: none !important;
    }

    .hero {
        padding-top: 95px;
        padding-bottom: 40px;
        text-align: center;
        min-height: 100vh;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }

    .hero-text {
        font-size: 1.05rem;
        margin: 1rem 0 2rem;
        padding: 0 10px;
    }

    .btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
        min-height: 48px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-buttons {
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }



    .showcase-visual {
        order: 0;
        transform: translateY(20px) !important;
        opacity: 0;
        transition: all 0.8s ease-out;
    }

    .app-showcase.in-view .showcase-visual {
        transform: translateY(0) !important;
        opacity: 1;
    }

    .lyrics-showcase .showcase-visual {
        transform: translateY(20px) !important;
    }

    .section-description,
    .align-right .section-description,
    .align-left .section-description {
        margin: 1rem auto 2rem;
    }

    .app-showcase {
        padding-bottom: 2rem;
    }

    .download-cta {
        padding: 2rem 20px;
    }

    .cta-container {
        padding: 2rem 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Ipad specific styles */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
    .hero {
        text-align: center;
        padding-top: 140px;
        padding-bottom: 4rem;
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-content {
        margin: 0 auto;
        max-width: 80%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .showcase-container {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .showcase-content {
        order: 1;
        align-items: center;
        text-align: center;
    }

    .showcase-visual {
        order: 0;
        margin: 0 auto;
        transform: none !important;
        opacity: 1 !important;
    }

    .section-description,
    .align-right .section-description,
    .align-left .section-description {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-container {
        text-align: center;
        align-items: center;
    }

    .cta-buttons {
        justify-content: center;
    }
}