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

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&display=swap');


body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}


.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none; /* Prevent all interactions */
}

.hero-video::-webkit-media-controls {
    display: none !important;
}

.hero-video::-webkit-media-controls-panel {
    display: none !important;
}

.hero-video::-webkit-media-controls-play-button {
    display: none !important;
}

.hero-video::-webkit-media-controls-start-playback-button {
    display: none !important;
}

/* Mobile video optimizations to prevent fullscreen issues */
@media (max-width: 768px) {
    .hero-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* Additional mobile-specific properties */
        -webkit-playsinline: true;
        playsinline: true;
        pointer-events: none; /* Prevent touch interactions */
    }
}

/* Default: hide mobile video, show desktop video */
.hero-video-mobile {
    display: none;
}

.hero-video-desktop {
    display: block;
}

/* iPhone-specific video for screens under 600px */
@media (max-width: 600px) {
    .hero-video-desktop {
        display: none; /* Hide desktop video */
    }
    
    .hero-video-mobile {
        display: block; /* Show mobile video */
        width: 100%;
        height: 100%;
        object-fit: cover;
        pointer-events: none;
        -webkit-playsinline: true;
        playsinline: true;
    }
}

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

/* Top announcement bar */
.announcement-bar {
    background: rgba(46, 125, 50, 0.95); /* Real estate green */
    color: white;
    padding: 8px 0;
    text-align: center;
    font-size: 14px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1001;
}

.announcement-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.announcement-content::before {
    content: "●";
    color: #4ade80;
    font-size: 12px;
}

.announcement-link {
    color: #93c5fd;
    text-decoration: underline;
    margin-left: 10px;
}

/* Main navigation */
.navbar {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding: 15px 0;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: fixed;
    top: 36px;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.2s ease;
    position: relative;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.nav-link:hover {
    color: white;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    transition: width 0.3s ease;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.login-btn {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.2s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.login-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.demo-btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
    cursor: pointer;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.demo-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #4b5563;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Mobile menu text colors */
.mobile-menu .nav-link {
    color: #333 !important;
    text-shadow: none !important;
}

.mobile-menu .login-btn {
    color: #333 !important;
    text-shadow: none !important;
}

.mobile-menu .demo-btn {
    color: white !important;
    background: #2e7d32 !important; /* Real estate green */
    text-shadow: none !important;
}

.feature {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: transform 0.2s, opacity 0.6s;
    opacity: 1;
    transform: translateY(0);
    color: white;
}

.feature.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.content-overlay {
    position: relative;
    z-index: 10;
    padding-top: 100px;
}

.hero-widget,
.features-widget,
.about-widget,
.footer-widget {
    margin: 2rem auto;
    max-width: 800px;
    padding: 0 20px;
}

@media (min-width: 1024px) {
    .hero-widget,
    .features-widget,
    .about-widget,
    .footer-widget {
        max-width: 900px;
    }
    
    .content-overlay {
        padding-top: 0;
        padding-bottom: 2rem;
    }
    
    .hero-widget {
        margin-top: 0;
        margin-bottom: -5vh;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 75vh;
        padding-top: 15vh;
    }
    
    .features-widget,
    .about-widget,
    .footer-widget {
        margin: 3rem auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .carousel-section {
        padding: 0;
        margin-top: max(1rem, calc(15vh - 100px));
    }
}

.widget-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.18);
    margin-bottom: 2rem;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.hero-widget .widget-content {
    text-align: center !important;
    background: transparent;
    color: white;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-widget h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    margin-bottom: 1rem;
    font-weight: 900;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
    letter-spacing: -0.02em;
    animation: waterfall 1.2s ease-out forwards;
    transform: translateY(-50px);
    opacity: 0;
    text-align: center;
}

.hero-widget .subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.6),
        0 2px 4px rgba(0, 0, 0, 0.8);
    opacity: 0;
    animation: waterfall 1.2s ease-out 0.3s forwards;
    transform: translateY(-30px);
    text-align: center;
}

.hero-widget .description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 400;
    text-shadow: 
        0 0 8px rgba(255, 255, 255, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.8);
    opacity: 0;
    line-height: 1.7;
    animation: waterfall 1.2s ease-out 0.6s forwards;
    transform: translateY(-30px);
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: waterfall 1.2s ease-out 0.9s forwards;
    transform: translateY(-30px);
}

