

:root {
    --primary: #FF5722;
    --secondary: #ffa500;
    --dark: #444;
    --light: #f8f9fa;
}

body {
    font-family: "Poppins", sans-serif;
    font-variant: small-caps;
    color: white;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    background-attachment: fixed;
    overflow-x: hidden;
}

.navbar {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
}

.nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s;
}

.nav-link:hover {
    transform: translateY(-2px);
    color: #ffccbc !important;
}

section {
    padding: 10px 0;
}

.hero-content {
    padding: 40px 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* .btn-primary {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
} */

.showcase-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
    height: 100%;
}

.showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.stat-item {
    text-align: center;
    padding: 30px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-title {
    font-size: 1.2rem;
    opacity: 0.9;
}

.download-section {
    text-align: center;
}

/* .app-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: var(--primary);
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 600;
    margin: 10px;
    text-decoration: none;
    transition: all 0.3s;
} 

.app-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: var(--primary);
}
*/
.app-btn i {
    margin-right: 10px;
    font-size: 1.5rem;
}

footer {
    background:var(--dark);
    padding: 30px 0;
    text-align: center;
}
footer a{ color: #fff; text-decoration: none; }

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    margin: 0 10px;
    transition: all 0.3s;
}

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

.phone-mockup {
    position: relative;
    max-width: 300px;
    margin: 0 auto;
}


.animated-element {
    opacity: 1;
    transform: translateY(10px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.download-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border: 1px solid var(--primary);
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    min-width:100px;
    min-height:100px;
}


#visualizer-container {
    width: 100%;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    background: transparent;
    z-index: -1;
}

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

.play-button {
    background: linear-gradient(-160deg, var(--primary) 0%, var(--secondary) 100%);
    border: none;
    color: white;
    padding: 12px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.play-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px var(--primary);
}

 

 

 


