
:root {
    --black-titanium: #0a0a0a;
    --titanium-dark: #121212;
    --titanium-light: #1e1e1e;
    --titanium-edge: #2a2a2a;
    --neon-pink: #ff00aa;
    --neon-blue: #00f7ff;
    --neon-purple: #b300ff;
    --neon-green: #00ff88;
    --text-primary: #f0f0f0;
    --text-secondary: #b0b0b0;
    --glow-pink: 0 0 15px rgba(255, 0, 170, 0.7);
    --glow-blue: 0 0 15px rgba(0, 247, 255, 0.7);
    --glow-purple: 0 0 15px rgba(179, 0, 255, 0.7);
    --transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    --fast-transition: all 0.3s ease-out;
    --slow-transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    font-family: 'Rajdhani', sans-serif;
    background-color: var(--black-titanium);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.7;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

a {
    text-decoration: none;
    color: inherit;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    max-width: 800px;
    position: relative;
}

.preloader-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 40px;
    position: relative;
    opacity: 0;
    transform: scale(0.8);
    animation: fadeInScale 1s forwards 0.5s;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.preloader-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.1);
}

.preloader-title {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 60px;
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards 1s;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    text-align: center;
    position: relative;
}

.preloader-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    opacity: 0;
    animation: fadeIn 0.5s forwards 1.5s;
}

.preloader-text {
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 0.5s forwards 1.5s, pulse 2s infinite 2s;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 40px;
    position: relative;
}

.sound-wave {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 100px;
    width: 100%;
    margin-bottom: 40px;
    gap: 6px;
    opacity: 0;
    animation: fadeIn 0.5s forwards 1s;
}

.sound-wave-bar {
    width: 8px;
    min-height: 5px;
    background: linear-gradient(to top, #fff, #aaa);
    border-radius: 5px;
    animation: soundWave 1.5s infinite ease-in-out;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.text-gradient {
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.bg-titanium {
    background-color: var(--titanium-dark);
    background-image: linear-gradient(135deg, var(--black-titanium) 0%, var(--titanium-dark) 100%);
}

.bg-titanium-light {
    background-color: var(--titanium-light);
}

.bg-titanium-edge {
    background-color: var(--titanium-edge);
}

.neon-border {
    position: relative;
}

.neon-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid transparent;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-blue)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    pointer-events: none;
}

.neon-shadow {
    box-shadow: 0 0 30px rgba(0, 247, 255, 0.2);
}

.neon-text-glow {
    text-shadow: 0 0 10px var(--neon-blue), 0 0 20px var(--neon-blue);
}

.section-padding {
    padding: 100px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 70px 0;
    }
}

.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue));
    z-index: 9998;
    transition: width 0.1s ease;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-blue));
    color: var(--black-titanium);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 99;
    box-shadow: 0 5px 20px rgba(0, 247, 255, 0.3);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 247, 255, 0.5);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    position: relative;
}

.navbar-brand img {
    height: 40px;
    margin-right: 10px;
    filter: drop-shadow(0 0 10px var(--neon-pink));
    transition: var(--transition);
}

.navbar-brand:hover img {
    filter: drop-shadow(0 0 15px var(--neon-blue));
}

.nav-link {
    position: relative;
    margin: 0 15px;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: var(--fast-transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue));
    transition: var(--fast-transition);
}

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

.nav-link.active {
    color: var(--neon-blue);
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 70% 30%, rgba(179, 0, 255, 0.1) 0%, rgba(10, 10, 10, 1) 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
    max-width: 600px;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(0, 247, 255, 0.3));
    animation: float 6s ease-in-out infinite;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.btn-neon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    color: var(--text-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    border-radius: 50px;
    overflow: hidden;
    transition: var(--transition);
    z-index: 1;
}

.btn-neon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue));
    z-index: -1;
    opacity: 0;
    transition: var(--fast-transition);
}

.btn-neon:hover::before {
    opacity: 1;
}

.btn-neon::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn-neon:hover::after {
    left: 100%;
}

.btn-neon i {
    margin-right: 8px;
}

.audio-visualizer {
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    height: 100px;
    width: 100%;
    gap: 8px;
    z-index: 10;
    padding: 0 20px;
    max-width: 600px;
    margin: 0 auto;
}

