/* --- Global Reset & Variables --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
     background: linear-gradient(to bottom, #FFC100 0%, #FF6600 50%, #FF0000 100%);
    --text-white: #ffffff;
    --text-gray: #a1a1a1;
    --accent-red: #cc0000; /* For 'Sold Out' badges */
    --glass: rgba(255, 255, 255, 0.1);
}

html {
    scroll-behavior: initial; /* Lenis handles smoothing */
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}


@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background: #000; color: #fff; overflow-x: hidden; }

/* Navbar Wrapper */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1000;
}

/* Hamburger Menu (Hidden on Desktop) */
.hamburger {
    display: none;
}

/* Menu Icon - Opens Sidebar */
.menu-icon {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1100;
    cursor: pointer;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    padding: 0;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
    align-items: center;
}

.menu-icon  span{
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-icon.dark-mode span {
    background: #000;
}

/* Hide menu icon when sidebar is open */
body.menu-open .menu-icon {
    display: none;
}

/* Mobile Sidebar Navigation (Hidden on Desktop) */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    padding: 60px 30px 30px 30px;
    gap: 25px;
    transition: left 0.3s ease;
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 10px 0;
}

.mobile-nav a:hover {
    color: #ccc;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    padding: 0;
    line-height: 1;
    transition: 0.3s;
}

.close-btn:hover {
    color: #aaa;
}

/* The Hanging Glass Container */
.nav-container {
    width: 967px; /* Exact Figma width */
    height: 45px; /* Slimmer for a premium look */
    
    /* Background Properties */
    background: rgba(0, 0, 0, 0.4); /* 40% Black */
    backdrop-filter: blur(16.8px); /* 16.8 Blur */
    -webkit-backdrop-filter: blur(16.8px);
    
    /* Border Properties */
    border: 1px solid rgba(255, 255, 255, 0.68); /* 68% White */
    border-top: none;
    
    /* Shape & Curves */
    border-bottom-left-radius: 40px; 
    border-bottom-right-radius: 40px;
     /* The \___/ Angle */

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 45px; /* Space between words */
    padding: 0 60px;
}

/* Navigation Links & Hover Effect */
.nav-container a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 1.2px; /* Professional spacing */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.7;
    position: relative;
}

/* THE HOVER EFFECT */
.nav-container a:hover {
    opacity: 1;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5); /* Glowing effect */
    transform: translateY(-2px); /* Subtle lift */
}

/* Active State (White dot below) */
.nav-container a.active {
    opacity: 1;
}

