/* 24DJ Ultra Modern Animations and Styles
   Complete redesign with premium animations and effects */

/* ===== GLOBAL ANIMATIONS & VARIABLES ===== */
:root {
    --primary-color: #6c5ce7;
    --primary-light: #a29bfe;
    --primary-dark: #5341d6;
    --accent-color: #e84393;
    --accent-light: #fd79a8;
    --dark-bg: #121212;
    --dark-surface: #1e1e1e;
    --dark-card: rgba(30, 30, 30, 0.6);
    --gradient-primary: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    --gradient-accent: linear-gradient(135deg, #e84393 0%, #fd79a8 100%);
    --gradient-mix: linear-gradient(135deg, #6c5ce7 0%, #e84393 100%);
    --text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    --box-shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.3);
    --glow-primary: 0 0 20px rgba(108, 92, 231, 0.4);
    --glow-accent: 0 0 20px rgba(232, 67, 147, 0.4);
    --transition-slow: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-quick: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Base Body Styles */
body {
    background-color: var(--dark-bg);
    color: #fff;
    overflow-x: hidden;
    position: relative;
}

/* Background Ambiance */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(108, 92, 231, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(232, 67, 147, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* Scroll Animation Base Classes */
.reveal-element {
    opacity: 0;
    transition: all 1s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-element.active {
    opacity: 1;
}

.reveal-bottom {
    transform: translateY(50px);
}

.reveal-bottom.active {
    transform: translateY(0);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-left.active {
    transform: translateX(0);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-right.active {
    transform: translateX(0);
}

.reveal-scale {
    transform: scale(0.9);
}

.reveal-scale.active {
    transform: scale(1);
}

.reveal-rotate {
    transform: rotateY(20deg);
    perspective: 1000px;
}

.reveal-rotate.active {
    transform: rotateY(0);
}

/* Staggered animation delays */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* Section and Content Containers */
.container {
    position: relative;
    z-index: 2;
}

section {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

/* ===== SECTION TITLES & TEXT ===== */
/* Centered title with gradient styling */
section h2 {
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    padding-bottom: 15px;
    max-width: 800px;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

section p.text-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* ===== ENHANCED HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5) contrast(1.2) saturate(1.2);
    transform: scale(1.05);
    transition: transform 8s ease-in-out;
    animation: heroZoom 20s infinite alternate ease-in-out;
}

@keyframes heroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.15); }
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: 7rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
    letter-spacing: -2px;
    position: relative;
    display: inline-block;
    animation: heroTitleAppear 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(40px);
}

@keyframes heroTitleAppear {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-title::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    background: var(--gradient-mix);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: -1;
    filter: blur(0);
}

.hero-title::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -2;
    color: transparent;
    -webkit-text-stroke: 2px rgba(108, 92, 231, 0.3);
    animation: heroGlowPulse 3s infinite alternate;
    filter: blur(8px);
}

@keyframes heroGlowPulse {
    0% { filter: blur(8px); opacity: 0.5; transform: translateY(0); }
    100% { filter: blur(12px); opacity: 0.8; transform: translateY(-2px); }
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    text-shadow: var(--text-shadow);
    position: relative;
    display: inline-block;
    animation: heroSubtitleAppear 1.5s 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes heroSubtitleAppear {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-actions {
    animation: heroActionsAppear 1.5s 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(20px);
    display: flex;
    gap: 20px;
    justify-content: center;
}

@keyframes heroActionsAppear {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Hero Bottom Edge */
.hero-edge {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
}

.hero-edge-inner {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: var(--dark-bg);
    clip-path: polygon(0 60%, 100% 100%, 100% 100%, 0% 100%);
}

/* Pulsing Dot Animation for Hero */
.pulse-dot {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.2) 0%, transparent 70%);
    opacity: 0.5;
    z-index: 1;
    animation: pulseDot 4s infinite ease-in-out;
}

.pulse-dot:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.pulse-dot:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 1s;
    background: radial-gradient(circle, rgba(232, 67, 147, 0.2) 0%, transparent 70%);
}

.pulse-dot:nth-child(3) {
    top: 30%;
    left: 70%;
    animation-delay: 2s;
}

@keyframes pulseDot {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.5); opacity: 0.2; }
    100% { transform: scale(1); opacity: 0.5; }
}

/* ===== ENHANCED BUTTONS ===== */
.btn {
    position: relative;
    overflow: hidden;
    transition: var(--transition-quick);
    transform: translateZ(0);
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 15px 35px;
    font-size: 1rem;
    text-align: center;
    outline: none;
    border: none;
    z-index: 1;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 10px 20px rgba(108, 92, 231, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 15px 25px rgba(108, 92, 231, 0.5);
    transform: translateY(-5px);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-5px);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
    z-index: -1;
}

.btn:hover::before {
    transform: translateX(100%);
}

/* ===== ENHANCED FEATURES SECTION ===== */
.features {
    position: relative;
    background-color: var(--dark-bg);
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(108, 92, 231, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(232, 67, 147, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.feature-card {
    background: var(--dark-card);
    border-radius: 20px;
    padding: 50px 30px;
    transition: var(--transition-quick);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

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

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--box-shadow-hover);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: var(--glow-primary);
    position: relative;
    z-index: 1;
    transition: var(--transition-quick);
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg);
    transition: transform 1s ease;
}

.feature-icon i {
    font-size: 32px;
    color: #fff;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    color: #fff;
}

.feature-description {
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
    line-height: 1.7;
}

/* ===== ENHANCED HOW IT WORKS SECTION WITH FLIP CARDS ===== */
.how-it-works {
    position: relative;
    padding: 120px 0 150px;
    background-color: var(--dark-bg);
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 80% 20%, rgba(108, 92, 231, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(232, 67, 147, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

/* Vinyl Record Decoration */
.vinyl-decoration {
    position: absolute;
    width: 400px;
    height: 400px;
    bottom: -100px;
    right: -100px;
    top: auto; /* Remove top positioning */
    left: auto; /* Remove left positioning */
    transform: none; /* Remove transform that was centering it */
    animation: vinylFloatSpin 20s linear infinite;
}

.vinyl-decoration::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30%;
    height: 30%;
    border-radius: 50%;
    background: #222;
    border: 2px solid #444;
}

.vinyl-decoration::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 5%;
    height: 5%;
    border-radius: 50%;
    background: var(--primary-color);
    box-shadow: 0 0 20px var(--primary-color);
}

/* DJ Console Visual */
.dj-console {
    position: relative;
    width: 200px;
    height: 60px;
    margin: 0 auto 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #222;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.console-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(135deg, 
        rgba(108, 92, 231, 0.2) 0%, 
        rgba(232, 67, 147, 0.2) 100%);
    filter: blur(10px);
    z-index: -1;
    opacity: 0.8;
    animation: console-pulse 4s infinite alternate;
}

@keyframes console-pulse {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.1); }
}

