@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
    --bg-darker: #08090c;
    --bg-dark: #0f1118;
    --bg-card: rgba(18, 20, 29, 0.65);
    --border-color: rgba(255, 255, 255, 0.08);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    
    --primary: #8b5cf6;
    --primary-glow: rgba(139, 92, 246, 0.45);
    --primary-hover: #7c3aed;
    
    --secondary: #06b6d4;
    --secondary-glow: rgba(6, 182, 212, 0.45);
    
    --accent: #ec4899;
    --accent-glow: rgba(236, 72, 153, 0.45);
    
    --success: #10b981;
    --error: #ef4444;
    
    --font-head: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    background-color: #050608;
    background-image: 
        radial-gradient(ellipse at top left, rgba(20, 15, 40, 0.8) 0%, transparent 40%),
        radial-gradient(ellipse at bottom right, rgba(10, 20, 35, 0.8) 0%, transparent 40%),
        linear-gradient(180deg, rgba(5, 6, 8, 0) 0%, rgba(5, 6, 8, 0.9) 100%);
    background-attachment: fixed;
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    position: relative;
}

/* Add a subtle cinematic noise texture overlay */
body::after {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)"/></svg>');
    opacity: 0.03;
    pointer-events: none;
    z-index: 9999;
}

.main-wrapper {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

/* Decorative Background Elements - clipped to prevent horizontal scrolling */
.bg-glow-1 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-glow) 0%, rgba(8, 9, 12, 0) 70%);
    top: -100px;
    right: -50px;
    z-index: -1;
    pointer-events: none;
    opacity: 0.8;
}

.bg-glow-2 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--secondary-glow) 0%, rgba(8, 9, 12, 0) 70%);
    top: 600px;
    left: -150px;
    z-index: -1;
    pointer-events: none;
    opacity: 0.6;
}

.bg-glow-3 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.15) 0%, rgba(8, 9, 12, 0) 70%);
    bottom: 400px;
    right: -50px;
    z-index: -1;
    pointer-events: none;
    opacity: 0.7;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 4px;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
    overflow: hidden;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(8, 9, 12, 0.75);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

header.scrolled {
    padding: 5px 0;
    background: rgba(8, 9, 12, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
    background: linear-gradient(135deg, #fff 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo i {
    font-size: 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--text-main);
}

.btn-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

.btn-nav:hover {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    border: none;
    border-radius: 50px;
    color: white;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transition: 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.45);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-main);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--text-muted);
}

/* Glass Card */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    padding: 24px;
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 140px;
    padding-bottom: 60px;
    text-align: center;
    overflow: hidden;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.25);
    padding: 5px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
    animation: pulseGlow 3s infinite alternate;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 5px rgba(139, 92, 246, 0.1); }
    100% { box-shadow: 0 0 15px rgba(139, 92, 246, 0.25); }
}

