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

:root {
    --primary: #ff3e3e;
    --secondary: #00d4ff;
    --accent: #ff00ff;
    --dark: #0a0a0f;
    --darker: #050508;
    --light: #ffffff;
    --gray: #1a1a2e;
    --card-bg: #12121a;
}

html {
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--darker);
    color: var(--light);
    overflow-x: hidden;
    cursor: none;
}

.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s;
    mix-blend-mode: difference;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    background: rgba(255, 62, 62, 0.1);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.3s ease;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    overflow: hidden;
}

.logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s;
    font-size: 0.95rem;
}

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

.nav-links a:hover::before {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary);
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

#canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 20px;
}

.hero-title {
    font-size: 6rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 30px;
    position: relative;
    font-family: 'Orbitron', sans-serif;
}

.hero-title .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(100px) rotateX(90deg);
    background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    opacity: 0;
}

.btn {
    padding: 15px 40px;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: var(--primary);
    color: white;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid var(--secondary);
    clip-path: polygon(0 0, 90% 0, 100% 100%, 10% 100%);
}

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

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 62, 62, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { top: 10px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

.about {
    padding: 150px 50px;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    font-family: 'Orbitron', sans-serif;
    color: var(--secondary);
    font-size: 0.9rem;
    letter-spacing: 5px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 900;
    position: relative;
    display: inline-block;
    font-family: 'Orbitron', sans-serif;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.about-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-main {
    width: 100%;
    height: 600px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.glitch-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,62,62,0.1) 50%, transparent 70%);
    animation: glitch 3s infinite;
    pointer-events: none;
}

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

.floating-card {
    position: absolute;
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.card-1 {
    top: 50px;
    right: -30px;
    animation: float 6s ease-in-out infinite;
}

.card-2 {
    bottom: 100px;
    left: -30px;
    animation: float 6s ease-in-out infinite 2s;
}

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

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
}

.stat-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--secondary);
    font-family: 'Orbitron', sans-serif;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
}

.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.skill-tag {
    padding: 8px 20px;
    background: rgba(255,62,62,0.1);
    border: 1px solid rgba(255,62,62,0.3);
    border-radius: 30px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.skill-tag:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.album-showcase {
    padding: 150px 50px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 50%, var(--darker) 100%);
}

.album-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 62, 62, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.album-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.album-header {
    text-align: center;
    margin-bottom: 60px;
}

.album-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(255, 62, 62, 0.2), rgba(255, 0, 255, 0.1));
    border: 1px solid rgba(255, 62, 62, 0.3);
    padding: 10px 25px;
    border-radius: 50px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.badge-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 3px;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: badgePulse 2s infinite;
    box-shadow: 0 0 10px var(--primary);
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.album-title {
    font-size: 3rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(135deg, #fff 0%, var(--primary) 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    text-shadow: 0 0 30px rgba(255, 62, 62, 0.3);
}

.album-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

.album-tracks {
    max-width: 800px;
    margin: 0 auto;
}

.track-card {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transform-style: preserve-3d;
    perspective: 1000px;
    text-decoration: none;
    display: block;
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.4s;
    opacity: 1;
}

.track-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255,62,62,0.3);
    box-shadow: 0 30px 60px rgba(255,62,62,0.15);
}

.track-thumbnail {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.track-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.track-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.track-card:hover .track-overlay {
    opacity: 1;
}

.track-overlay .play-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,62,62,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: transform 0.3s;
    backdrop-filter: blur(10px);
}

.track-card:hover .track-overlay .play-icon {
    transform: scale(1);
}

.track-info-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, rgba(10,10,15,0.98), rgba(10,10,15,0.9), transparent);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-top: 2px solid rgba(255,62,62,0.3);
}

.track-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    line-height: 1.4;
    margin-bottom: 8px;
    text-align: right;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.track-meta {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    align-items: center;
}

.track-type {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--primary);
    font-weight: 600;
}

.content {
    padding: 150px 50px;
    position: relative;
}

.content-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.video-card {
    position: relative;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transform-style: preserve-3d;
    perspective: 1000px;
    text-decoration: none;
    display: block;
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.4s;
    opacity: 1;
}

.video-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255,62,62,0.3);
    box-shadow: 0 30px 60px rgba(255,62,62,0.15);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.video-card:hover .play-overlay {
    opacity: 1;
}

.play-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,62,62,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: transform 0.3s;
    backdrop-filter: blur(10px);
}

.video-card:hover .play-icon {
    transform: scale(1);
}

.video-info-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, rgba(10,10,15,0.98), rgba(10,10,15,0.9), transparent);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-top: 2px solid rgba(255,62,62,0.3);
}

.video-title {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    line-height: 1.4;
    margin-bottom: 8px;
    text-align: right;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-meta {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    align-items: center;
}

.video-views {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--primary);
    font-weight: 600;
}

.find-me {
    padding: 100px 50px;
    background: var(--dark);
    position: relative;
}

.find-me-header {
    max-width: 1400px;
    margin: 0 auto 50px;
}

.find-me-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.find-me-title::before {
    content: '#';
    color: var(--primary);
}

.find-me-desc {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    max-width: 600px;
}

.live-banner {
    max-width: 1400px;
    margin: 0 auto 50px;
    background: linear-gradient(135deg, rgba(255,62,62,0.1), rgba(255,62,62,0.05));
    border: 1px solid rgba(255,62,62,0.3);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    overflow: hidden;
    opacity: 1;
}

.live-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,62,62,0.1) 50%, transparent 70%);
    animation: glitch 3s infinite;
}