.visualizer-bar {
    width: 8px;
    background: linear-gradient(to top, var(--neon-pink), var(--neon-blue));
    border-radius: 4px;
    animation: equalizer 1.5s infinite ease-in-out;
    transform-origin: bottom;
    height: 20px;
}
.visualizer-bar {
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.audio-visualizer.hide {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(5px);
}

.audio-visualizer.hide .visualizer-bar {
    transform: scaleY(0);
    opacity: 0;
    transition-delay: calc(var(--i) * 0.1s);
}
.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 60px;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--text-primary);
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue));
    border-radius: 2px;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

.about-card {
    background: rgba(30, 30, 30, 0.5);
    border-radius: 15px;
    padding: 30px;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-blue));
    z-index: -1;
    border-radius: 16px;
    opacity: 0;
    transition: var(--fast-transition);
}

.about-card:hover::before {
    opacity: 1;
}

.about-card i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-card h4 {
    margin-bottom: 15px;
    font-weight: 600;
}

.music-player-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.music-player {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 20px;
    overflow: hidden;
}

.music-header {
    padding: 25px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.music-cover {
    width: 250px;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
    position: relative;
    margin: 0 auto;
}

.music-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.music-cover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 60%, rgba(0, 247, 255, 0.1) 100%);
    pointer-events: none;
}

.music-info {
    padding: 30px;
}

.music-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 5px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.music-artist {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.music-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.control-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 1.1rem;
    margin: 0 10px;
    cursor: pointer;
    transition: var(--fast-transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.control-btn.play {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-blue));
    box-shadow: 0 0 20px rgba(0, 247, 255, 0.5);
}

.control-btn.play:hover {
    box-shadow: 0 0 30px rgba(0, 247, 255, 0.8);
}

.progress-container {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    margin: 25px 0;
    cursor: pointer;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue));
    border-radius: 5px;
    width: 0%;
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    right: -6px;
    top: -3px;
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    opacity: 0;
    transition: var(--fast-transition);
}

.progress-container:hover .progress-bar::after {
    opacity: 1;
}

.time-info {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.track-list {
    margin-top: 20px;
}

.track {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    margin-bottom: 10px;
    background: rgba(30, 30, 30, 0.5);
    border-radius: 10px;
    transition: var(--fast-transition);
    cursor: pointer;
    border-left: 3px solid transparent;
}

.track:hover {
    background: rgba(255, 0, 170, 0.1);
    transform: translateX(5px);
    border-left: 3px solid var(--neon-blue);
}

.track.active {
    background: rgba(255, 0, 170, 0.2);
    border-left: 3px solid var(--neon-pink);
}

.track-number {
    font-weight: bold;
    margin-right: 20px;
    color: var(--text-primary);
    width: 25px;
    text-align: center;
    font-size: 1.1rem;
}

.track-info {
    flex-grow: 1;
}

.track-title {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.track-duration {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.track-play {
    color: var(--text-primary);
    font-size: 1.3rem;
    transition: var(--fast-transition);
}

.track:hover .track-play {
    color: var(--neon-blue);
}

.stat-card {
    background: rgba(30, 30, 30, 0.5);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    margin: 15px;
    min-width: 220px;
    flex-grow: 1;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-blue));
    z-index: -1;
    border-radius: 16px;
    opacity: 0;
    transition: var(--fast-transition);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-number {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--neon-blue);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.video-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 247, 255, 0.2);
}

.video-thumbnail {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.45, 0.45, 0.95);
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.1);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 3.5rem;
    opacity: 0.8;
    transition: var(--fast-transition);
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.video-card:hover .play-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
}

.video-info {
    padding: 20px;
    background: rgba(30, 30, 30, 0.7);
}

.video-title {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.video-views {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.gallery-slider {
    padding: 50px 0;
}

.gallery-slide {
    width: 300px;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.gallery-slide:hover {
    transform: scale(1.05);
}

.gallery-slide:hover img {
    transform: scale(1.1);
}

.swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    background: var(--neon-blue);
    opacity: 1;
}

.event-card {
    background: rgba(30, 30, 30, 0.5);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.event-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-blue));
    z-index: -1;
    border-radius: 16px;
    opacity: 0;
    transition: var(--fast-transition);
}

.event-card:hover::before {
    opacity: 1;
}

.event-date {
    font-size: 1.2rem;
    color: var(--neon-blue);
    margin-bottom: 10px;
    font-weight: 600;
}

.event-location {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.merch-item {
    background: rgba(30, 30, 30, 0.5);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.merch-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-blue));
    z-index: -1;
    border-radius: 16px;
    opacity: 0;
    transition: var(--fast-transition);
}

