:root {
    --primary: #FF0054;
    --secondary: #00D9FF;
    --accent: #FFD700;
    --dark: #0A0A0A;
    --dark-gray: #1A1A1A;
    --mid-gray: #2A2A2A;
    --light-gray: #B0B0B0;
    --white: #FFFFFF;
}

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

body {
    font-family: 'Oswald', sans-serif;
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        linear-gradient(45deg, var(--dark) 0%, var(--dark-gray) 100%);
    overflow: hidden;
}

.bg-animation::before,
.bg-animation::after {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    animation: float 20s infinite ease-in-out;
}

.bg-animation::before {
    background: var(--primary);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.bg-animation::after {
    background: var(--secondary);
    bottom: -200px;
    right: -200px;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, 100px) scale(1.1); }
    50% { transform: translate(100px, 50px) scale(0.9); }
    75% { transform: translate(-50px, -100px) scale(1.05); }
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0) 100%);
    backdrop-filter: blur(10px);
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.logo {
    font-family: 'Anton', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    animation: glitch 3s infinite;
}

@keyframes glitch {
    0%, 100% { text-shadow: 2px 2px var(--primary), -2px -2px var(--secondary); }
    25% { text-shadow: -2px 2px var(--secondary), 2px -2px var(--primary); }
    50% { text-shadow: 0 0 transparent; }
    75% { text-shadow: 2px -2px var(--primary), -2px 2px var(--secondary); }
}

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

nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s;
}

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

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

nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 0 50px;
}

.hero-content {
    max-width: 1200px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

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

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 8rem;
    line-height: 0.9;
    margin-bottom: 20px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 5px;
}

.hero .subtitle {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 40px;
    font-weight: 600;
    letter-spacing: 3px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.btn {
    padding: 18px 45px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Oswald', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(255, 0, 84, 0.3);
}

.btn-primary:hover {
    background: #CC0043;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 0, 84, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--secondary);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.2);
}

.btn-secondary:hover {
    background: var(--secondary);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.4);
}

/* Section Styles */
section {
    padding: 120px 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    margin-bottom: 60px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 4px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary), var(--secondary));
    background-size: 200% 100%;
    animation: gradientRoll 3s linear infinite;
}

@keyframes gradientRoll {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 200% 0%;
    }
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    width: 100%;
    height: 700px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(255, 0, 84, 0.4);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: fadeIn 1s ease-out;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.02);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--light-gray);
}

.about-text h3 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

.about-text p {
    margin-bottom: 20px;
}

/* Shows Section */
.shows-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.show-card {
    background: var(--dark-gray);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    transition: all 0.3s;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.show-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
}

.show-card:hover {
    transform: translateX(10px);
    border-color: var(--secondary);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.3);
}

.show-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    padding: 15px 20px;
    min-width: 80px;
    text-align: center;
}

.date-month {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    color: var(--white);
    letter-spacing: 2px;
}

.date-day {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--white);
    line-height: 1;
}

.show-info {
    flex: 1;
}

.show-venue {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    margin-bottom: 5px;
    color: var(--white);
    letter-spacing: 1px;
}

.show-location {
    font-size: 1.1rem;
    color: var(--light-gray);
    margin-bottom: 8px;
}

.show-time {
    font-size: 0.95rem;
    color: var(--secondary);
}

.show-action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.btn-ticket {
    padding: 12px 30px;
    background: var(--secondary);
    color: var(--dark);
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Oswald', sans-serif;
}

.btn-ticket:hover {
    background: var(--white);
    transform: scale(1.05);
}

.btn-ticket.sold-out {
    background: var(--mid-gray);
    color: var(--light-gray);
    cursor: not-allowed;
}

.btn-ticket.sold-out:hover {
    transform: none;
}

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

.show-status.selling-fast {
    color: #FFA500;
}

.show-status.sold-out {
    color: var(--light-gray);
}

/* Videos Section */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.video-card {
    background: var(--dark-gray);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.video-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(255, 0, 84, 0.3);
}

.video-thumbnail {
    width: 100%;
    height: 250px;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.video-thumbnail iframe {
    border-radius: 0;
}

.video-thumbnail:not(:has(iframe))::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    transition: all 0.3s;
    aspect-ratio: 1 / 1;
}

.video-thumbnail:not(:has(iframe))::after {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: var(--white);
    z-index: 1;
    transition: all 0.3s;
}

.video-card:hover .video-thumbnail::before {
    transform: translate(-50%, -50%) scale(1.2);
    background: var(--secondary);
}

