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

:root {
    --primary-color: #e85d3b;
    --secondary-color: #3a3a3a;
    --text-color: #e5e5e5;
    --text-gray: #999;
    --bg-color: #0a0a0a;
    --bg-section: #1a1a1a;
    --gray-dark: #2a2a2a;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header - Remove it since not in screenshots */
.site-header {
    display: none;
}

/* Hero Section */
.hero {
    background-color: var(--bg-color);
    padding: 3rem 0 6rem;
    position: relative;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    padding-left: 40px;
}

.badge-icon {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.badge-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
}

.badge-beta {
    background-color: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.hero-content {
    text-align: left;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: white;
}

.hero-title-orange {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-icon {
    font-size: 1.125rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #d64d2e;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #4a4a4a;
    transform: translateY(-2px);
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.feature-icon {
    font-size: 1.25rem;
}

.hero-credit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.credit-logo {
    color: #8b5cf6;
    font-size: 0.75rem;
}

.credit-brand {
    font-weight: 600;
    color: white;
}

/* Store Badges */
.btn-store {
    display: inline-flex;
    padding: 0;
    background: transparent;
    border: none;
    transition: all 0.3s;
}

.btn-store:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.store-badge {
    height: 50px;
    width: auto;
    display: block;
}

/* Credit Logo */
.credit-logo-img {
    height: 30px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    margin-left: 0.5rem;
}

.credit-logo-img-inline {
    height: 24px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    margin-left: 0.5rem;
}

/* Phone Mockup */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 2rem;
}

.phone-mockup {
    background: linear-gradient(135deg, #f5f5f5 0%, #e5e5e5 100%);
    border-radius: 40px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 380px;
}

.phone-screen {
    background: #1a1a1a;
    border-radius: 30px;
    padding: 2rem 1.5rem;
    min-height: 600px;
    display: flex;
    flex-direction: column;
}

.screen-hint {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    text-align: center;
    margin-bottom: 2rem;
}

.screen-content h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.screen-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.screen-example {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
}

.screen-input {
    background: #2a2a2a;
    border-radius: 8px;
    height: 80px;
    margin-bottom: 1rem;
}

.screen-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.tag {
    background: #2a2a2a;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.screen-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
}

/* Providers Section */
.providers-section {
    background-color: var(--bg-section);
    padding: 6rem 0;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .providers-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.provider-card {
    background: var(--bg-color);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s;
}

.provider-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

/* Availability styling */
.provider-available {
    border-color: var(--primary-color);
}

.provider-coming-soon {
    opacity: 0.85;
}

/* Removed emoji icons */
.provider-icon { display: none; }

.provider-name {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.provider-status {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.provider-status-available {
    background-color: var(--primary-color);
    color: white;
}

.provider-status-coming {
    background-color: var(--gray-dark);
    color: var(--text-gray);
}

/* Provider-specific subtle brand tints (gray-toned) */
.provider-apple {
    background: linear-gradient(180deg, rgba(255, 59, 48, 0.08), rgba(255, 59, 48, 0.03)), var(--bg-color);
    border-color: rgba(255, 59, 48, 0.3);
}

.provider-spotify {
    background: linear-gradient(180deg, rgba(29, 185, 84, 0.08), rgba(29, 185, 84, 0.03)), var(--bg-color);
    border-color: rgba(29, 185, 84, 0.3);
}

.provider-amazon {
    background: linear-gradient(180deg, rgba(107, 78, 255, 0.08), rgba(107, 78, 255, 0.03)), var(--bg-color);
    border-color: rgba(107, 78, 255, 0.3);
}

.provider-deezer {
    background: linear-gradient(180deg, rgba(0, 199, 242, 0.08), rgba(0, 199, 242, 0.03)), var(--bg-color);
    border-color: rgba(0, 199, 242, 0.3);
}

/* Features Section */
.features-section {
    background-color: var(--bg-color);
    padding: 6rem 0;
}

.section-heading {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: white;
}

.highlight-orange {
    color: var(--primary-color);
}

.section-subheading {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 4rem;
}

.features-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-box {
    background: var(--bg-section);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    transition: transform 0.3s, border-color 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.feature-icon-new {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: white;
}

.feature-description {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Steps Section */
.steps-section {
    background-color: var(--bg-color);
    padding: 6rem 0;
}

.section-heading-center {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: white;
}

.section-subheading-center {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 4rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.step-item {
    text-align: center;
}

.step-phone {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.step-mockup {
    background: linear-gradient(135deg, #f5f5f5 0%, #e5e5e5 100%);
    border-radius: 30px;
    padding: 15px;
    width: 100%;
    max-width: 280px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.mockup-content {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    min-height: 400px;
}

.mockup-content h4 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.mockup-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.5;
}

.mockup-desc-small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    margin-bottom: 2rem;
}

.playlist-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.playlist-item {
    background: #2a2a2a;
    padding: 1rem;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    text-align: left;
}

.mockup-button {
    background: var(--primary-color);
    color: white;
    padding: 0.875rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 2rem;
}

.step-label {
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: white;
}

.step-description {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
    background-color: var(--bg-color);
    padding: 6rem 0 8rem;
    text-align: center;
}

.final-cta-content {
    max-width: 900px;
    margin: 0 auto;
}

.final-cta-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
}

.final-cta-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.final-cta-credit {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.credit-icon {
    color: #8b5cf6;
}

/* Footer */
.site-footer {
    background-color: var(--bg-color);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    padding: 2.5rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-left {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.footer-icon {
    font-size: 1.25rem;
}

.footer-brand {
    font-weight: 600;
    color: white;
}

.footer-center {
    display: flex;
    gap: 2rem;
}

.footer-center a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-center a:hover {
    color: white;
}

.footer-copyright {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-content {
        text-align: center;
    }

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

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

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

    .hero-screenshot {
        max-width: 300px;
    }

    .step-screenshot {
        max-width: 220px;
    }

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

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-heading,
    .section-heading-center,
    .final-cta-title {
        font-size: 2rem;
    }

    .hero-buttons,
    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

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

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

    .provider-card {
        padding: 2rem 1.5rem;
    }

    .provider-icon {
        font-size: 3rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-center {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Language Switcher */
.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.lang-button {
    background-color: var(--bg-section);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.75rem 1.25rem;
    color: white;
    cursor: pointer;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.lang-button:hover {
    background-color: var(--gray-dark);
    border-color: var(--primary-color);
}

.lang-arrow {
    font-size: 0.75rem;
    transition: transform 0.3s;
}

.lang-button.active .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background-color: var(--bg-section);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    min-width: 180px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: none;
    overflow: hidden;
}

.lang-dropdown.active {
    display: block;
}

.lang-option {
    display: block;
    padding: 0.75rem 1.25rem;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s;
    font-size: 1rem;
}

.lang-option:hover {
    background-color: var(--gray-dark);
}

/* Hero Screenshot */
.hero-screenshot {
    max-width: 350px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    display: block;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 0;
    width: 100%;
}

/* Step Screenshots */
.step-screenshot {
    max-width: 250px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: block;
}

.step-phone {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Remove old phone mockup styles that are no longer needed */
.phone-mockup,
.phone-screen,
.screen-hint,
.screen-content,
.screen-input,
.screen-tags,
.tag,
.screen-button,
.step-mockup,
.mockup-content,
.mockup-desc,
.mockup-desc-small,
.playlist-list,
.playlist-item,
.mockup-button {
    display: none;
}

@media (max-width: 768px) {
    .language-switcher {
        top: 10px;
        right: 10px;
    }

    .lang-button {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }

    .hero-screenshot {
        max-width: 280px;
        max-height: none;
    }

    .step-screenshot {
        max-width: 200px;
        max-height: none;
    }

    .hero-image {
        padding: 2rem 0;
    }

    .step-phone {
        margin-bottom: 1.5rem;
    }

    .store-badge {
        height: 45px;
    }

    .credit-logo-img {
        height: 24px;
    }

    .credit-logo-img-inline {
        height: 20px;
    }
}

@media (max-width: 480px) {
    .hero-screenshot {
        max-width: 240px;
    }

    .step-screenshot {
        max-width: 180px;
    }

    .store-badge {
        height: 40px;
    }

    .credit-logo-img,
    .credit-logo-img-inline {
        height: 18px;
    }
}

/* Legal Pages */
.legal-page {
    background-color: var(--bg-color);
    padding: 6rem 0 4rem;
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-section);
    padding: 3rem;
    border-radius: 12px;
}

.legal-content h1 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

.legal-content h2 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-content ul {
    color: var(--text-gray);
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-page {
        padding: 4rem 0 2rem;
    }

    .legal-content {
        padding: 2rem 1.5rem;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .legal-content h2 {
        font-size: 1.5rem;
    }

    .legal-content h3 {
        font-size: 1.2rem;
    }
}

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

:root {
    --primary-color: #e85d3b;
    --secondary-color: #3a3a3a;
    --text-color: #e5e5e5;
    --text-gray: #999;
    --bg-color: #0a0a0a;
    --bg-section: #1a1a1a;
    --gray-dark: #2a2a2a;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header - Remove it since not in screenshots */
.site-header {
    display: none;
}

/* Hero Section */
.hero {
    background-color: var(--bg-color);
    padding: 3rem 0 6rem;
    position: relative;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    padding-left: 40px;
}

.badge-icon {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.badge-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
}

.badge-beta {
    background-color: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.hero-content {
    text-align: left;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: white;
}

.hero-title-orange {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-icon {
    font-size: 1.125rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #d64d2e;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #4a4a4a;
    transform: translateY(-2px);
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.feature-icon {
    font-size: 1.25rem;
}

.hero-credit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.credit-logo {
    color: #8b5cf6;
    font-size: 0.75rem;
}

.credit-brand {
    font-weight: 600;
    color: white;
}

/* Store Badges */
.btn-store {
    display: inline-flex;
    padding: 0;
    background: transparent;
    border: none;
    transition: all 0.3s;
}

.btn-store:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.store-badge {
    height: 50px;
    width: auto;
    display: block;
}

/* Credit Logo */
.credit-logo-img {
    height: 30px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    margin-left: 0.5rem;
}

.credit-logo-img-inline {
    height: 24px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    margin-left: 0.5rem;
}

/* Phone Mockup */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 2rem;
}

.phone-mockup {
    background: linear-gradient(135deg, #f5f5f5 0%, #e5e5e5 100%);
    border-radius: 40px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 380px;
}

.phone-screen {
    background: #1a1a1a;
    border-radius: 30px;
    padding: 2rem 1.5rem;
    min-height: 600px;
    display: flex;
    flex-direction: column;
}

.screen-hint {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    text-align: center;
    margin-bottom: 2rem;
}

.screen-content h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.screen-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.screen-example {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
}

.screen-input {
    background: #2a2a2a;
    border-radius: 8px;
    height: 80px;
    margin-bottom: 1rem;
}

.screen-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.tag {
    background: #2a2a2a;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.screen-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
}

/* Providers Section */
.providers-section {
    background-color: var(--bg-section);
    padding: 6rem 0;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .providers-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.provider-card {
    background: var(--bg-color);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s;
}

.provider-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

/* Availability styling */
.provider-available {
    border-color: var(--primary-color);
}

.provider-coming-soon {
    opacity: 0.85;
}

/* Removed emoji icons */
.provider-icon { display: none; }

.provider-name {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.provider-status {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.provider-status-available {
    background-color: var(--primary-color);
    color: white;
}

.provider-status-coming {
    background-color: var(--gray-dark);
    color: var(--text-gray);
}

/* Provider-specific subtle brand tints (gray-toned) */
.provider-apple {
    background: linear-gradient(180deg, rgba(255, 59, 48, 0.08), rgba(255, 59, 48, 0.03)), var(--bg-color);
    border-color: rgba(255, 59, 48, 0.3);
}

.provider-spotify {
    background: linear-gradient(180deg, rgba(29, 185, 84, 0.08), rgba(29, 185, 84, 0.03)), var(--bg-color);
    border-color: rgba(29, 185, 84, 0.3);
}

.provider-amazon {
    background: linear-gradient(180deg, rgba(107, 78, 255, 0.08), rgba(107, 78, 255, 0.03)), var(--bg-color);
    border-color: rgba(107, 78, 255, 0.3);
}

.provider-deezer {
    background: linear-gradient(180deg, rgba(0, 199, 242, 0.08), rgba(0, 199, 242, 0.03)), var(--bg-color);
    border-color: rgba(0, 199, 242, 0.3);
}

/* Features Section */
.features-section {
    background-color: var(--bg-color);
    padding: 6rem 0;
}

.section-heading {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: white;
}

.highlight-orange {
    color: var(--primary-color);
}

.section-subheading {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 4rem;
}

.features-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-box {
    background: var(--bg-section);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    transition: transform 0.3s, border-color 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.feature-icon-new {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: white;
}

.feature-description {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Steps Section */
.steps-section {
    background-color: var(--bg-color);
    padding: 6rem 0;
}

.section-heading-center {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: white;
}

.section-subheading-center {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 4rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.step-item {
    text-align: center;
}

.step-phone {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.step-mockup {
    background: linear-gradient(135deg, #f5f5f5 0%, #e5e5e5 100%);
    border-radius: 30px;
    padding: 15px;
    width: 100%;
    max-width: 280px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.mockup-content {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    min-height: 400px;
}

.mockup-content h4 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.mockup-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.5;
}

.mockup-desc-small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    margin-bottom: 2rem;
}

.playlist-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.playlist-item {
    background: #2a2a2a;
    padding: 1rem;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    text-align: left;
}

.mockup-button {
    background: var(--primary-color);
    color: white;
    padding: 0.875rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 2rem;
}

.step-label {
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: white;
}

.step-description {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
    background-color: var(--bg-color);
    padding: 6rem 0 8rem;
    text-align: center;
}

.final-cta-content {
    max-width: 900px;
    margin: 0 auto;
}

.final-cta-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
}

.final-cta-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.final-cta-credit {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.credit-icon {
    color: #8b5cf6;
}

/* Footer */
.site-footer {
    background-color: var(--bg-color);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    padding: 2.5rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-left {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.footer-icon {
    font-size: 1.25rem;
}

.footer-brand {
    font-weight: 600;
    color: white;
}

.footer-center {
    display: flex;
    gap: 2rem;
}

.footer-center a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-center a:hover {
    color: white;
}

.footer-copyright {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-content {
        text-align: center;
    }

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

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

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

    .hero-screenshot {
        max-width: 300px;
    }

    .step-screenshot {
        max-width: 220px;
    }

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

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-heading,
    .section-heading-center,
    .final-cta-title {
        font-size: 2rem;
    }

    .hero-buttons,
    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

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

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

    .provider-card {
        padding: 2rem 1.5rem;
    }

    .provider-icon {
        font-size: 3rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-center {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Language Switcher */
.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.lang-button {
    background-color: var(--bg-section);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.75rem 1.25rem;
    color: white;
    cursor: pointer;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.lang-button:hover {
    background-color: var(--gray-dark);
    border-color: var(--primary-color);
}

.lang-arrow {
    font-size: 0.75rem;
    transition: transform 0.3s;
}

.lang-button.active .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background-color: var(--bg-section);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    min-width: 180px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: none;
    overflow: hidden;
}

.lang-dropdown.active {
    display: block;
}

.lang-option {
    display: block;
    padding: 0.75rem 1.25rem;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s;
    font-size: 1rem;
}

.lang-option:hover {
    background-color: var(--gray-dark);
}

/* Hero Screenshot */
.hero-screenshot {
    max-width: 350px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    display: block;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 0;
    width: 100%;
}

/* Step Screenshots */
.step-screenshot {
    max-width: 250px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: block;
}

.step-phone {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Remove old phone mockup styles that are no longer needed */
.phone-mockup,
.phone-screen,
.screen-hint,
.screen-content,
.screen-input,
.screen-tags,
.tag,
.screen-button,
.step-mockup,
.mockup-content,
.mockup-desc,
.mockup-desc-small,
.playlist-list,
.playlist-item,
.mockup-button {
    display: none;
}

@media (max-width: 768px) {
    .language-switcher {
        top: 10px;
        right: 10px;
    }

    .lang-button {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }

    .hero-screenshot {
        max-width: 280px;
        max-height: none;
    }

    .step-screenshot {
        max-width: 200px;
        max-height: none;
    }

    .hero-image {
        padding: 2rem 0;
    }

    .step-phone {
        margin-bottom: 1.5rem;
    }

    .store-badge {
        height: 45px;
    }

    .credit-logo-img {
        height: 24px;
    }

    .credit-logo-img-inline {
        height: 20px;
    }
}

@media (max-width: 480px) {
    .hero-screenshot {
        max-width: 240px;
    }

    .step-screenshot {
        max-width: 180px;
    }

    .store-badge {
        height: 40px;
    }

    .credit-logo-img,
    .credit-logo-img-inline {
        height: 18px;
    }
}

/* Legal Pages */
.legal-page {
    background-color: var(--bg-color);
    padding: 6rem 0 4rem;
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-section);
    padding: 3rem;
    border-radius: 12px;
}

.legal-content h1 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

.legal-content h2 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-content ul {
    color: var(--text-gray);
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-page {
        padding: 4rem 0 2rem;
    }

    .legal-content {
        padding: 2rem 1.5rem;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .legal-content h2 {
        font-size: 1.5rem;
    }

    .legal-content h3 {
        font-size: 1.2rem;
    }
}

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 2000;
}

.modal.open {
    display: block;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.modal-content {
    position: relative;
    max-width: 520px;
    margin: 10vh auto;
    background: var(--bg-section);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
    color: var(--text-color);
}

.modal-close {
    position: absolute;
    top: 0.5rem;
    right: 0.75rem;
    background: transparent;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-text {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.form-row {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-row label {
    color: var(--text-color);
    font-weight: 600;
}

.form-row input {
    background: #2a2a2a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: white;
    outline: none;
}

.form-row input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(232, 93, 59, 0.2);
}

.form-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.btn-secondary {
    background-color: var(--gray-dark);
    color: white;
}

.btn-secondary:hover {
    background-color: #555;
    transform: translateY(-2px);
}

.form-note {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-top: 0.75rem;
}

.form-message {
    margin-top: 0.75rem;
    font-weight: 600;
}

@media (max-width: 600px) {
    .modal-content {
        margin: 8vh 1rem;
        padding: 1rem;
    }
}

/* Icon images for header badge and footer */
.badge-icon-img {
    width: 20px;
    height: 20px;
    border-radius: 4px; /* slightly rounded corners */
    display: inline-block;
    object-fit: cover;
}

.footer-icon-img {
    width: 20px;
    height: 20px;
    border-radius: 4px; /* slightly rounded corners */
    display: inline-block;
    object-fit: cover;
}
