/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Main styles below */

:root {
    --dark-bg: #0F172A;
    --purple: #8B5CF6;
    --pink: #EC4899;
    --neon-green: #10B981;
    --text-primary: #ffffff;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --border-color: #334155;
    --gradient-purple: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    --gradient-music: linear-gradient(135deg, #8B5CF6 0%, #EC4899 50%, #10B981 100%);
    --glass-bg: rgba(15, 23, 42, 0.68);
}

body {
    font-family: 'Montserrat', 'Raleway', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Glassmorphism Effect */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(21px);
    -webkit-backdrop-filter: blur(21px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.2),
                0 0 20px rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
}

.glass-card:hover {
    border-color: rgba(236, 72, 153, 0.5);
    box-shadow: 0 8px 32px rgba(236, 72, 153, 0.3),
                0 0 30px rgba(236, 72, 153, 0.2);
    transform: scale(1.05);
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(21px);
    border-top: 1px solid rgba(139, 92, 246, 0.3);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    color: var(--text-secondary);
}

.cookie-content a {
    color: var(--purple);
    text-decoration: underline;
}

.cookie-btn {
    background: var(--gradient-purple);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(21px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    background: var(--gradient-music);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.nav {
    display: flex;
    gap: 30px;
}

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

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

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

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

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background: var(--purple);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: var(--purple);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    margin-top: 70px;
    overflow: hidden;
    background: var(--dark-bg);
}

/* Sound Waves Animation */
.sound-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    z-index: 1;
    opacity: 0.3;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, transparent, var(--purple));
    opacity: 0.2;
    animation: wave-animation 3s ease-in-out infinite;
}

.wave-1 {
    animation-delay: 0s;
    background: linear-gradient(to top, transparent, var(--purple));
}

.wave-2 {
    animation-delay: 0.5s;
    background: linear-gradient(to top, transparent, var(--pink));
    opacity: 0.15;
}

.wave-3 {
    animation-delay: 1s;
    background: linear-gradient(to top, transparent, var(--neon-green));
    opacity: 0.1;
}

.wave-4 {
    animation-delay: 1.5s;
    background: linear-gradient(to top, transparent, var(--purple));
    opacity: 0.08;
}

.wave-5 {
    animation-delay: 2s;
    background: linear-gradient(to top, transparent, var(--pink));
    opacity: 0.05;
}

@keyframes wave-animation {
    0%, 100% {
        transform: translateX(0) scaleY(1);
    }
    50% {
        transform: translateX(-50px) scaleY(1.2);
    }
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    filter: blur(2px);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.6) 50%, rgba(15, 23, 42, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 40px;
}

.genre-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(21px);
    border: 1px solid var(--purple);
    border-radius: 25px;
    color: var(--purple);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--gradient-music);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-block;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background: var(--gradient-purple);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(139, 92, 246, 0.6);
}

.btn-secondary {
    background: var(--glass-bg);
    backdrop-filter: blur(21px);
    color: var(--text-primary);
    border: 2px solid var(--purple);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

.btn-secondary:hover {
    background: rgba(139, 92, 246, 0.2);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--purple);
    color: var(--purple);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

/* Popular Albums */
.popular-albums {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 20px;
    margin-top: 40px;
}

.album-card {
    width: 180px;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    cursor: pointer;
}

.vinyl-record {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    animation: rotate 20s linear infinite;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
}

.vinyl-record img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vinyl-record::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: var(--dark-bg);
    border-radius: 50%;
    z-index: 1;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.album-card:hover .vinyl-record {
    animation-duration: 5s;
    box-shadow: 0 0 40px rgba(236, 72, 153, 0.7);
}

.album-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.album-info p {
    font-size: 13px;
    color: var(--text-secondary);
}

/* Equalizer */
.equalizer {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 4px;
    align-items: flex-end;
    height: 60px;
    z-index: 3;
}

/* Hero Accordion */
.hero-accordion {
    position: absolute;
    bottom: 100px;
    right: 30px;
    max-width: 400px;
    z-index: 3;
    background: var(--glass-bg);
    backdrop-filter: blur(21px);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.2);
}

.accordion-item {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.accordion-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-primary);
    padding: 15px 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.3s ease;
}

.accordion-header:hover {
    color: var(--purple);
}

.accordion-icon {
    font-size: 24px;
    transition: transform 0.3s ease;
    color: var(--purple);
    font-weight: 300;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--text-secondary);
    padding: 0;
    font-weight: 400;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    padding-bottom: 15px;
    padding-top: 10px;
}

.eq-bar {
    width: 6px;
    background: var(--gradient-purple);
    border-radius: 3px;
    animation: pulse 1.5s ease-in-out infinite;
    animation-delay: var(--delay);
    height: var(--height);
    box-shadow: 0 0 10px var(--purple);
}