.video-card:hover .video-thumbnail::after {
    transform: translate(-50%, -50%) scale(1.2);
}

.video-info {
    padding: 25px;
}

.video-info h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

.video-info p {
    color: var(--light-gray);
    font-size: 1rem;
}

/* Listen Section */
.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--light-gray);
    margin-top: -40px;
    margin-bottom: 50px;
}

/* Album Gallery */
.album-gallery {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.album-art-item {
    width: 250px;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
}

.album-art-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 0, 84, 0.5);
}

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

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

/* Album Modal */
.album-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.album-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: var(--dark-gray);
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.4s ease;
    border: 2px solid var(--primary);
    box-shadow: 0 30px 80px rgba(255, 0, 84, 0.5);
}

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

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 3rem;
    color: var(--white);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    line-height: 1;
}

.close-modal:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.modal-body {
    display: flex;
    gap: 40px;
    padding: 40px;
}

.modal-body img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.modal-info {
    flex: 1;
}

.modal-info h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    margin-bottom: 30px;
    color: var(--primary);
    letter-spacing: 2px;
}

#modalTrackList {
    list-style: none;
    padding: 0;
}

#modalTrackList li {
    padding: 15px;
    margin-bottom: 15px;
    background: var(--mid-gray);
    border-radius: 8px;
    font-size: 1.2rem;
    transition: all 0.3s;
    border-left: 4px solid transparent;
}

#modalTrackList li:hover {
    background: var(--dark);
    border-left-color: var(--secondary);
}

.modal-track-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modal-track-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.track-number {
    font-weight: bold;
    color: var(--secondary);
    min-width: 30px;
}

.track-name {
    font-size: 1.1rem;
    flex: 1;
}

.modal-audio-player {
    width: 100%;
    height: 35px;
    outline: none;
}

.modal-audio-player::-webkit-media-controls-panel {
    background: var(--dark);
}

.modal-audio-player::-webkit-media-controls-play-button,
.modal-audio-player::-webkit-media-controls-mute-button {
    background-color: var(--primary);
    border-radius: 50%;
}

.modal-audio-player::-webkit-media-controls-timeline {
    background: var(--dark);
    border-radius: 25px;
}

.modal-audio-player::-webkit-media-controls-current-time-display,
.modal-audio-player::-webkit-media-controls-time-remaining-display {
    color: var(--white);
}

/* Most Played Section */
.most-played-container {
    margin: 60px 0;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 0, 84, 0.1), rgba(0, 217, 255, 0.1));
    border-radius: 20px;
    border: 2px solid var(--primary);
}

.most-played-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--white);
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(255, 0, 84, 0.5);
}

.most-played-tracks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.no-plays {
    text-align: center;
    font-size: 1.3rem;
    color: var(--light-gray);
    padding: 40px;
}

.most-played-card {
    background: var(--dark-gray);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: center;
    transition: all 0.3s;
    border: 2px solid var(--primary);
    position: relative;
    box-shadow: 0 10px 30px rgba(255, 0, 84, 0.3);
}

.most-played-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 0, 84, 0.5);
    border-color: var(--secondary);
}

.rank-badge {
    position: absolute;
    top: -15px;
    left: 20px;
    font-size: 2.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.6));
}

.most-played-artwork {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.most-played-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.most-played-card:hover .most-played-artwork img {
    transform: scale(1.1);
}

.most-played-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.most-played-info h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    color: var(--white);
    margin: 0;
    letter-spacing: 1px;
}

.most-played-info .artist {
    color: var(--light-gray);
    font-size: 0.95rem;
    margin: 0;
}

.play-count {
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.1rem;
    margin: 5px 0;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.most-played-info audio {
    width: 100%;
    height: 35px;
    margin-top: 5px;
}

.songs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.song-card {
    background: var(--dark-gray);
    border-radius: 10px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.song-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.3);
}