.cta-button {
    display: inline-block;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button.primary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.8);
    color: white;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid #ff6b6b;
    color: #ff6b6b;
}

.hero-widget .cta-button.secondary {
    color: white;
    border-color: white;
}

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

.cta-button.primary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 1);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* CTA Highlight Widget - Subtle corner outlines */
.cta-highlight-widget {
    position: relative;
    padding: 20px 30px;
    display: inline-block;
}

.cta-highlight-widget::before,
.cta-highlight-widget::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Top-right corner */
.cta-highlight-widget::before {
    top: 5px;
    right: 5px;
    border-left: none;
    border-bottom: none;
}

/* Bottom-left corner */
.cta-highlight-widget::after {
    bottom: 5px;
    left: 5px;
    border-right: none;
    border-top: none;
}

.cta-highlight-widget:hover::before,
.cta-highlight-widget:hover::after {
    border-color: rgba(255, 255, 255, 0.6);
    transition: border-color 0.3s ease;
}

.features {
    padding: 80px 0;
    background: #f8f9fa;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

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

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

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.feature p {
    color: rgba(255, 255, 255, 0.8);
}

.about {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.about p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #2e7d32; /* Real estate green */
    display: block;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

.about-image {
    background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%); /* Real estate green gradient */
    height: 400px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.footer-widget .widget-content {
    background: rgba(0, 0, 0, 0.2);
    color: white;
    text-align: center;
}

@keyframes waterfall {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .nav-menu,
    .nav-actions {
        display: none;
    }

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

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

    .hero p {
        font-size: 1.1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats {
        justify-content: center;
    }

    .announcement-content {
        font-size: 12px;
        padding: 0 15px;
    }
}

/* Carousel Section */
.carousel-section {
    padding: 20px 0 40px 0;
    overflow: hidden;
    position: relative;
    z-index: 10;
    text-align: center;
    width: 100%;
}

.carousel-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 20px 0;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.carousel-track {
    display: flex;
    animation: scroll-left 60s linear infinite;
    width: calc(140px * 12);
}

.carousel-logo {
    width: 100px;
    height: auto;
    margin: 0 20px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    filter: brightness(1.2);
}

.carousel-logo:hover {
    opacity: 1;
    filter: brightness(1.4);
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-140px * 6));
    }
}

@media (max-width: 768px) {
    .carousel-logo {
        width: 70px;
        margin: 0 10px;
    }
    
    .carousel-track {
        width: calc(90px * 12);
    }
    
    @keyframes scroll-left {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-90px * 6));
        }
    }
}

/* SoundWave Widget Styles */
.soundwave-widget {
    margin: 8rem auto 1rem auto;
    max-width: 1200px;
    padding: 0 20px;
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}

@media (min-width: 1024px) {
    .soundwave-widget {
        margin: 0 auto;
        min-height: 100vh;
        padding-top: 120px;
    }
}

.soundwave-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: white;
}

.soundwave-left {
    padding-right: 20px;
}