@keyframes pulse {
    0%, 100% {
        transform: scaleY(0.5);
        opacity: 0.7;
    }
    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

.hero-indicators {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--purple);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.indicator.active {
    background: var(--purple);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.8);
    transform: scale(1.2);
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
    background: var(--gradient-music);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* Features Section */
.features {
    background: var(--dark-bg);
}

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

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(21px);
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(236, 72, 153, 0.5);
    box-shadow: 0 12px 40px rgba(236, 72, 153, 0.3),
                0 0 30px rgba(236, 72, 153, 0.2);
}

.feature-image {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    filter: brightness(0.8);
}

.feature-card:hover .feature-image img {
    transform: scale(1.1);
    filter: brightness(1);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px var(--purple));
    display: none;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-primary);
    font-weight: 700;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 400;
}

/* Streaming Section */
.streaming-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.streaming-text h2,
.podcasts-text h2,
.about-text h2 {
    text-align: left;
}

.streaming-text p,
.podcasts-text p,
.about-text p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 17px;
    line-height: 1.8;
    font-weight: 400;
}

.feature-list {
    list-style: none;
    margin-bottom: 30px;
}

.feature-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-secondary);
    font-weight: 400;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-weight: bold;
    font-size: 18px;
    text-shadow: 0 0 10px var(--neon-green);
}

.streaming-image img,
.podcasts-image img,
.about-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

/* Podcasts Section */
.podcasts {
    background: var(--dark-bg);
}

.podcasts-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Analytics Section */
.analytics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.analytics-card {
    background: var(--glass-bg);
    backdrop-filter: blur(21px);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
}

.analytics-card:hover {
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.3);
    transform: translateY(-5px);
}

.analytics-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--neon-green);
    font-weight: 700;
}

.analytics-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 400;
}

.analytics-image {
    margin-top: 40px;
}

.analytics-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

/* Pricing Section */
.pricing {
    background: var(--dark-bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--glass-bg);
    backdrop-filter: blur(21px);
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.1);
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.3);
}

.pricing-card.featured {
    border-color: var(--purple);
    border-width: 2px;
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.4);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-purple);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.5);
}

.pricing-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-primary);
    font-weight: 700;
}

.price {
    font-size: 48px;
    font-weight: 800;
    color: var(--purple);
    margin-bottom: 30px;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

.price span {
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-secondary);
    font-weight: 400;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-weight: bold;
    text-shadow: 0 0 10px var(--neon-green);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
}

/* Contact Section */
.contact {
    background: var(--dark-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    background: var(--glass-bg);
    backdrop-filter: blur(21px);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.1);
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--purple);
    font-weight: 700;
}

.contact-item p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 400;
}

.contact-item a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--purple);
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: var(--glass-bg);
    backdrop-filter: blur(21px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--purple);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    padding: 60px 0 30px;
}

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

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--text-primary);
    font-weight: 700;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 10px;
    font-weight: 400;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--purple);
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 400;
}

/* Policy Pages Styles */
.policy-page {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--glass-bg);
    backdrop-filter: blur(21px);
    padding: 50px;
    border-radius: 16px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.1);
}

.policy-content h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--text-primary);
    font-weight: 800;
    background: var(--gradient-music);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.policy-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--purple);
    font-weight: 700;
}

.policy-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-primary);
    font-weight: 600;
}

.policy-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 400;
}

.policy-content ul,
.policy-content ol {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 30px;
    font-weight: 400;
}

.policy-content li {
    margin-bottom: 10px;
}

.policy-content a {
    color: var(--purple);
    text-decoration: underline;
    transition: all 0.3s ease;
}

.policy-content a:hover {
    color: var(--pink);
    text-shadow: 0 0 10px rgba(236, 72, 153, 0.5);
}

/* Thanks Page */
.thanks-page {
    padding: 120px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.thanks-content {
    max-width: 600px;
    background: var(--glass-bg);
    backdrop-filter: blur(21px);
    padding: 60px 40px;
    border-radius: 16px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.2);
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--purple);
    font-weight: 800;
    background: var(--gradient-music);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.thanks-content p {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.8;
    font-weight: 400;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--glass-bg);
        backdrop-filter: blur(21px);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        border-bottom: 1px solid rgba(139, 92, 246, 0.3);
    }

    .nav.active {
        transform: translateX(0);
    }

    .burger-menu {
        display: flex;
    }

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

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

    .popular-albums {
        flex-direction: column;
        align-items: center;
    }

    .album-card {
        width: 100%;
        max-width: 250px;
    }

    .equalizer {
        display: none;
    }

    .hero-accordion {
        position: relative;
        bottom: auto;
        right: auto;
        max-width: 100%;
        margin: 20px;
    }

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

    .streaming-content,
    .podcasts-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .streaming-text h2,
    .podcasts-text h2,
    .about-text h2 {
        text-align: center;
    }

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

    .policy-content {
        padding: 30px 20px;
    }

    .policy-content h1 {
        font-size: 28px;
    }

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

    .cookie-btn {
        width: 100%;
    }
}

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

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

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

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

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

/* End of styles */
