:root {
    /* SoundCloud Official Color Palette */
    --soundcloud-orange: #FF5500;
    --soundcloud-orange-dark: #FF3300;
    --soundcloud-orange-light: #FF8800;
    --soundcloud-dark: #111111;
    --soundcloud-dark-alt: #1A1A1A;
    --soundcloud-gray-dark: #333333;
    --soundcloud-gray: #666666;
    --soundcloud-gray-light: #999999;
    --soundcloud-bg: #F2F2F2;
    --soundcloud-white: #FFFFFF;
    
    /* Gradient variations */
    --gradient-primary: linear-gradient(135deg, #FF5500 0%, #FF3300 100%);
    --gradient-warm: linear-gradient(135deg, #FF8800 0%, #FF5500 50%, #FF3300 100%);
    --gradient-dark: linear-gradient(135deg, #333333 0%, #111111 100%);
    --gradient-hero: linear-gradient(135deg, rgba(255, 85, 0, 0.95) 0%, rgba(255, 51, 0, 0.9) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(255, 85, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(255, 85, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(255, 85, 0, 0.2);
    --shadow-xl: 0 16px 48px rgba(255, 85, 0, 0.25);
    --shadow-dark: 0 4px 16px rgba(0, 0, 0, 0.3);
}

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

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--soundcloud-dark);
    background: var(--soundcloud-bg);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-size: 24px;
    font-weight: 800;
    color: var(--soundcloud-dark);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    font-size: 32px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.logo-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: var(--soundcloud-dark);
    font-weight: 600;
    font-size: 15px;
    position: relative;
    transition: color 0.3s ease;
}

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

.nav-link:hover {
    color: var(--soundcloud-orange);
}

.nav-link:hover::after {
    width: 100%;
}

.language-selector {
    position: relative;
}

.lang-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: transform 0.2s ease;
}

.lang-btn:hover {
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 3px;
    background: var(--soundcloud-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    opacity: 0.08;
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.3), transparent);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

.hero-background::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(240, 147, 251, 0.3), transparent);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(50px, -50px) rotate(120deg); }
    66% { transform: translate(-50px, 50px) rotate(240deg); }
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge {
    display: inline-block;
    background: rgba(255, 85, 0, 0.1);
    color: var(--soundcloud-orange);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 85, 0, 0.2);
    animation: slideIn 0.6s ease 0.2s backwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
    animation: slideIn 0.6s ease 0.3s backwards;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--soundcloud-gray);
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: slideIn 0.6s ease 0.4s backwards;
}

/* Download Card */
.download-card {
    background: white;
    border-radius: 20px;
    padding: 16px;
    box-shadow: var(--shadow-xl);
    display: flex;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto 32px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    animation: slideIn 0.6s ease 0.5s backwards;
}

.download-card:hover {
    border-color: var(--soundcloud-orange);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

.input-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 8px;
}

.input-icon {
    color: var(--soundcloud-gray);
    flex-shrink: 0;
}

.url-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    font-family: 'Outfit', sans-serif;
    color: var(--soundcloud-dark);
    background: transparent;
}

.url-input::placeholder {
    color: var(--gray-light);
}

.download-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 18px 36px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
    white-space: nowrap;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
}

.download-btn:active {
    transform: translateY(0);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.download-btn:hover .btn-icon {
    transform: translateY(2px);
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    animation: slideIn 0.6s ease 0.6s backwards;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--soundcloud-gray);
}

.trust-icon {
    color: #10B981;
    font-weight: bold;
    font-size: 18px;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--soundcloud-gray);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    padding: 40px 32px;
    border-radius: 20px;
    border: 1px solid #E2E8F0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--soundcloud-orange);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--soundcloud-dark);
}

.feature-text {
    color: var(--soundcloud-gray);
    line-height: 1.7;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.steps-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

.step-card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
}

.step-card:hover {
    border-color: var(--soundcloud-orange);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--soundcloud-dark);
}

.step-text {
    color: var(--soundcloud-gray);
    line-height: 1.6;
}

.step-arrow {
    font-size: 32px;
    color: var(--soundcloud-orange);
    font-weight: bold;
}

.cta-box {
    background: var(--gradient-primary);
    color: white;
    padding: 48px;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.cta-box h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.cta-button {
    display: inline-block;
    background: white;
    color: var(--soundcloud-orange);
    padding: 16px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.faq-item {
    background: #F8FAFC;
    padding: 32px;
    border-radius: 16px;
    border-left: 4px solid var(--soundcloud-orange);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.faq-question {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--soundcloud-dark);
}

.faq-answer {
    color: var(--soundcloud-gray);
    line-height: 1.7;
}

.faq-cta {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    border-radius: 20px;
}

.faq-cta p {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--soundcloud-dark);
}

.faq-link {
    color: var(--soundcloud-orange);
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

.faq-link:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--soundcloud-dark);
    color: white;
    padding: 80px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer-text {
    color: #CCCCCC;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gradient-primary);
    transform: translateY(-2px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
    line-height: 1.6;
}

.footer-links a {
    color: #CCCCCC;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
}

.footer-links a:hover {
    color: var(--soundcloud-orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    text-align: center;
}

.footer-bottom p {
    color: #999999;
    margin-bottom: 12px;
    line-height: 1.7;
}

.disclaimer {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .download-card {
        flex-direction: column;
    }

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

    .section-title {
        font-size: 36px;
    }

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

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .container {
        padding: 0 16px;
    }
}

/* Keyword Rich Content Section */
.content-rich {
    padding: 80px 0;
    background: white;
}

.content-box {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, #FFF5F0 0%, #FFFFFF 100%);
    padding: 48px;
    border-radius: 20px;
    border-left: 6px solid var(--soundcloud-orange);
    box-shadow: var(--shadow-md);
}

.content-box h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--soundcloud-dark);
    margin-bottom: 24px;
}

.content-box h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--soundcloud-dark);
    margin-top: 32px;
    margin-bottom: 16px;
}

.content-box p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--soundcloud-gray-dark);
    margin-bottom: 20px;
}

.content-box strong {
    color: var(--soundcloud-orange);
    font-weight: 600;
}

.keyword-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 2px solid rgba(255, 85, 0, 0.1);
}

.tag {
    background: var(--soundcloud-orange);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: default;
}

.tag:hover {
    background: var(--soundcloud-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 85, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .content-box {
        padding: 32px 24px;
    }
    
    .content-box h2 {
        font-size: 28px;
    }
    
    .content-box h3 {
        font-size: 22px;
    }
}

/* Line Height Improvements */
.hero-subtitle {
    line-height: 1.7;
}

.section-subtitle {
    line-height: 1.7;
}

.feature-text {
    line-height: 1.8;
}

.step-text {
    line-height: 1.7;
}

.faq-answer {
    line-height: 1.8;
}

p {
    line-height: 1.7;
}

/* Footer Title Styling */
.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: white;
}

/* Social Links Enhancement */
.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 85, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--soundcloud-orange);
    transform: translateY(-2px);
}

/* Fix any remaining color issues */
.nav-link:hover {
    color: var(--soundcloud-orange);
}

.faq-link {
    color: var(--soundcloud-orange);
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

.faq-link:hover {
    text-decoration: underline;
    color: var(--soundcloud-orange-dark);
}