.merch-item:hover::before {
    opacity: 1;
}

.merch-img {
    height: 250px;
    overflow: hidden;
}

.merch-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.merch-item:hover .merch-img img {
    transform: scale(1.1);
}

.merch-info {
    padding: 20px;
}

.merch-price {
    font-size: 1.3rem;
    color: var(--neon-pink);
    font-weight: 700;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    transition: var(--fast-transition);
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--neon-blue);
    box-shadow: 0 0 0 0.25rem rgba(0, 247, 255, 0.25);
    color: white;
}

.footer {
    background: linear-gradient(135deg, #070707 0%, #0a0a0a 100%);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('Image/logo.png') center/cover no-repeat;
    opacity: 0.05;
    z-index: 0;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    font-size: 1.3rem;
    transition: var(--fast-transition);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    color: white;
}

.social-link.instagram:hover { background: #E1306C; }
.social-link.facebook:hover { background: #3b5998; }
.social-link.youtube:hover { background: #FF0000; }
.social-link.spotify:hover { background: #1DB954; }
.social-link.tiktok:hover { background: #000000; }

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-link {
    color: var(--text-secondary);
    transition: var(--fast-transition);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.footer-link:hover {
    color: var(--neon-blue);
    text-decoration: none;
}

.copyright {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

@keyframes fadeInScale {
    0% { opacity: 0; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}

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

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes soundWave {
    0%, 100% { height: 5px; transform: scaleY(0.5); }
    25% { height: 30px; transform: scaleY(1.5); }
    50% { height: 15px; transform: scaleY(0.8); }
    75% { height: 40px; transform: scaleY(2); }
}

@keyframes equalizer {
    0%, 100% { height: 20px; transform: scaleY(0.5); }
    25% { height: 60px; transform: scaleY(1.5); }
    50% { height: 30px; transform: scaleY(0.8); }
    75% { height: 80px; transform: scaleY(2); }
}

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

@media (max-width: 1199px) {
    .hero-title {
        font-size: 4rem;
    }
    .section-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 3.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        letter-spacing: 2px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
        display: block;
        width: 100%;
    }

    .hero-subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .music-cover {
        width: 200px;
        height: 200px;
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .hero-section {
        text-align: center;
        padding-top: 100px;
    }

    .hero-image {
        margin-top: 30px;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }

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

    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .section-title::after {
        width: 60px;
        height: 3px;
        bottom: -10px;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .visualizer-bar {
        width: 6px;
    }

    .control-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin: 0 8px;
    }

    .control-btn.play {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }

    .track {
        padding: 12px 15px;
    }

    .track-number {
        margin-right: 15px;
        font-size: 1rem;
    }

    .track-title {
        font-size: 1rem;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .btn-neon {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .music-cover {
        width: 180px;
        height: 180px;
    }

    .music-title {
        font-size: 1.3rem;
    }

    .music-artist {
        font-size: 0.9rem;
    }

    .control-btn {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
        margin: 0 5px;
    }

    .control-btn.play {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }

    .track {
        padding: 10px 12px;
    }

    .track-number {
        margin-right: 10px;
        font-size: 0.9rem;
    }

    .track-title {
        font-size: 0.9rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .preloader-logo {
        width: 100px;
        height: 100px;
    }

    .preloader-text {
        font-size: 1rem;
    }
}

@media (max-width: 375px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .music-cover {
        width: 160px;
        height: 160px;
    }

    .control-btn {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
        margin: 0 3px;
    }

    .control-btn.play {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .track {
        padding: 8px 10px;
    }

    .track-number {
        margin-right: 8px;
        font-size: 0.8rem;
    }

    .track-title {
        font-size: 0.8rem;
    }

    .footer-link {
        font-size: 0.75rem;
    }

    .copyright {
        font-size: 0.8rem;
    }
}

@media (max-width: 320px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .btn-neon {
        padding: 8px 15px;
        font-size: 0.7rem;
    }

    .music-cover {
        width: 140px;
        height: 140px;
    }

    .music-title {
        font-size: 1.1rem;
    }

    .control-btn {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
    }

    .control-btn.play {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .track {
        padding: 6px 8px;
    }

    .track-number {
        margin-right: 6px;
        font-size: 0.7rem;
    }

    .track-title {
        font-size: 0.7rem;
    }

    .social-link {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}