.live-icon {
    width: 100px;
    height: 100px;
    background: rgba(0,0,0,0.5);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.live-icon img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.live-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff0000;
    color: white;
    padding: 8px 20px;
    border-radius: 5px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    animation: pulse 2s infinite;
    z-index: 1;
}

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

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

.live-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.live-content p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
}

.live-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.live-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(255,62,62,0.3);
}

.social-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.social-card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: white;
    position: relative;
    overflow: hidden;
    opacity: 1;
}

.social-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, transparent 50%, rgba(255,62,62,0.2) 50%);
    border-radius: 0 0 0 50px;
    transition: all 0.3s;
}

.social-card:hover::before {
    width: 100%;
    height: 100%;
    border-radius: 0;
    background: rgba(255,62,62,0.1);
}

.social-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,62,62,0.3);
}

.social-icon-box {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255,62,62,0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s;
}

.social-card:hover .social-icon-box {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.social-name {
    font-size: 1.2rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.social-arrow {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: rgba(255,255,255,0.3);
    transition: all 0.3s;
}

.social-card:hover .social-arrow {
    color: var(--primary);
    transform: translateX(-5px);
}

footer {
    padding: 60px 50px 30px;
    background: var(--darker);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

.footer-links h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    margin-bottom: 20px;
    color: white;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.footer-links a::before {
    content: '#';
    color: var(--primary);
    font-size: 0.8rem;
}

.footer-links a:hover {
    color: var(--primary);
    padding-right: 5px;
}

.footer-social {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-social-link {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255,62,62,0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

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

.footer-bottom a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
}

.particle {
    position: fixed;
    pointer-events: none;
    opacity: 0;
    z-index: 9999;
}

@media screen and (max-width: 480px) {
    html {
        font-size: 14px;
    }

    body {
        cursor: auto;
    }

    .cursor, .cursor-follower {
        display: none;
    }

    nav {
        padding: 15px 20px;
    }

    .logo {
        font-size: 1.2rem;
    }

    .nav-links {
        display: none;
    }

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

    .hero-description {
        font-size: 1rem;
        padding: 0 10px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 30px;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .about {
        padding: 80px 20px;
    }

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-main {
        height: 350px;
    }

    .floating-card {
        padding: 12px;
        border-radius: 10px;
    }

    .card-1 {
        top: 20px;
        right: 10px;
    }

    .card-2 {
        bottom: 20px;
        left: 10px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .album-showcase {
        padding: 80px 20px;
    }

    .album-title {
        font-size: 2rem;
    }

    .album-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }

    .track-card {
        height: 300px;
    }

    .track-thumbnail {
        height: 200px;
    }

    .track-info-bar {
        height: 100px;
        padding: 15px;
    }

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

    .content {
        padding: 80px 20px;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .video-card {
        height: 280px;
    }

    .video-thumbnail {
        height: 180px;
    }

    .video-info-bar {
        height: 100px;
        padding: 15px;
    }

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

    .find-me {
        padding: 60px 20px;
    }

    .find-me-title {
        font-size: 1.5rem;
    }

    .live-banner {
        flex-direction: column;
        padding: 25px;
        gap: 20px;
        text-align: center;
    }

    .live-icon {
        width: 70px;
        height: 70px;
    }

    .live-badge {
        top: 15px;
        right: 15px;
        padding: 5px 12px;
        font-size: 0.7rem;
    }

    .live-content h3 {
        font-size: 1.2rem;
    }

    .live-content p {
        font-size: 0.85rem;
    }

    .live-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .social-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .social-card {
        padding: 20px;
        min-height: 120px;
    }

    .social-icon-box {
        width: 40px;
        height: 40px;
    }

    .social-name {
        font-size: 0.9rem;
    }

    .social-arrow {
        bottom: 15px;
        left: 15px;
    }

    footer {
        padding: 40px 20px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-brand h3 {
        font-size: 1.5rem;
    }

    .footer-links h4 {
        font-size: 0.9rem;
    }

    .footer-links a {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-social-link {
        width: 40px;
        height: 40px;
    }
}

@media screen and (min-width: 481px) and (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 4rem;
    }

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

    .album-tracks {
        max-width: 600px;
    }

    .content-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--darker);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-wrapper.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
    letter-spacing: 5px;
    animation: logoPulse 2s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { 
        opacity: 1;
        text-shadow: 0 0 30px rgba(255, 62, 62, 0.5);
    }
    50% { 
        opacity: 0.8;
        text-shadow: 0 0 50px rgba(255, 62, 62, 0.8);
    }
}

.loader-bar-container {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.loader-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
    background-size: 200% 100%;
    width: 0%;
    animation: loadingProgress 2s ease-in-out infinite, barGlow 2s ease-in-out infinite;
    border-radius: 2px;
    position: relative;
}

.loader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8));
    animation: shimmer 1s infinite;
}

@keyframes loadingProgress {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

@keyframes barGlow {
    0%, 100% { 
        box-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary);
    }
    50% { 
        box-shadow: 0 0 20px var(--accent), 0 0 40px var(--accent);
    }
}

@keyframes shimmer {
    0% { transform: translateX(0); }
    100% { transform: translateX(100px); }
}

.loader-text {
    margin-top: 20px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 3px;
    animation: textPulse 1.5s ease-in-out infinite;
}

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

@media screen and (max-width: 480px) {
    .loader-logo {
        font-size: 2rem;
    }
    
    .loader-bar-container {
        width: 250px;
    }
}