.turntable {
    width: 50px;
    height: 50px;
    background: #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.record-spin {
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background: linear-gradient(45deg, #333, #222);
    position: relative;
    animation: recordSpin 2s linear infinite;
}

.record-spin::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30%;
    height: 30%;
    border-radius: 50%;
    background: #444;
    border: 1px solid #555;
}

@keyframes recordSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.mixer-section {
    display: flex;
    height: 100%;
    gap: 8px;
    align-items: center;
}

.mixer-slider {
    width: 6px;
    height: 30px;
    background: #333;
    border-radius: 3px;
    position: relative;
}

.mixer-slider::after {
    content: '';
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 2px;
    box-shadow: 0 0 5px var(--primary-color);
    animation: sliderMove 3s infinite alternate;
}

.mixer-slider:nth-child(2)::after {
    animation-delay: 0.5s;
    top: 50%;
}

.mixer-slider:nth-child(3)::after {
    animation-delay: 1s;
    top: 40%;
}

@keyframes sliderMove {
    0% { top: 20%; }
    100% { top: 70%; }
}

/* Flip Cards Container */
.flip-cards-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Flip Card Wrapper */
.flip-card-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin-bottom: 70px;
    perspective: 1000px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.flip-card-wrapper.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Audio Wave Connector */
.wave-connector {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.wave-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
}

.wave-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-color);
    margin: 5px 0;
    opacity: 0.7;
    animation: wave-pulse 1.5s infinite alternate;
}

.wave-dot:nth-child(2) {
    animation-delay: 0.3s;
}

.wave-dot:nth-child(3) {
    animation-delay: 0.6s;
}

.wave-dot:nth-child(4) {
    animation-delay: 0.9s;
}

@keyframes wave-pulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.5);
        opacity: 0.8;
    }
}

