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

:root {
    --primary-color: #ff6b00;
    --secondary-color: #ff8c42;
    --dark-bg: #0a0a0a;
    --darker-bg: #000000;
    --text-light: #ffffff;
    --text-gray: #b0b0b0;
    --card-bg: #1a1a1a;
    --accent: #ffd700;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--darker-bg);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 107, 0, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

body > * {
    position: relative;
    z-index: 1;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(255, 107, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.5;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: var(--darker-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.15), rgba(0, 0, 0, 0.95)),
                url('https://images.unsplash.com/photo-1511671782779-c97d3d27a1d4?w=1920&q=80') center/cover;
    background-blend-mode: overlay;
    opacity: 0.4;
    animation: backgroundMove 20s ease-in-out infinite;
}

@keyframes backgroundMove {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 107, 0, 0.2) 0%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.hero-image-container {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.hero-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent));
    border: 5px solid var(--primary-color);
    box-shadow: 0 0 50px rgba(255, 107, 0, 0.5),
                0 0 100px rgba(255, 107, 0, 0.3);
    position: relative;
    animation: pulse 3s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    overflow: hidden;
}

.hero-image::before {
    content: '🦅';
    position: absolute;
    font-size: 5rem;
    animation: rotate 10s linear infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 50px rgba(255, 107, 0, 0.5),
                    0 0 100px rgba(255, 107, 0, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 80px rgba(255, 107, 0, 0.8),
                    0 0 150px rgba(255, 107, 0, 0.5);
        transform: scale(1.05);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    animation: fadeInUp 1s ease 0.3s both;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
    text-shadow: 0 0 30px rgba(255, 107, 0, 0.5);
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 300;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 2rem;
    color: var(--primary-color);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Section Titles */
.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Latest Releases Section */
.latest-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    position: relative;
}

.latest-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.latest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.latest-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 107, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.latest-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.latest-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 107, 0, 0.4),
                0 0 30px rgba(255, 107, 0, 0.2);
    border-color: var(--primary-color);
}

.latest-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent));
    color: var(--darker-bg);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

.newest-badge {
    background: linear-gradient(135deg, #ff0000, var(--primary-color), #ff0000);
    background-size: 200% auto;
    animation: shimmer 2s linear infinite, pulse 2s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.6),
                0 0 50px rgba(255, 107, 0, 0.4);
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
}

.newest-card {
    border: 3px solid rgba(255, 0, 0, 0.5);
    box-shadow: 0 0 40px rgba(255, 0, 0, 0.3),
                0 0 60px rgba(255, 107, 0, 0.2);
}

.newest-card:hover {
    border-color: #ff0000;
    box-shadow: 0 0 60px rgba(255, 0, 0, 0.6),
                0 0 80px rgba(255, 107, 0, 0.4);
    transform: translateY(-15px) scale(1.03);
}

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

.latest-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    background: linear-gradient(135deg, var(--primary-color), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.latest-year {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.latest-play-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    text-decoration: none;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
    width: 100%;
    justify-content: center;
}

.latest-play-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.5);
}

.youtube-link {
    text-align: center;
    margin-top: 3rem;
}

.youtube-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.3);
}

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

.youtube-btn span {
    font-size: 1.3rem;
}

.track-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--accent));
    color: var(--darker-bg);
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.track-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.track-youtube-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(255, 0, 0, 0.3);
}

.track-youtube-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.5);
}

.track-youtube-btn span {
    font-size: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 0, 0.3);
}

.footer-link:hover {
    background: rgba(255, 107, 0, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Biography Section */
.biography-section {
    padding: 100px 0;
    background: var(--dark-bg);
    position: relative;
}

.biography-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 215, 0, 0.02) 50%, transparent 100%);
    pointer-events: none;
}

.biography-content {
    max-width: 900px;
    margin: 0 auto;
}

.biography-text {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
}

.biography-intro {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text-light);
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.biography-timeline {
    margin: 3rem 0;
}

.timeline-item {
    background: var(--card-bg);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.timeline-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(255, 107, 0, 0.2);
}

.timeline-item h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.timeline-item p {
    color: var(--text-gray);
    line-height: 1.8;
}

.timeline-item em {
    color: var(--accent);
    font-style: italic;
}

.biography-achievements {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    margin: 3rem 0;
    border: 2px solid rgba(255, 107, 0, 0.2);
}

.biography-achievements h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.biography-achievements ul {
    list-style: none;
    padding: 0;
}

.biography-achievements li {
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: rgba(255, 107, 0, 0.05);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.biography-achievements li:hover {
    background: rgba(255, 107, 0, 0.1);
    transform: translateX(10px);
}

.biography-achievements strong {
    color: var(--accent);
}

.biography-source {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 100px 0;
    background: var(--darker-bg);
    position: relative;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 107, 0, 0.3);
}

.disclaimer-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
    text-align: center;
}

.disclaimer-intro strong {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.disclaimer-intro em {
    color: var(--accent);
    font-style: italic;
}

.disclaimer-details {
    color: var(--text-gray);
    line-height: 1.8;
    margin-top: 2rem;
}

.official-links {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 107, 0, 0.2);
}

.official-links h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.official-links-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.official-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.official-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.5);
}

.footer-note {
    color: var(--text-gray) !important;
    font-size: 0.9rem !important;
    margin-top: 1rem !important;
    font-style: italic;
}