.soundwave-badge {
    background: rgba(108, 117, 125, 0.3);
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    display: inline-block;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.soundwave-headline {
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.1;
    color: white;
    margin-bottom: 24px;
    letter-spacing: -1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.soundwave-headline strong {
    font-weight: 700;
}

.soundwave-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 480px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.soundwave-cta-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.soundwave-btn {
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.soundwave-btn-primary {
    background: white;
    color: black;
}

.soundwave-btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.soundwave-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.soundwave-btn-secondary:hover {
    background: white;
    color: black;
    transform: translateY(-2px);
}

.soundwave-sub-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.soundwave-right {
    position: relative;
}

.soundwave-dashboard-mockup {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.soundwave-dashboard-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e74c3c, #f39c12, #e67e22);
}

.soundwave-activity-section {
    margin-bottom: 32px;
}

.soundwave-activity-title {
    color: #6c757d;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.soundwave-activity-tabs {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 12px;
}

.soundwave-activity-tab {
    color: #8a8a8a;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.soundwave-activity-tab.active {
    color: #e74c3c;
    position: relative;
}

.soundwave-activity-tab.active::after {
    content: '';
    position: absolute;
    bottom: -13px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e74c3c;
}

.soundwave-activity-numbers {
    display: flex;
    gap: 32px;
}

.soundwave-activity-number {
    text-align: center;
}

.soundwave-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    display: block;
}

.soundwave-number.soundwave-streams { color: #27ae60; }
.soundwave-number.soundwave-artists { color: #3498db; }
.soundwave-number.soundwave-playlists { color: #9b59b6; }

.soundwave-change {
    color: #27ae60;
    font-size: 0.8rem;
    font-weight: 600;
}

.soundwave-change::before {
    content: '▲ ';
}

.soundwave-chart-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
}

.soundwave-chart-title {
    color: #6c757d;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.soundwave-chart-container {
    position: relative;
}

.soundwave-chart {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: conic-gradient(
        #e74c3c 0deg 108deg,
        #f39c12 108deg 180deg,
        #3498db 180deg 252deg,
        #27ae60 252deg 324deg,
        #9b59b6 324deg 360deg
    );
    position: relative;
}

.soundwave-chart::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
}

.soundwave-profile-section {
    margin-top: 24px;
}

.soundwave-profile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.soundwave-profile-nav {
    color: #3498db;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
}

.soundwave-profile-nav:hover {
    color: #2980b9;
}

.soundwave-artist-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.soundwave-artist-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%); /* Real estate green gradient */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
}

.soundwave-artist-info h5 {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.soundwave-artist-status {
    color: #8a8a8a;
    font-size: 0.8rem;
}

.soundwave-action-buttons {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.soundwave-action-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.soundwave-action-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.soundwave-play-btn { background: #e74c3c; color: white; }
.soundwave-like-btn { background: #e91e63; color: white; }
.soundwave-share-btn { background: #3498db; color: white; }
.soundwave-playlist-btn { background: #27ae60; color: white; }
.soundwave-download-btn { background: #f39c12; color: white; }
.soundwave-more-btn { background: #95a5a6; color: white; }

.soundwave-decorative-elements {
    position: absolute;
    pointer-events: none;
}

.soundwave-sparkle {
    width: 24px;
    height: 24px;
    background: #f39c12;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.soundwave-sparkle1 {
    top: 60px;
    right: 80px;
    animation: soundwave-twinkle 3s ease-in-out infinite;
}

.soundwave-sparkle2 {
    bottom: 120px;
    right: 40px;
    width: 16px;
    height: 16px;
    background: #e74c3c;
    animation: soundwave-twinkle 2s ease-in-out infinite 1s;
}

.soundwave-circle {
    width: 12px;
    height: 12px;
    background: #3498db;
    border-radius: 50%;
    bottom: 200px;
    right: 120px;
    animation: soundwave-float 4s ease-in-out infinite;
}

@keyframes soundwave-twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

@keyframes soundwave-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 768px) {
    .soundwave-widget {
        margin: 4rem auto 1rem auto;
        min-height: 50vh;
    }
    
    .soundwave-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 30px 20px;
    }
    
    .soundwave-headline {
        font-size: 2.5rem;
    }
    
    .soundwave-cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .soundwave-btn {
        width: 100%;
        text-align: center;
    }
    
    .soundwave-activity-numbers {
        justify-content: space-between;
        gap: 16px;
    }
    
    .soundwave-dashboard-mockup {
        padding: 24px;
    }
    
    .soundwave-left {
        padding-right: 0;
    }
}