.nav-container a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: #FFFFFF;
    border-radius: 50%;
}
/* --- HERO SECTION --- */
/* --- Hero Section Fix --- */
.hero {
    height: 100vh;
    /* Shifts the image down by 10% so the artist's head isn't under the nav */
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.5)), 
                url('../assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center 15%; /* This 'bits down' the image */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* --- Typography Fix --- */
.main-title {
    font-size: 85px; 
    font-weight: 650; 
    letter-spacing: 10px; /* Fixed wide spacing from Figma */
    margin-bottom: 5px;
}

.hero-sub {
    font-size: 19px;
    letter-spacing: 4px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* --- Button 'Turning' Hover Effect --- */
.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1); /* Glass look */
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    color: white;
    padding: 14px 35px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* The 'Turning' Effect: Background turns solid white, text turns black */
.btn-glass:hover {
    background: #FFFFFF; 
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

/* --- Social Icons --- */
.social-row {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 20px;
}

.s-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    /* Makes icons pure white */
}

.s-icon:hover {
    transform: scale(1.2);
}


.footer-logo {
    position: absolute; 
    right: 20px;         /* Slightly closer to the edge for a cleaner look */
    bottom: 20px;
    z-index: 10;
}

.footer-logo img {
    width: 50px;         /* Smaller, more subtle size */
    height: auto;
    display: block;      /* Removes any weird bottom spacing */
    opacity: 0.85;       /* Blends it slightly with the background */
    transition: transform 0.3s ease; /* Smooth effect if you want to hover it */
}

/* Optional: Subtle hover effect to make it feel interactive */
.footer-logo img:hover {
    transform: scale(1.1);
    opacity: 1;
}

/* For very small mobile screens */
@media (max-width: 480px) {
    .footer-logo img {
        width: 40px;     /* Even smaller on mobile */
    }
}

/* ABOUT SECTION (WHITE BG) */
.about-section {
    
    color:#333;
   
    background: linear-gradient(to bottom, #FFC100 0%, #FF6600 50%, #FF0000 100%);
    padding: 120px 10% 100px 10%;
}
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}
.about-text { flex: 1.5; }
/* ABOUT SECTION HEADING */
.about-text h2 {
    font-size: 1.8rem;         /* Makes the overall heading smaller */
    font-weight: 300;         /* Makes "About" thin and unbold */
    letter-spacing: 2px;
    text-transform: capitalize;
    margin-bottom: 25px;
    color: #f9f7f7;
}

.about-text h2 span {
    font-weight: 500;         /* Makes "KIZHAKKUVAASI" extra bold */
    color: #ffffff;              /* Darker color for emphasis */
    letter-spacing: 3px;      /* Matches the wide artist branding */
    margin-left: 10px;
    font-size: 2.5rem;
}
.about-text p { line-height: 1.8; font-size: 1.2rem; color: #f9f7f7; }

/* ARCHED IMAGE */
.arched-img {
    width: 100%;
    max-width: 400px;
    height: 550px;             /* Keeps it tall like image_c8e76a.png */
    border-radius: 250px 250px 0 0; /* Creates the perfect arch */
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}



/* --- Music Section Container --- */
/* 1. Make the section use more screen width */
.music-section {
    padding: 80px 2%; /* 5% gives a slight edge but keeps it "full screen" */
    width: 100%;
    box-sizing: border-box;
    background: linear-gradient(to bottom, #FFC100 0%, #FF6600 50%, #FF0000 100%);
}

/* 2. Grid for exactly 3 cards */
.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
   
    
}

/* 3. The Card & Hover Effect */
.music-card {
    background: transparent;
    border-radius: 24px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.music-card:hover {
    transform: translateY(-10px); /* Lifts up smoothly without breaking layout */
}

/* 4. Merging the Iframe and White Frame */
.player-container {
    position: relative;
    z-index: 2;
    line-height: 0; /* Removes tiny gap below iframe */
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.player-container iframe {
    display: block;
    border: none;
}

.card-info-bottom {
    background: #FFFFFF;
    padding: 25px 25px 20px;
    border-radius: 10px 10px 24px 24px; /* Rounded only at bottom */
    margin-top: -20px; /* Overlaps by 1px to ensure no gap line exists */
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    position: relative;
    border: none;
}

/* Typography & Button */
.song-title {
    color: #000;
    margin-bottom: 5px;
    font-size: 1.3rem;
    font-family: inherit;
}

.song-date {
    color: #666;
    margin: 5px 0 15px;
    font-size: 0.9rem;
}

.listen-btn {
    background: #070707;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 50px;
    font-weight: bold;
    transition: 0.3s;
}

.listen-btn:hover {
    background: #717171;
}

/* Responsive */
@media (max-width: 1024px) {
    .music-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .music-grid { grid-template-columns: 1fr; }
}


.music-header {
    margin-bottom: 40px;
    text-align: center;

}

.view-all-container {
    display: flex;
    margin-top: 40px;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 50px; /* Space below the grid */
    padding-bottom: 20px;
}

.view-all-btn {
    background: transparent;
    border: 2px solid rgb(253, 252, 252);
    color: rgb(250, 248, 248);
    padding: 12px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.view-all-btn:hover {
    background: white;
    color: #FF6600; /* Matches your gradient theme */
    transform: scale(1.05);
}


/* THE PILL BUTTON */



/* THE CARD SHADOW */

.navbar {
    transition: transform 0.4s ease, opacity 0.4s ease;
}






.listing-label { font-size: 0.8rem; font-weight: 600; margin-bottom: 10px; }
.platform-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.plat-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 8px;
    text-decoration: none;
    color: #000;
    font-size: 0.85rem;
    font-weight: 500;
    transition: 0.3s;
}

.plat-btn:hover { background: #f8f8f8; border-color: #ddd; }
.plat-btn:nth-child(3) { grid-column: span 2; } /* YouTube button spans full width */








/* Container for the text area within the card */
.card-content {
    padding: 0 5px;
    text-align: left;
}

.song-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #000;
}

.song-date {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}

/* Player Styling */
.player-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.play-trigger {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: #e0e0e0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.progress-container {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.progress-track {
    flex: 1;
    height: 4px;
    background: #e0e0e0;
    position: relative;
    cursor: pointer;
    border-radius: 2px;
    transition: height 0.2s ease;
}

.progress-track:hover {
    height: 6px;
}

.progress-fill {
    width: 0%;
    height: 100%;
    background: #000;
    position: relative;
    border-radius: 2px;
    transition: width 0.1s linear;
}

.time-label {
    font-size: 10px;
    color: #999;
    white-space: nowrap;
}

/* ===== VIDEOS SECTION ===== */
.videos-section {
    background: linear-gradient(to bottom, #FFC100 0%, #FF6600 50%, #FF0000 100%);
    padding: 100px 0;
    text-align: center;
}

.videos-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fefefe;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1rem;
    color: #f8f5f5;
}

.videos-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.video-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-8px);
}

.video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
}

.video-frame iframe {
    width: 100%;
    height: 100%;
}

.video-frame .badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0,0,0,0.36);
    color: rgba(255,255,255,0.95);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: none;
}