/* Albums Section */
.albums-section {
    padding: 100px 0;
    background: var(--dark-bg);
    position: relative;
}

.albums-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 107, 0, 0.02) 50%, transparent 100%);
    pointer-events: none;
}

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

.album-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 2px solid transparent;
    position: relative;
}

.album-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.album-card:hover::after {
    opacity: 1;
}

.album-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 107, 0, 0.4),
                0 0 30px rgba(255, 107, 0, 0.2);
    border-color: var(--primary-color);
}

.album-cover {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

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

.album-card:hover .album-cover img {
    transform: scale(1.1);
}

.album-cover .album-emoji {
    position: absolute;
    z-index: 2;
    font-size: 4rem;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.album-cover::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

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

.album-info {
    padding: 1.5rem;
}

.album-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.album-year {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.album-tracks-count {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Tracks Section */
.tracks-section {
    padding: 100px 0;
    background: var(--darker-bg);
    position: relative;
}

.tracks-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 215, 0, 0.02) 50%, transparent 100%);
    pointer-events: none;
}

.search-box {
    max-width: 500px;
    margin: 0 auto 3rem;
}

.search-box input {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--card-bg);
    border: 2px solid rgba(255, 107, 0, 0.3);
    border-radius: 50px;
    color: var(--text-light);
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    position: relative;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.4),
                inset 0 0 20px rgba(255, 107, 0, 0.1);
    transform: scale(1.02);
}

.search-box input::placeholder {
    color: var(--text-gray);
}

.tracks-list {
    display: grid;
    gap: 1rem;
}

.track-item {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

.track-item:hover::before {
    width: 100%;
}

.track-item:hover {
    background: rgba(255, 107, 0, 0.1);
    border-left-color: var(--primary-color);
    transform: translateX(10px);
    box-shadow: -5px 0 20px rgba(255, 107, 0, 0.3);
}

.track-info {
    flex: 1;
}

.track-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--text-light);
}

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

.track-year {
    color: var(--primary-color);
    font-weight: 500;
}

/* Lyrics Section */
.lyrics-section {
    padding: 100px 0;
    background: var(--dark-bg);
    position: relative;
}

.lyrics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 107, 0, 0.02) 50%, transparent 100%);
    pointer-events: none;
}

.lyrics-container {
    max-width: 1200px;
    margin: 0 auto;
}

.video-lyrics-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.video-container {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    min-height: 400px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 107, 0, 0.2);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background: var(--darker-bg);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    padding: 2rem;
    text-align: center;
    color: var(--text-gray);
}

.video-info {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
}

.video-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.video-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(255, 0, 0, 0.3);
}

.video-link-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.5);
}

.video-link-btn-large {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.3);
    margin-top: 1rem;
}

.video-link-btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.5);
}

.lyrics-selector {
    margin-bottom: 2rem;
}

.lyrics-selector select {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--card-bg);
    border: 2px solid rgba(255, 107, 0, 0.3);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lyrics-selector select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.3);
}

.lyrics-display {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 15px;
    min-height: 400px;
    line-height: 2;
    font-size: 1.1rem;
    white-space: pre-line;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 107, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.lyrics-display::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255, 107, 0, 0.03) 2px,
        rgba(255, 107, 0, 0.03) 4px
    );
    pointer-events: none;
    z-index: 1;
}

.lyrics-display::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

.lyrics-placeholder {
    text-align: center;
    color: var(--text-gray);
    font-style: italic;
    padding: 4rem 0;
}

.lyrics-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 107, 0, 0.3);
}

.lyrics-content {
    color: var(--text-light);
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    z-index: 0;
}

.lyrics-content span {
    display: inline-block;
    position: relative;
}

.lyrics-display {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.lyrics-title {
    position: relative;
    z-index: 2;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 107, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footer p {
    color: var(--text-gray);
    margin: 0.5rem 0;
    position: relative;
    z-index: 1;
}

.tribute {
    color: var(--primary-color) !important;
    font-weight: 600;
    font-size: 1.2rem;
    margin-top: 1rem !important;
    text-shadow: 0 0 20px rgba(255, 107, 0, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

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

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

    .hero-description {
        font-size: 1rem;
    }

    .hero-image {
        width: 150px;
        height: 150px;
        font-size: 4rem;
    }

    .hero-stats {
        gap: 2rem;
    }

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

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

    .latest-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .latest-card {
        padding: 1.5rem;
    }

    .albums-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .album-cover {
        height: 200px;
        font-size: 3rem;
    }

    .track-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .lyrics-display {
        padding: 1.5rem;
        font-size: 1rem;
    }

    .video-lyrics-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .video-container {
        min-height: 300px;
    }

    .video-placeholder {
        min-height: 300px;
    }
}

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

    .hero-image {
        width: 120px;
        height: 120px;
        font-size: 3rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

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

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

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

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

    .latest-card {
        padding: 1.2rem;
    }

    .youtube-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .biography-intro {
        font-size: 1.1rem;
        padding: 1.5rem;
    }

    .timeline-item {
        padding: 1.5rem;
    }

    .timeline-item h3 {
        font-size: 1.2rem;
    }

    .disclaimer-content {
        padding: 2rem 1.5rem;
    }

    .official-links-grid {
        flex-direction: column;
        align-items: center;
    }

    .official-link {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
}