.song-artwork {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

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

.song-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.song-info h3 {
    font-size: 1.5rem;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
    margin: 0;
}

.song-info .artist {
    font-size: 0.9rem;
    color: var(--light-gray);
    margin: 0;
}

.song-info audio {
    width: 100%;
    height: 35px;
    outline: none;
    filter: hue-rotate(180deg) saturate(1.5);
}

.song-info audio::-webkit-media-controls-panel {
    background: var(--mid-gray);
}

.song-info audio::-webkit-media-controls-play-button,
.song-info audio::-webkit-media-controls-mute-button {
    background-color: var(--secondary);
    border-radius: 50%;
}

.song-info audio::-webkit-media-controls-timeline {
    background: var(--mid-gray);
    border-radius: 25px;
}

.song-info audio::-webkit-media-controls-current-time-display,
.song-info audio::-webkit-media-controls-time-remaining-display {
    color: var(--white);
}

/* Music Section */
.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.music-card {
    background: var(--dark-gray);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.music-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    box-shadow: 0 20px 50px rgba(0, 217, 255, 0.3);
}

.album-art {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    position: relative;
}

.music-card h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

.music-card .price {
    font-size: 1.8rem;
    color: var(--accent);
    font-weight: 700;
    margin: 15px 0;
}

.btn-buy {
    width: 100%;
    padding: 15px;
    background: var(--secondary);
    color: var(--dark);
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Oswald', sans-serif;
    border-radius: 5px;
}

.btn-buy:hover {
    background: var(--white);
    transform: scale(1.05);
}

.album-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hit-single-card {
    border: 3px solid var(--secondary);
    box-shadow: 0 15px 50px rgba(0, 217, 255, 0.4);
    position: relative;
}

.hit-single-card::before {
    content: '🔥 HOT';
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--secondary);
    color: var(--dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0, 217, 255, 0.5);
    z-index: 10;
}

/* Footer */
footer {
    background: var(--dark-gray);
    padding: 60px 50px;
    text-align: center;
    border-top: 2px solid var(--mid-gray);
}

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

.social-links a {
    width: 60px;
    height: 60px;
    background: var(--mid-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-5px) rotate(10deg);
}

footer p {
    color: var(--light-gray);
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        padding: 15px 25px;
    }

    .logo {
        font-size: 1.8rem;
    }

    nav ul {
        gap: 20px;
    }

    nav a {
        font-size: 0.9rem;
    }

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

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .about-image {
        height: 400px;
    }

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

    section {
        padding: 80px 25px;
    }

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

    .song-card {
        flex-direction: column;
        text-align: center;
    }

    .song-artwork {
        width: 100px;
        height: 100px;
        font-size: 3rem;
    }

    .album-art-item {
        width: 200px;
        height: 200px;
    }

    .most-played-container {
        padding: 30px 20px;
    }

    .most-played-title {
        font-size: 2rem;
    }

    .most-played-tracks {
        grid-template-columns: 1fr;
    }

    .modal-body {
        flex-direction: column;
        padding: 30px;
    }

    .modal-body img {
        width: 100%;
        height: auto;
    }
}

/* Extra small devices (phones, 576px and down) */
@media (max-width: 576px) {
    header {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
    }

    .logo {
        font-size: 1.5rem;
    }

    nav ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav a {
        font-size: 0.8rem;
    }

    .hero {
        padding: 0 20px;
    }

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

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

    .btn {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .about-image {
        height: 300px;
    }

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

    section {
        padding: 60px 20px;
    }

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

    .video-card {
        min-width: 100%;
    }

    .song-artwork {
        width: 120px;
        height: 120px;
    }

    footer {
        padding: 40px 20px;
    }

    .social-links {
        gap: 20px;
    }

    .social-links a {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .album-gallery {
        gap: 20px;
    }

    .album-art-item {
        width: 150px;
        height: 150px;
    }

    .show-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }

    .show-card::before {
        width: 100%;
        height: 5px;
    }

    .show-action {
        align-items: center;
        width: 100%;
    }

    .btn-ticket {
        width: 100%;
    }

    .most-played-container {
        padding: 20px 15px;
        margin: 40px 0;
    }

    .most-played-title {
        font-size: 1.8rem;
    }

    .most-played-card {
        flex-direction: column;
        text-align: center;
    }

    .rank-badge {
        top: -10px;
        left: 50%;
        transform: translateX(-50%);
    }

    .most-played-artwork {
        width: 120px;
        height: 120px;
    }

    .modal-body {
        padding: 20px;
    }

    .modal-info h2 {
        font-size: 2rem;
    }

    #modalTrackList li {
        font-size: 1rem;
        padding: 12px;
    }

    .track-name {
        font-size: 0.95rem;
    }

    .modal-audio-player {
        height: 30px;
    }
}

/* Ticket Modal Styles */
.ticket-modal-content {
    max-width: 1000px;
    width: 95%;
    max-height: 95vh;
}

.ticket-modal-body {
    padding: 0;
    display: block;
}

.ticket-modal-body iframe {
    width: 100%;
    height: 80vh;
    border-radius: 15px;
}