.video-content {
    padding: 20px;
}

.video-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
    text-align: left;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #666;
    text-align: left;
}

.video-views {
    font-weight: 500;
}

.video-date {
    color: #999;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}



/* ===== SHOWS SECTION ===== */

.shows-section {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(to bottom, #FFC100 0%, #FF6600 50%, #FF0000 100%);/* let gradient show */
  color: white;
}

.shows-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.shows-subtitle {
  margin-bottom: 50px;
  opacity: 0.9;
}


#shows-container {
  max-width: 550px;
  margin: 0 auto;
}

/* Show Card */
.show-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(10px);
  background: #dbd4d4;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  padding: 20px 30px;
  margin-bottom: 20px;
  transition: 0.3s ease;
  color: white;
}

.show-item:hover {
  background: rgba(255, 255, 255, 0.25);
}


/* Date */
.show-date {
  text-align: center;
  min-width: 70px;
}

.show-date .day {
  font-size: 1.6rem;
  font-weight: 600;
  display: block;
}

.show-date .month {
  font-size: 0.8rem;
  color: #666;
  letter-spacing: 1px;
}

.show-date .month,
.show-info p {
  color: rgb(255, 255, 255);
}

/* Info */
.show-info {
  flex: 1;
  text-align: left;
  padding: 0 30px;
}

.show-info h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
}

.show-info p {
  margin: 5px 0 0;
  font-size: 0.9rem;
  color: #ffffff;
}

/* Buttons */
.ticket-btn {
  background: white;
  color: #FF0000;
  padding: 8px 18px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: 0.3s ease;
}

.ticket-btn:hover {
  background: black;
  color: white;
}


.ticket-btn {
  background: rgba(0,0,0,0.7);
  color: white;
}


.sold-out {
  background: #d60000;
  color: white;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
}

.btn-glass {
  text-decoration: none;
}