/* Flip Card */
.flip-card {
    position: relative;
    width: 100%;
    height: 300px;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card-wrapper.visible .flip-card {
    animation: flipCard 1.2s forwards;
}

@keyframes flipCard {
    0% {
        transform: rotateY(0);
    }
    100% {
        transform: rotateY(180deg);
    }
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-radius: 20px;
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
}

.flip-card-front {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(232, 67, 147, 0.1));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-card-back {
    background: var(--dark-card);
    backdrop-filter: blur(10px);
    transform: rotateY(180deg);
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Step Number */
.step-number {
    font-size: 6rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.step-circle-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    z-index: 1;
}

.step-circle-pulse::before,
.step-circle-pulse::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(108, 92, 231, 0.1);
    animation: pulse-circle 2s infinite;
    top: 0;
    left: 0;
}

.step-circle-pulse::after {
    animation-delay: 0.5s;
}

@keyframes pulse-circle {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Step Content */
.step-icon {
    width: 70px; /* Increased from 60px */
    height: 70px; /* Increased from 60px */
    font-size: 1.8rem; /* Increased from 1.5rem */
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
}

.step-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.step-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

/* Step Visual Elements */
.step-visual {
    width: 100%;
    height: 80px;
    position: relative;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Headphone Visual Animation */
.headphones-visual {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.music-note {
    position: absolute;
    font-size: 1.2rem;
    color: var(--primary-color);
    opacity: 0;
    animation: floating-notes 3s infinite;
}

.music-note:nth-child(1) {
    left: 30%;
    animation-delay: 0.5s;
}

.music-note:nth-child(2) {
    right: 30%;
    animation-delay: 1.5s;
}

@keyframes floating-notes {
    0% {
        transform: translateY(20px) scale(0.5);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(-30px) scale(1.2);
        opacity: 0;
    }
}

/* QR Code Scanning Animation */
.scanning-visual {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto;
}

.qr-code {
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(to right, transparent 75%, var(--primary-color) 75%) 0 0,
        linear-gradient(to right, transparent 75%, var(--primary-color) 75%) 0 100%,
        linear-gradient(to left, transparent 75%, var(--primary-color) 75%) 100% 0,
        linear-gradient(to left, transparent 75%, var(--primary-color) 75%) 100% 100%,
        linear-gradient(to bottom, transparent 75%, var(--primary-color) 75%) 0 0,
        linear-gradient(to bottom, transparent 75%, var(--primary-color) 75%) 100% 0,
        linear-gradient(to top, transparent 75%, var(--primary-color) 75%) 0 100%,
        linear-gradient(to top, transparent 75%, var(--primary-color) 75%) 100% 100%;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.qr-code::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background-color: rgba(108, 92, 231, 0.1);
    border-radius: 3px;
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
    animation: scan-animation 2s infinite;
}

@keyframes scan-animation {
    0% { top: 0; }
    50% { top: 100%; }
    100% { top: 0; }
}

/* Voting Visual Animation */
.voting-visual {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.vote-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    animation: pulse-vote 2s infinite;
}

@keyframes pulse-vote {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.vote-meter {
    width: 150px;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.vote-progress {
    height: 100%;
    width: 0;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 5px;
    animation: vote-progress 3s forwards;
}

@keyframes vote-progress {
    0% { width: 0; }
    100% { width: 80%; }
}

/* Equalizer Visual Animation */
.eq-visual {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 60px;
    gap: 5px;
}

.eq-visual .eq-bar {
    width: 8px;
    background: linear-gradient(to top, var(--primary-color), var(--accent-color));
    border-radius: 4px;
}

.eq-visual .eq-bar:nth-child(1) {
    height: 60%;
    animation: eq-dance 0.5s infinite alternate ease-in-out;
}

.eq-visual .eq-bar:nth-child(2) {
    height: 30%;
    animation: eq-dance 0.7s infinite alternate ease-in-out;
}

.eq-visual .eq-bar:nth-child(3) {
    height: 80%;
    animation: eq-dance 0.6s infinite alternate ease-in-out;
}

.eq-visual .eq-bar:nth-child(4) {
    height: 40%;
    animation: eq-dance 0.8s infinite alternate ease-in-out;
}

.eq-visual .eq-bar:nth-child(5) {
    height: 70%;
    animation: eq-dance 0.5s infinite alternate ease-in-out;
}

@keyframes eq-dance {
    0% { height: 20%; }
    100% { height: 100%; }
}

/* Final CTA Wrapper */
.cta-wrapper {
    position: relative;
    text-align: center;
    margin-top: 40px;
    padding: 40px 0;
    z-index: 3;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.2) 0%, transparent 70%);
    z-index: 0;
    animation: cta-glow-pulse 3s infinite;
}

@keyframes cta-glow-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0.3; }
}

/* Final Visualizer */
.final-visualizer {
    margin-top: 40px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visualizer-container {
    display: flex;
    align-items: flex-end;
    height: 100%;
    gap: 3px;
}

.visualizer-bar {
    width: 6px;
    background: linear-gradient(to top, var(--primary-color), var(--accent-color));
    border-radius: 3px;
}

.visualizer-bar:nth-child(1) { height: 50%; animation: visualizer-anim 1.2s infinite alternate ease-in-out; }
.visualizer-bar:nth-child(2) { height: 70%; animation: visualizer-anim 0.9s infinite alternate ease-in-out; }
.visualizer-bar:nth-child(3) { height: 40%; animation: visualizer-anim 1.1s infinite alternate ease-in-out; }
.visualizer-bar:nth-child(4) { height: 90%; animation: visualizer-anim 1.3s infinite alternate ease-in-out; }
.visualizer-bar:nth-child(5) { height: 60%; animation: visualizer-anim 1.0s infinite alternate ease-in-out; }
.visualizer-bar:nth-child(6) { height: 30%; animation: visualizer-anim 1.2s infinite alternate ease-in-out; }
.visualizer-bar:nth-child(7) { height: 80%; animation: visualizer-anim 0.8s infinite alternate ease-in-out; }
.visualizer-bar:nth-child(8) { height: 50%; animation: visualizer-anim 1.4s infinite alternate ease-in-out; }
.visualizer-bar:nth-child(9) { height: 70%; animation: visualizer-anim 1.1s infinite alternate ease-in-out; }

@keyframes visualizer-anim {
    0% { height: 20%; }
    100% { height: 100%; }
}

/* ===== ENHANCED TESTIMONIALS SECTION ===== */
.testimonials {
    position: relative;
    background-color: var(--dark-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--dark-card);
    border-radius: 20px;
    padding: 40px 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--box-shadow);
    transition: var(--transition-quick);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--box-shadow-hover);
    border-color: rgba(108, 92, 231, 0.3);
}

.testimonial-icon {
    color: var(--primary-color);
    font-size: 40px;
    margin-bottom: 20px;
    opacity: 0.7;
}

.testimonial-content {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.9);
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    margin-top: auto;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(108, 92, 231, 0.3);
}