.hero h1 {
    font-family: var(--font-head);
    font-size: clamp(32px, 5.5vw, 56px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero h1 span.gradient-text-1 {
    background: linear-gradient(135deg, #fff 30%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero h1 span.gradient-text-2 {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p.lead {
    font-size: clamp(15px, 2vw, 18px);
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 36px auto;
}

.hero-ctas {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-social-proof {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.stars {
    color: #fbbf24;
    display: flex;
    gap: 4px;
    font-size: 15px;
}

.social-proof-text {
    font-size: 13px;
    color: var(--text-muted);
}

.social-proof-text strong {
    color: var(--text-main);
}

/* Sounds Library Section */
.sfx-section {
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 50%, var(--bg-darker) 100%);
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.section-tag {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--secondary);
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 14px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 15px;
}

/* Premium Playlist Card Container (Spotify / Stock Audio Style) */
.sfx-playlist-card {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Premium Row Component - Single horizontal block */
.sfx-row {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid transparent;
    margin-bottom: 12px;
    transition: var(--transition);
    position: relative;
}

.sfx-row:last-child {
    margin-bottom: 0;
}

.sfx-row:hover {
    background: rgba(255, 255, 255, 0.035);
    border-color: rgba(255, 255, 255, 0.08);
}

.sfx-row.active-sfx {
    background: rgba(139, 92, 246, 0.08);
    border-color: rgba(139, 92, 246, 0.35);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.1);
}

/* Thumbnail Play Button Wrapper */
.sfx-thumb-container {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    margin-right: 18px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.sfx-thumb-container:hover {
    transform: scale(1.03);
}

/* Unique Gradients for Thumbnails */
.thumb-grad-1 { background: linear-gradient(135deg, #10b981 0%, #059669 100%); }
.thumb-grad-2 { background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%); }
.thumb-grad-3 { background: linear-gradient(135deg, #ec4899 0%, #be185d 100%); }
.thumb-grad-4 { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); }
.thumb-grad-5 { background: linear-gradient(135deg, #8b5cf6 0%, #5b21b6 100%); }
.thumb-grad-6 { background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%); }
.thumb-grad-7 { background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%); }
.thumb-grad-8 { background: linear-gradient(135deg, #14b8a6 0%, #0f766e 100%); }
.thumb-grad-9 { background: linear-gradient(135deg, #f43f5e 0%, #be123c 100%); }
.thumb-grad-10 { background: linear-gradient(135deg, #6366f1 0%, #4338ca 100%); }

/* Play/Pause icon overlays */
.sfx-thumb-play {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.25);
    color: white;
    font-size: 14px;
    transition: var(--transition);
    opacity: 0.85;
}

.sfx-thumb-container:hover .sfx-thumb-play {
    background: rgba(0, 0, 0, 0.45);
    opacity: 1;
}

.active-sfx .sfx-thumb-play {
    background: rgba(139, 92, 246, 0.5);
    color: white;
}

/* Sound Info Block */
.sfx-info-block {
    display: flex;
    flex-direction: column;
    width: 190px;
    min-width: 160px;
    flex-shrink: 0;
    margin-right: 20px;
}

.sfx-title {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.3;
}

.sfx-author {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Audio Waveform Canvas Box */
.sfx-wave-container {
    flex-grow: 1;
    height: 32px;
    margin-right: 20px;
    min-width: 100px;
    position: relative;
    display: flex;
    align-items: center;
}

.sfx-wave-canvas {
    width: 100%;
    height: 100%;
    cursor: pointer;
    opacity: 0.4;
    transition: var(--transition);
}

.sfx-row:hover .sfx-wave-canvas,
.active-sfx .sfx-wave-canvas {
    opacity: 1;
}

/* Duration Block */
.sfx-duration {
    font-size: 13px;
    color: var(--text-muted);
    width: 40px;
    flex-shrink: 0;
    text-align: center;
    margin-right: 20px;
    font-variant-numeric: tabular-nums;
}

/* Category/Tags Meta Block */
.sfx-meta-block {
    display: flex;
    flex-direction: column;
    width: 150px;
    flex-shrink: 0;
    text-align: right;
    justify-content: center;
}

.sfx-cat {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    background: rgba(139, 92, 246, 0.15);
    padding: 3px 10px;
    border-radius: 20px;
    display: inline-block;
    align-self: flex-end;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.sfx-tags {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Live Global Visualizer Canvas */
.global-visualizer-container {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.global-visualizer-card {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
}

#canvas-visualizer {
    width: 100%;
    height: 45px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.global-vis-title {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 8px;
}

/* Features/Benefits Section */
.features {
    background: var(--bg-darker);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.feature-card {
    text-align: left;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-3px);
}

.feature-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.12) 0%, rgba(6, 182, 212, 0.12) 100%);
    border: 1px solid rgba(139, 92, 246, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 20px;
    color: var(--secondary);
}

.feature-card h3 {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Pricing Section */
.pricing {
    position: relative;
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.pricing-wrapper {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 30px;
}

.pricing-card {
    width: 100%;
    max-width: 540px;
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    background: linear-gradient(145deg, rgba(18, 20, 29, 0.9) 0%, rgba(10, 11, 16, 0.95) 100%);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.12);
    padding: 36px;
    position: relative;
    overflow: hidden;
}

.badge-pricing {
    position: absolute;
    top: 24px;
    right: 24px;
    background: linear-gradient(135deg, var(--accent) 0%, #db2777 100%);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-title {
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
}

.pricing-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 24px;
}

.pricing-block {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
}

.price-curr {
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 600;
    color: var(--secondary);
}

.price-val {
    font-family: var(--font-head);
    font-size: 56px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
}

.price-slash {
    font-size: 18px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.countdown-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    padding: 8px 14px;
    border-radius: 8px;
    color: #ef4444;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    width: fit-content;
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

.countdown-box i {
    animation: shake 1.5s infinite;
}

@keyframes shake {
    0%, 100% { transform: rotate(0); }
    15% { transform: rotate(-15deg); }
    30% { transform: rotate(15deg); }
    45% { transform: rotate(-10deg); }
    60% { transform: rotate(10deg); }
    75% { transform: rotate(-5deg); }
    85% { transform: rotate(5deg); }
}

.pricing-features-list {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 12px;
    color: var(--text-main);
}

.pricing-features-list li i {
    color: var(--success);
    font-size: 14px;
    background: rgba(16, 185, 129, 0.1);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.btn-pricing-cta {
    width: 100%;
    padding: 16px;
    font-size: 16px;
}

/* Reviews Carousel */
.reviews {
    background: var(--bg-darker);
}

.slider-container {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
    overflow: hidden;
}

.reviews-slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-slide {
    min-width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

.review-card {
    text-align: center;
    padding: 30px;
}

.reviewer-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 16px auto;
    border: 2px solid var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
    object-fit: cover;
}

.review-stars {
    color: #fbbf24;
    margin-bottom: 16px;
    font-size: 15px;
}

.review-text {
    font-family: var(--font-head);
    font-size: 18px;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 20px;
    color: var(--text-main);
}

.reviewer-name {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 2px;
}

.reviewer-role {
    font-size: 12px;
    color: var(--text-muted);
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
}

.btn-slider {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-main);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-slider:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--text-muted);
}

.slider-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active-dot {
    background: var(--primary);
    width: 18px;
    border-radius: 3px;
}

/* FAQ Section */
.faq {
    background: var(--bg-dark);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    user-select: none;
}

.faq-question i {
    font-size: 12px;
    transition: var(--transition);
    color: var(--text-muted);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    color: var(--text-muted);
    font-size: 14px;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-item.active-faq {
    border-color: rgba(139, 92, 246, 0.2);
    background: rgba(18, 20, 29, 0.85);
}

.faq-item.active-faq .faq-question i {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-item.active-faq .faq-answer {
    padding: 0 20px 20px 20px;
    max-height: 180px;
}

/* Checkout Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 6, 8, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 16px;
}

.modal-overlay.open-modal {
    opacity: 1;
    pointer-events: auto;
}

.checkout-modal {
    width: 100%;
    max-width: 480px;
    background: #0f111a;
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.modal-overlay.open-modal .checkout-modal {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.modal-close:hover {
    background: rgba(255,255,255,0.08);
    color: var(--text-main);
}

.modal-header {
    padding: 24px 24px 16px 24px;
    border-bottom: 1px solid var(--border-color);
}

.modal-title {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 700;
}

.modal-subtitle {
    font-size: 12px;
    color: var(--text-muted);
}

.modal-body {
    padding: 24px;
}

/* Payment Steps UI */
.payment-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
}

.payment-tab {
    flex: 1;
    padding: 8px 0;
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    text-align: center;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.payment-tab.active-tab {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.tab-pane {
    display: none;
}

.tab-pane.active-pane {
    display: block;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--text-muted);
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 10px 14px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 13px;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.15);
}

.form-row {
    display: flex;
    gap: 12px;
}

.form-row .form-group {
    flex: 1;
}

.qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: rgba(255,255,255,0.015);
    border: 1px dashed var(--border-color);
    border-radius: 12px;
}

.qr-code {
    width: 150px;
    height: 150px;
    background: white;
    padding: 8px;
    border-radius: 8px;
    margin-bottom: 12px;
}

.qr-instruction {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
}

/* Order Summary Box */
.order-summary {
    background: rgba(255,255,255,0.015);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 6px;
}

.summary-row:last-child {
    margin-bottom: 0;
    padding-top: 6px;
    border-top: 1px solid var(--border-color);
    font-weight: 700;
    color: var(--text-main);
}

.btn-checkout {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    font-size: 15px;
}

/* Success View */
.success-view {
    text-align: center;
    padding: 16px 0;
    display: none;
}

.success-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.15);
    color: var(--success);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 20px auto;
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.success-title {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.success-text {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
}

.download-box {
    background: rgba(6, 182, 212, 0.04);
    border: 1px solid rgba(6, 182, 212, 0.15);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--secondary);
    border: none;
    border-radius: 8px;
    color: var(--bg-darker);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 12px var(--secondary-glow);
    transition: var(--transition);
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(6, 182, 212, 0.5);
}

/* Footer Styling */
footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 50px 0 24px 0;
    font-size: 13px;
    color: var(--text-muted);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand p {
    margin-top: 12px;
    font-size: 13px;
}

.footer-links-group {
    display: flex;
    gap: 40px;
}

.footer-links {
    list-style: none;
}

.footer-links h4 {
    color: var(--text-main);
    font-family: var(--font-head);
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--text-main);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Mobile responsive hamburger menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 22px;
    cursor: pointer;
}

/* Media Queries */
@media (max-width: 768px) {
    section {
        padding: 50px 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-darker);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: var(--transition);
        border-top: 1px solid var(--border-color);
        padding: 30px;
        z-index: 99;
    }
    
    .nav-links.open-menu {
        left: 0;
    }
    
    .hero {
        padding-top: 110px;
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
    }
    
    .pricing-wrapper {
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding-bottom: 24px;
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
        gap: 16px;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    
    .pricing-wrapper::-webkit-scrollbar {
        display: none;
    }
    
    .pricing-card {
        padding: 24px 20px;
        min-width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        scroll-snap-align: center;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 24px;
    }
    
    .footer-links-group {
        width: 100%;
        justify-content: space-between;
        gap: 15px;
    }
    
    .footer-bottom {
        flex-direction: column-reverse;
        text-align: center;
    }
    
    /* Hide Waveform and tags block on standard tablet/mobile widths */
    .sfx-wave-container {
        display: none;
    }
    
    .sfx-meta-block {
        width: 100px;
    }
    
    .sfx-tags {
        display: none;
    }
}

/* Mobile styles for Single Line SFX Rows */
@media (max-width: 480px) {
    .sfx-playlist-card {
        padding: 12px;
    }
    
    .sfx-row {
        padding: 10px 12px;
        margin-bottom: 8px;
    }
    
    .sfx-thumb-container {
        margin-right: 12px;
        width: 40px;
        height: 40px;
    }
    
    .sfx-thumb-play {
        font-size: 11px;
    }
    
    .sfx-info-block {
        width: auto;
        flex-grow: 1;
        margin-right: 12px;
    }
    
    .sfx-title {
        font-size: 14px;
    }
    
    .sfx-author {
        display: none; /* Hide author name to keep it single line clean */
    }
    
    .sfx-duration {
        font-size: 12px;
        margin-right: 0;
        width: auto;
        text-align: right;
    }
    
    .sfx-meta-block {
        display: none; /* Hide category block to fit on narrow screens */
    }
}

/* Voice Memo Pill Styles */
.sfx-row {
    background: rgba(40,40,40,0.6) !important;
    border-radius: 50px !important;
    padding: 10px 20px !important;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    border: 1px solid rgba(255,255,255,0.05);
}
.sfx-info-block { display: none; } /* hide title inside pill to match voice memo */
.sfx-meta-block { display: none; } /* hide category */
.sfx-thumb-container {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    flex-shrink: 0;
}
.sfx-wave-container {
    flex: 1;
    height: 40px !important;
    background: rgba(0,0,0,0.2);
    border-radius: 20px;
}
.sfx-duration {
    font-size: 12px !important;
    color: rgba(255,255,255,0.7) !important;
}