.artist-section {
  padding: 60px 20px; 
  /*background: linear-gradient(to bottom, #191919 0%, #0b0b0b 50%, #313131 100%);*/
  background: linear-gradient(to bottom, #FFC100 0%, #FF6600 50%, #FF0000 100%);
}

.artist-content {
  max-width: 800px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
}

.artist-subtitle {
  text-align: center;
  margin-bottom: 30px;
  opacity: 0.7;
}


.contact-section {
  padding: 80px 20px;
  text-align: center;
  background: #474242;
}

.contact-text {
  margin-bottom: 15px;
  opacity: 0.8;
}

.contact-email {
  display: inline-block;
  margin-bottom: 25px;
  font-size: 1.2rem;
  text-decoration: none;
  color: white;
  border-bottom: 1px solid white;
}

.social-links {
  margin-top: 25px;
}

.social-links a {
  margin: 0 15px;
  display: inline-block;
}

.social-icon {
  width: 28px;
  height: 28px;
  fill: white;
  transition: 0.3s ease;
}

.social-links a:hover .social-icon {
  transform: translateY(-4px);
  opacity: 0.8;
}




.footer {
  padding: 20px;
  text-align: center;
  background: #0a0a0a;
  font-size: 0.9rem;
  opacity: 0.6;
}








/* ===== MOBILE RESPONSIVE DESIGN ===== */

/* Tablet (768px and below) */
@media (max-width: 768px) {
    /* Show menu icon and mobile nav */
    .menu-icon {
        display: flex;
        
        
    }

    /* Hide desktop navbar */
    .navbar {
        display: none;
    }

    /* Navbar */
    .nav-container {
        width: 90%;
        gap: 20px;
        padding: 0 20px;
        height: 50px;
    }
    
    .nav-container a {
        font-size: 11px;
        letter-spacing: 0.8px;
    }

    /* Hero Section */
    .hero {
        height: 100vh;
        padding-top: 50px;
    }

    .main-title {
        font-size: 55px;
        letter-spacing: 6px;
        margin-bottom: 10px;
    }

    .hero-sub {
        font-size: 14px;
        letter-spacing: 2px;
        margin-bottom: 25px;
    }

    .hero-btns {
        gap: 12px;
        flex-wrap: wrap;
        margin-bottom: 20px;
    }

    .btn-glass {
        padding: 10px 20px;
        font-size: 12px;
    }

    .social-row {
        gap: 35px;
        margin-top: 15px;
    }

    .s-icon {
        width: 20px;
        height: 20px;
    }

    /* About Section */
    .about-section {
        padding: 80px 5% 60px 5%;
    }

    .about-container {
        flex-direction: column;
        gap: 40px;
    }

    .about-text h2 {
        font-size: 1.4rem;
    }

    .about-text h2 span {
        font-size: 1.8rem;
        display: block;
        margin-left: 0;
        margin-top: 10px;
    }

    .about-text p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .arched-img {
        max-width: 100%;
        height: 400px;
    }

    /* Music Section */
    .music-grid {
        gap: 20px;
        max-width: 100%;
        padding: 0 10px;
    }

    .music-card {
        width: 100%;
        max-width: 320px;
        padding: 20px;
    }

    .stream-btn {
        height: 42px;
        font-size: 12px;
    }

    .listing-label {
        font-size: 12px;
    }

    .view-all-btn {
        padding: 10px 30px;
        font-size: 12px;
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    /* Navbar */
    .nav-container {
        width: 95%;
        height: 45px;
        gap: 12px;
        padding: 0 15px;
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
    }

    .nav-container a {
        font-size: 10px;
        letter-spacing: 0.5px;
    }

    /* Hero Section */
    .hero {
        min-height: 100vh;
        padding-top: 70px;
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }

    .hero-content {
        padding: 0 15px;
        padding-top: 60px;
    }

    .main-title {
        font-size: 40px;
        letter-spacing: 4px;
        margin-bottom: 8px;
    }

    .hero-sub {
        font-size: 14px;
        letter-spacing: 1.5px;
        margin-bottom: 20px;
    }

    .hero-btns {
        gap: 10px;
        flex-direction: column;
        margin-bottom: 15px;
    }

    .btn-glass {
        width: 100%;
        padding: 10px 15px;
        font-size: 11px;
    }

    .social-row {
        gap: 30px;
        margin-top: 12px;
    }

    .s-icon {
        width: 18px;
        height: 18px;
    }

    /* About Section */
    .about-section {
        padding: 60px 15px 50px 15px;
    }

    .about-container {
        flex-direction: column;
        gap: 30px;
        max-width: 100%;
    }

    .about-text h2 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .about-text h2 span {
        font-size: 1.5rem;
        display: block;
        margin-top: 8px;
    }

    .about-text p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .arched-img {
        max-width: 100%;
        height: 350px;
        border-radius: 200px 200px 0 0;
    }

    /* Music Section */
    .music-section {
        padding: 60px 15px;
    }

    .music-header {
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .music-grid {
        gap: 15px;
        padding: 0;
    }

    .music-card {
        width: 100%;
        max-width: 100%;
        padding: 18px;
        margin-bottom: 10px;
        box-shadow: 0 20px 50px -10px rgba(0,0,0,0.3);
    }

    .cover-frame {
        margin-bottom: 15px;
        border-radius: 18px;
    }

    .badge {
        font-size: 11px;
        padding: 5px 8px;
        border-radius: 8px;
    }

    .song-title {
        font-size: 1.1rem;
        margin-bottom: 3px;
    }

    .song-date {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }

    .player-row {
        gap: 10px;
        margin-bottom: 15px;
    }

    .play-trigger {
        width: 32px;
        height: 32px;
        font-size: 10px;
    }

    .time-label {
        font-size: 8px;
    }

    .listing-label {
        font-size: 11px;
        margin-bottom: 10px;
    }

    .stream-grid {
        gap: 8px;
    }

    .stream-btn {
        height: 40px;
        font-size: 11px;
        border-radius: 8px;
    }

    .stream-btn img {
        width: 16px;
        height: 16px;
    }

    .view-all-container {
        margin-top: 30px;
    }

    .view-all-btn {
        padding: 10px 25px;
        font-size: 11px;
    }

    /* Videos Section Mobile */
    .videos-section {
        padding: 60px 15px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .videos-grid {
        gap: 15px;
        padding: 0;
    }

    .video-card {
        max-width: 100%;
    }

    .video-title {
        font-size: 1rem;
    }

    .video-meta {
        font-size: 0.8rem;
    }
}

/* Extra Small (< 360px) */
@media (max-width: 360px) {
    .main-title {
        font-size: 32px;
        letter-spacing: 3px;
    }

    .hero-sub {
        font-size: 14px;
    }

    .music-card {
        padding: 15px;
    }

    .song-title {
        font-size: 1rem;
    }
}

/* ===== MOBILE CLEAN CARD FIX ===== */
@media (max-width: 768px) {

    .music-card {
        padding: 0 !important;       /* REMOVE outer spacing */
        background: transparent !important;
        box-shadow: none !important;
        border-radius: 0 !important;
    }

    .player-container {
        border-radius: 16px 16px 0 0 !important;
        overflow: hidden;
    }

    .card-info-bottom {
        margin-top: 0 !important;    /* Remove overlap */
        border-radius: 10 10 16px 16px !important;
        box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
        margin-top: -20px !important;
    }

}



@media (max-width: 768px) {

  /* Main show container */
  .show-item {
    display: flex;
    flex-direction: column;
    align-items: center;      /* center horizontally */
    justify-content: center;
    text-align: center;       /* center text */
    gap: 12px;
  }

  /* Date block */
  .show-date {
    text-align: center;
  }

  /* Title */
  .show-info h3 {
    text-align: center;
    font-size: 16px;
    line-height: 1.4;
  }

  /* Location & Time rows */
  .show-info p {
    display: flex;
    justify-content: center;  /* center icon + text */
    align-items: center;
    gap: 6px;
    margin: 4px 0;
    font-size: 14px;
  }

  /* Button wrapper */
  .show-action {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  /* Button */
  .show-action a {
    text-align: center;
  }

}



.btn-glass {
  text-decoration: none;
}