.testimonial-info {
    margin-left: 15px;
}

.testimonial-name {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-position {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.testimonial-card::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, transparent 0%, rgba(108, 92, 231, 0.1) 100%);
    border-radius: 50%;
    z-index: 0;
    transition: var(--transition-quick);
}

.testimonial-card:hover::after {
    transform: scale(1.2);
}

/* Audio wave effect for testimonials */
.audio-wave {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 30px;
    height: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    opacity: 0.3;
}

.testimonial-card:hover .audio-wave {
    opacity: 0.8;
}

.audio-wave span {
    width: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.audio-wave span:nth-child(1) {
    height: 40%;
    animation: audioWave 1.2s infinite ease-in-out;
}

.audio-wave span:nth-child(2) {
    height: 60%;
    animation: audioWave 1.4s infinite ease-in-out 0.2s;
}

.audio-wave span:nth-child(3) {
    height: 80%;
    animation: audioWave 1.1s infinite ease-in-out 0.4s;
}

.audio-wave span:nth-child(4) {
    height: 50%;
    animation: audioWave 1.3s infinite ease-in-out 0.6s;
}

.audio-wave span:nth-child(5) {
    height: 70%;
    animation: audioWave 1.5s infinite ease-in-out 0.8s;
}

@keyframes audioWave {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(1.5); }
}

/* ===== ENHANCED PRICING SECTION ===== */
.pricing {
    position: relative;
    background-color: var(--dark-bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: var(--dark-card);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--box-shadow);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--box-shadow-hover);
    border-color: rgba(108, 92, 231, 0.3);
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1) 0%, rgba(232, 67, 147, 0.1) 100%);
    border: 1px solid rgba(108, 92, 231, 0.2);
    transform: scale(1.05);
    z-index: 1;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-15px);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-accent);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(232, 67, 147, 0.3);
    z-index: 3;
}

