:root {
    --primary-color: #0a192f;
    --text-color: #ffffff;
    --bg-color: #020c1b;
    --glow-color: rgba(100, 255, 218, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

#video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

#video-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 25, 47, 0.7);
    z-index: 1;
}

#video-background.visible {
    opacity: 1;
}

#video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 0;
}

.hidden {
    display: none;
}

.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 5%;
}

.hero-content {
    text-align: center;
    max-width: 800px;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.highlight {
    color: var(--primary-color);
}

p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    opacity: 0.9;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}


.gradient {
    background: linear-gradient(to right, #6a6ab8, #3f3975, #411fd691, #4704ff, #76afaf, #0000FF);
    background-size: 400% 400%;
    animation: gradient 10s ease infinite;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  @keyframes gradient {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.social-icon {
    color: var(--text-color);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.social-icon:hover {
    color: #64ffda;
    transform: translateY(-3px);
}

.social-icon::after {
    content: '';
    position: absolute;
    left: -5px;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(100, 255, 218, 0.3);
    filter: blur(15px);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-icon:hover::after {
    opacity: 1;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn {
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--glow-color);
    z-index: -1;
    filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-color);
    border: 2px solid var(--primary-color);
}

.btn:hover {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-content {
        padding: 0 20px;
    }
}

.audio-player {
    background: rgba(17, 24, 39, 0.8);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #374151;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.player-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.music-icon {
    width: 48px;
    height: 48px;
    background: #374151;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.music-icon svg {
    width: 20px;
    height: 20px;
    color: #D1D5DB;
}

.track-details {
    flex: 1;
    min-width: 0;
}

.track-name {
    color: white;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}

.time-display {
    display: flex;
    justify-content: space-between;
    color: #9CA3AF;
    font-size: 0.875rem;
}

/* Progress Bar */
.progress-container {
    margin-bottom: 16px;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: #374151;
    border-radius: 2px;
    appearance: none;
    cursor: pointer;
    position: relative;
}

.progress-bar::-webkit-slider-thumb {
    appearance: none;
    width: 16px;
    height: 16px;
    background: #3B82F6;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
    transition: transform 0.2s ease;
}

.progress-bar::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.progress-bar::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: #3B82F6;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

/* Control Buttons */
.controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.control-btn {
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: #9CA3AF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease, transform 0.2s ease;
    border-radius: 50%;
}

.control-btn:hover {
    color: white;
    transform: scale(1.1);
}

.control-btn svg {
    width: 20px;
    height: 20px;
}

.play-btn {
    width: 48px;
    height: 48px;
    background: #3B82F6;
    color: white;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.play-btn:hover {
    background: #2563EB;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.play-btn svg {
    width: 24px;
    height: 24px;
}

.pause-icon {
    display: none;
}

.play-btn.playing .play-icon {
    display: none;
}

.play-btn.playing .pause-icon {
    display: block;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.spinning {
    animation: spinSlow 10s linear infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 16px;
    }
    
    .player-container {
        max-width: 320px;
    }
    
    .album-cover-container,
    .album-cover {
        width: 160px;
        height: 160px;
    }
    
    .track-title {
        font-size: 2rem;
    }
    
    .audio-player {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .album-cover-container,
    .album-cover {
        width: 140px;
        height: 140px;
    }
    
    .track-title {
        font-size: 1.75rem;
    }
    
    .controls {
        gap: 16px;
    }
    
    .control-btn {
        width: 36px;
        height: 36px;
    }
    
    .play-btn {
        width: 44px;
        height: 44px;
    }
}

/* Progress Bar Styling */
.progress-bar {
    background: linear-gradient(to right, #3B82F6 0%, #3B82F6 var(--progress, 0%), #374151 var(--progress, 0%), #374151 100%);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    display: none;
}

/* Smooth transitions */
* {
    transition: all 0.3s ease;
}