.pricing-header {
    padding: 50px 30px 30px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.pricing-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-light), transparent);
}

.pricing-plan {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.pricing-price {
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.pricing-price .price {
    font-size: 4rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-price .period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-left: 5px;
}

.pricing-features {
    padding: 30px;
    flex-grow: 1;
}

.pricing-features ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
}

.pricing-features li i {
    margin-right: 15px;
    font-size: 1.2rem;
}

.pricing-features li i.fa-check {
    color: var(--primary-color);
}

.pricing-features li i.fa-times {
    color: rgba(255, 255, 255, 0.4);
}

.pricing-cta {
    padding: 30px;
}

/* Animated background glow */
.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.1) 0%, transparent 70%);
    z-index: -1;
    animation: rotatePricingGlow 15s linear infinite;
}

@keyframes rotatePricingGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== ENHANCED CTA SECTION ===== */
.cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1) 0%, rgba(232, 67, 147, 0.1) 100%);
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    background: var(--gradient-mix);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.cta-text {
    font-size: 1.3rem;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* DJ Turntable Animation */
.turntable {
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(145deg, #111 0%, #333 100%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    opacity: 0.2;
    z-index: 0;
    animation: turntableSpin 10s linear infinite;
}

.turntable::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30%;
    height: 30%;
    border-radius: 50%;
    background: #222;
    border: 3px solid #444;
}

.turntable::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 5%;
    height: 5%;
    border-radius: 50%;
    background: var(--primary-color);
    box-shadow: var(--glow-primary);
}

@keyframes turntableSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== ENHANCED FOOTER ===== */
.footer {
    background: rgba(10, 10, 10, 0.9);
    padding: 80px 0 40px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, 
        var(--primary-color), 
        var(--accent-color), 
        var(--primary-color)
    );
}

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

.footer-section {
    position: relative;
}

.navbar-logo {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.navbar-logo img {
    width: 40px;
    height: 40px;
    margin-right: 15px;
}

.navbar-logo span {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-section p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transition: var(--transition-quick);
    color: rgba(255, 255, 255, 0.7);
}

.social-icon:hover {
    background: var(--gradient-primary);
    transform: translateY(-5px);
    color: #fff;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    color: #fff;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-quick);
    display: flex;
    align-items: center;
}

.footer-link:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-link i {
    margin-right: 10px;
    font-size: 0.8rem;
    opacity: 0.5;
}

.footer-bottom {
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== GLOBAL ANIMATIONS & EFFECTS ===== */

/* Floating Particles */
.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    opacity: 0.3;
    pointer-events: none;
}

/* Global Subtle Glow Animation */
@keyframes subtle-glow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

/* Background Animation Effect */
.bg-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.3;
    filter: blur(1px);
}

/* Floating Elements Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

.float-animation-slow {
    animation: float 8s ease-in-out infinite;
}

.float-animation-fast {
    animation: float 4s ease-in-out infinite;
}

/* Hover Glow Effect for Cards */
.card-glow-effect {
    position: relative;
    overflow: hidden;
}

.card-glow-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.card-glow-effect:hover::after {
    opacity: 1;
}

/* Neon Text Effect */
.neon-text {
    text-shadow: 0 0 10px rgba(108, 92, 231, 0.5),
                 0 0 20px rgba(108, 92, 231, 0.3),
                 0 0 30px rgba(108, 92, 231, 0.1);
}

/* Pulsating Button Effect */
.btn-pulse {
    position: relative;
}

.btn-pulse::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    box-shadow: 0 0 0 0 rgba(108, 92, 231, 0.4);
    animation: pulse-button 2s infinite;
}

@keyframes pulse-button {
    0% {
        box-shadow: 0 0 0 0 rgba(108, 92, 231, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(108, 92, 231, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(108, 92, 231, 0);
    }
}

/* Subtle Text Hue Shift */
@keyframes hue-rotate {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

/*
.hue-shift {
    animation: hue-rotate 10s linear infinite;
}
*/

/* Appear Animation for Scroll Reveal */
.appear-animation {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.appear-animation.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Background Liquid Gradient Animation for Featured Elements */
.liquid-gradient {
    position: relative;
    overflow: hidden;
}

.liquid-gradient::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        rgba(108, 92, 231, 0.1),
        rgba(232, 67, 147, 0.1),
        rgba(108, 92, 231, 0.1)
    );
    animation: liquid-move 10s linear infinite;
    pointer-events: none;
}

@keyframes liquid-move {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== ENHANCED NAVIGATION ===== */
.navbar {
    position: relative;
    z-index: 1000;
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(108, 92, 231, 0.3), 
        rgba(232, 67, 147, 0.3), 
        transparent
    );
}

.nav-links a {
    position: relative;
    transition: color 0.3s ease;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* ===== DJ SPECIFIC ELEMENTS ===== */
/* DJ Vinyl Record */
.vinyl-record {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, #333 0%, #111 90%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0.2;
    z-index: 0;
    overflow: hidden;
}

.vinyl-record::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30%;
    height: 30%;
    border-radius: 50%;
    background: #222;
    border: 2px solid #444;
}

.vinyl-record::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 5%;
    height: 5%;
    border-radius: 50%;
    background: var(--primary-color);
    box-shadow: var(--glow-primary);
}

/* Vinyl record animated circles */
.vinyl-grooves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
}

.vinyl-groove {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
}

/* DJ Mixer Elements */
.dj-mixer {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 100px;
    background: #222;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.mixer-channel {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mixer-slider {
    height: 60px;
    width: 10px;
    background: #333;
    border-radius: 5px;
    position: relative;
}

.mixer-knob {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
}

/* DJ EQ Visualization */
.dj-eq {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 50px;
    gap: 3px;
}

.eq-bar {
    width: 5px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Sound Wave Animation */
.sound-wave {
    width: 100%;
    height: 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sound-wave-path {
    position: absolute;
    width: 100%;
    height: 100%;
    stroke: var(--primary-color);
    stroke-width: 2px;
    fill: none;
    opacity: 0.5;
}

/* DJ Beat Pulse Animation */
@keyframes beatPulse {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
    100% { transform: scale(1); opacity: 0.5; }
}

.beat-pulse {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    animation: beatPulse 1s infinite;
    box-shadow: var(--glow-primary);
}

/* Call to action scrolling text effect */
.cta-scroll-text {
    position: absolute;
    width: 100%;
    overflow: hidden;
    bottom: 0;
    left: 0;
    height: 50px;
    opacity: 0.1;
    z-index: 1;
}

.cta-scroll-text-inner {
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    animation: ctaTextScroll 20s linear infinite;
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
}

@keyframes ctaTextScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 1200px) {
    section h2 {
        font-size: 3rem;
    }
    
    .hero-title {
        font-size: 5.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
    }
}

@media (max-width: 992px) {
    section {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-actions, .cta-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-15px);
    }
    
    .turntable {
        display: none;
    }
}

@media (max-width: 768px) {
    section h2 {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }
    
    .feature-card, .testimonial-card, .pricing-card {
        padding: 30px 20px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .testimonial-info {
        margin-left: 0;
        margin-top: 15px;
    }
    
    .how-it-works {
        padding: 80px 0 100px;
    }
    
    .vinyl-decoration {
        width: 300px;
        height: 300px;
    }
    
    .flip-card {
        height: 350px;
    }
    
    .flip-card-back {
        padding: 20px 15px;
        overflow-y: auto;
    }
    
    .step-title {
        font-size: 1.5rem;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .vote-meter {
        width: 120px;
    }
    
    .flip-card-wrapper {
        margin-bottom: 60px;
    }
    
    .wave-connector {
        height: 40px;
        bottom: -40px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    section h2 {
        font-size: 2rem;
    }
    
    .pricing-price .price {
        font-size: 3rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 24px;
    }
    
    .feature-title, .timeline-title {
        font-size: 1.3rem;
    }
    
    .flip-card {
        height: 380px;
    }
    
    .step-number {
        font-size: 4rem;
    }
    
    .step-title {
        font-size: 1.3rem;
    }
    
    .step-description {
        font-size: 0.95rem;
    }
    
    .step-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .visualizer-container {
        gap: 2px;
    }
    
    .visualizer-bar {
        width: 4px;
    }
    
    .eq-visual .eq-bar {
        width: 6px;
    }
    
    .dj-console {
        width: 150px;
        height: 50px;
    }
}