:root {
    --primary: #00e5ff;
    --primary-glow: rgba(0, 229, 255, 0.4);
    --secondary: #ff0066;
    --secondary-glow: rgba(255, 0, 102, 0.4);
    --accent: #7c3aed;
    --dark: #0a0f1a;
    --darker: #05070a;
    --light: #ffffff;
    --text-muted: #94a3b8;
    --card-bg: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.1);
    --transition: cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
}

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

body {
    background-color: var(--darker);
    color: var(--light);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, .btn-brand {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.section-padding {
    padding: 120px 0;
}
    
section {
    position: relative;
    z-index: 1;
    border-bottom: 1px solid var(--border);
}

section:nth-of-type(even) {
    background-color: var(--dark);
}

section:nth-of-type(odd) {
    background-color: var(--darker);
}

.btn-brand {
    position: relative;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    padding: 14px 34px;
    background: var(--primary);
    color: var(--darker);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    overflow: hidden;
    z-index: 1;
    border: none;
}

.btn-brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--light);
    transition: var(--transition);
    z-index: -1;
}

.btn-brand:hover::before {
    width: 100%;
}

.btn-brand:hover {
    color: var(--darker);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 229, 255, 0.2);
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--light);
}

.btn-secondary:hover {
    background: var(--light);
    border-color: var(--light);
    color: var(--darker);
}

.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
    transition: var(--transition);
}

header.scrolled {
    background: var(--dark);
    padding: 15px 0;
    border-bottom: 1px solid var(--glass-border);
}

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

.logo img {
    height: 40px;
    width: auto;
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: white;
    z-index: 1001;
    transition: var(--transition);
}

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

nav ul {
    display: flex;
    gap: 30px;
}

nav ul li a {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

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

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: clamp(3.5rem, 10vw, 7rem);
    line-height: 0.9;
    margin-bottom: 25px;
    letter-spacing: -2px;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

/* Sections */
.section-title {
    font-size: 3rem;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bio-content h2 {
    color: var(--light);
    margin-bottom: 20px;
}

.bio-content p {
    color: var(--light);
    margin-bottom: 20px;
    opacity: 0.9;
}

.animate-fade {
    opacity: 0;
}

.animate-fade.active {
    animation: fadeIn 1s ease forwards;
}

/* Biography Refinement */
#bio {
    background: radial-gradient(circle at 80% 20%, rgba(0, 229, 255, 0.05), transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(255, 0, 115, 0.05), transparent 40%);
}

.bio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.bio-img img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 20px 20px 0 var(--glass);
    transition: var(--transition);
}

.bio-border-top {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-top: 5px solid var(--primary);
    border-left: 5px solid var(--primary);
    z-index: 1;
}

.bio-border-bottom {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-bottom: 5px solid var(--secondary);
    border-right: 5px solid var(--secondary);
    z-index: 1;
}

/* Releases */
.release-card {
    display: flex;
    gap: 40px;
    align-items: center;
}

.release-cover img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.tracklist {
    flex-grow: 1;
}

.track-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--glass-border);
    cursor: pointer;
    transition: var(--transition);
}

.track-item:hover {
    color: var(--primary);
}

/* New Agenda Style */
.agenda-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.event-card {
    display: grid;
    grid-template-columns: 120px 1fr 200px;
    align-items: center;
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 30px;
    border-radius: 16px;
    transition: var(--transition);
}

.event-card:hover {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
}

.event-date-box {
    text-align: center;
    border-right: 1px solid var(--border);
}

.event-day {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--primary);
}

.event-month {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
}

.event-details {
    padding: 0 40px;
}

.event-details h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--light);
}

.event-card.featured {
    border: 2px solid var(--primary);
    background: rgba(0, 229, 255, 0.08);
    position: relative;
}

.event-card.featured::before {
    content: 'PRÓXIMO SHOW';
    position: absolute;
    top: -12px;
    left: 30px;
    background: var(--primary);
    color: var(--darker);
    padding: 2px 12px;
    font-size: 0.65rem;
    font-weight: 900;
    border-radius: 4px;
}

.event-action {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.agenda-more {
    display: none;
}

.btn-show-more {
    display: block;
    margin: 40px auto 0;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 12px 40px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-show-more:hover {
    color: var(--light);
    border-color: var(--light);
}

@media (max-width: 768px) {
    .event-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .event-date-box {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding-bottom: 20px;
    }

    .event-details {
        padding: 0;
    }

    .event-action {
        justify-content: center;
    }
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    margin-bottom: 20px;
}

/* Premium Social Media Icons styling */
.social-header {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-header a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 1rem;
    transition: var(--transition);
}

.social-header a:hover {
    border-color: var(--primary);
    background: rgba(0, 229, 255, 0.1);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 0 15px var(--primary-glow);
}

.social-contact-delicate {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-contact-delicate a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 1.15rem;
    transition: var(--transition);
}

.social-contact-delicate a:hover {
    border-color: var(--secondary);
    background: rgba(255, 0, 102, 0.1);
    color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 0 15px var(--secondary-glow);
}

.album-streaming-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    border-top: 1px solid var(--border);
    padding-top: 20px;
    align-items: center;
}

.album-streaming-links a {
    font-size: 1.4rem;
    color: var(--text-muted);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.album-streaming-links a:hover {
    transform: scale(1.2) translateY(-2px);
}

.album-streaming-links a[title="Spotify"]:hover {
    color: #1DB954;
    text-shadow: 0 0 15px rgba(29, 185, 84, 0.6);
}

.album-streaming-links a[title="SoundCloud"]:hover {
    color: #FF5500;
    text-shadow: 0 0 15px rgba(255, 85, 0, 0.6);
}

.album-streaming-links a[title="Apple Music"]:hover {
    color: #FC3C44;
    text-shadow: 0 0 15px rgba(252, 60, 68, 0.6);
}

.album-streaming-links a[title="Deezer"]:hover {
    color: #FF007F;
    text-shadow: 0 0 15px rgba(255, 0, 127, 0.6);
}

.album-streaming-links a[title="Tidal"]:hover {
    color: #00FFCC;
    text-shadow: 0 0 15px rgba(0, 255, 204, 0.6);
}

.album-streaming-links a[title="YouTube Music"]:hover {
    color: #FF0000;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
}

.album-streaming-links a[title="Amazon Music"]:hover {
    color: #FF9900;
    text-shadow: 0 0 15px rgba(255, 153, 0, 0.6);
}


/* Social & Music Galleries - Refined */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.gallery-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 10px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.gallery-item i {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.gallery-item span {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

.gallery-item:hover {
    background: rgba(0, 229, 255, 0.05);
    border-color: var(--primary-glow);
    transform: translateY(-3px);
}

.gallery-item:hover i {
    transform: scale(1.1);
    color: var(--primary);
}

.gallery-item:hover span {
    color: var(--light);
}

.gallery-item.secondary i {
    color: var(--secondary);
}

.gallery-item.secondary:hover {
    background: rgba(255, 0, 102, 0.05);
    border-color: var(--secondary-glow);
}

/* Player Refinement */
#player-container {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px;
    background: rgba(5, 7, 10, 0.8);
    backdrop-filter: blur(30px);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 12px 30px;
    z-index: 2000;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

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

.current-track {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 300px;
}

.current-track img {
    width: 50px;
    height: 50px;
    border-radius: 4px;
}

.player-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex-grow: 1;
}

.main-controls {
    display: flex;
    align-items: center;
    gap: 30px;
}

.play-pause {
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.progress-container {
    width: 100%;
    max-width: 600px;
    height: 4px;
    background: #333;
    border-radius: 2px;
    position: relative;
}

.progress-bar {
    height: 100%;
    background: var(--primary);
    border-radius: 2px;
    width: 30%;
}

/* Custom Video Carousel & Card Styles */
.carousel-section {
    position: relative;
    width: 100%;
}

.carousel-container-outer {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    margin: 20px 0;
}

.carousel-container-inner {
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
}

.carousel-container-inner::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.carousel-track {
    display: flex;
    gap: 24px;
    padding: 15px 5px 25px;
}

/* Card Layouts */
.video-card-new {
    flex: 0 0 380px;
    scroll-snap-align: start;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.video-card-new:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 12px 30px var(--primary-glow);
}

.video-thumbnail-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background-color: #000;
}

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

.video-card-new:hover .video-thumbnail {
    transform: scale(1.05);
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 15, 26, 0.9) 0%, rgba(10, 15, 26, 0.2) 60%, rgba(10, 15, 26, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
    transition: opacity 0.3s ease, background 0.3s ease;
}

.video-card-new:hover .video-play-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(10, 15, 26, 0.95) 0%, rgba(10, 15, 26, 0.1) 100%);
}

.video-play-btn {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--darker);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 0 20px var(--primary-glow);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease, box-shadow 0.3s ease;
}

.video-play-btn i {
    margin-left: 4px; /* visually center play icon */
}

.video-card-new:hover .video-play-btn {
    transform: scale(1.15);
    background: #fff;
    color: var(--darker);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
}

.video-card-info {
    padding: 18px 20px;
}

.video-card-info h4 {
    font-size: 0.95rem;
    color: var(--light);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: none; /* keep original capitalization */
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.video-card-new:hover .video-card-info h4 {
    color: var(--primary);
}

/* Shorts Layouts */
.shorts-card-new {
    flex: 0 0 240px;
    scroll-snap-align: start;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.shorts-card-new:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--secondary);
    box-shadow: 0 12px 30px var(--secondary-glow);
}

.shorts-thumbnail-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    overflow: hidden;
    background-color: #000;
}

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

.shorts-card-new:hover .shorts-thumbnail {
    transform: scale(1.05);
}

.shorts-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 15, 26, 0.9) 0%, rgba(10, 15, 26, 0.2) 60%, rgba(10, 15, 26, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
    transition: opacity 0.3s ease, background 0.3s ease;
}

.shorts-card-new:hover .shorts-play-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(10, 15, 26, 0.95) 0%, rgba(10, 15, 26, 0.1) 100%);
}

.shorts-play-btn {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 0 15px var(--secondary-glow);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease, box-shadow 0.3s ease;
}

.shorts-play-btn i {
    margin-left: 3px;
}

.shorts-card-new:hover .shorts-play-btn {
    transform: scale(1.15);
    background: #fff;
    color: var(--secondary);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.8);
}

.shorts-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    z-index: 2;
}

.shorts-card-info h4 {
    font-size: 0.85rem;
    color: var(--light);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: none;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.shorts-card-new:hover .shorts-card-info h4 {
    color: var(--secondary);
}

.shorts-section-title {
    margin: 60px 0 20px;
    font-size: 1.5rem;
    color: var(--secondary);
    letter-spacing: 2px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 900;
}

/* Carousel Navigation Buttons */
.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: rgba(10, 15, 26, 0.85);
    backdrop-filter: blur(10px);
    color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.carousel-nav-btn.prev {
    left: -24px;
    transform: translate(-10px, -50%);
}

.carousel-nav-btn.next {
    right: -24px;
    transform: translate(10px, -50%);
}

.carousel-container-outer:hover .carousel-nav-btn {
    opacity: 1;
    pointer-events: auto;
}

.carousel-container-outer:hover .carousel-nav-btn.prev {
    transform: translate(0, -50%);
}

.carousel-container-outer:hover .carousel-nav-btn.next {
    transform: translate(0, -50%);
}

.carousel-nav-btn:hover {
    background: var(--primary);
    color: var(--darker);
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
}

/* Shorts Carousel specific navigation buttons */
.shorts-carousel .carousel-nav-btn:hover {
    background: var(--secondary);
    color: var(--light);
    border-color: var(--secondary);
    box-shadow: 0 0 15px var(--secondary-glow);
}

@media (max-width: 1024px) {
    .carousel-nav-btn {
        opacity: 0.8;
        pointer-events: auto;
    }
    .carousel-nav-btn.prev {
        left: -10px;
        transform: translateY(-50%);
    }
    .carousel-nav-btn.next {
        right: -10px;
        transform: translateY(-50%);
    }
}

/* Indicator Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: width 0.3s ease, background-color 0.3s ease;
}

.carousel-dot.active {
    width: 20px;
    border-radius: 4px;
    background: var(--primary);
}

.shorts-dots .carousel-dot.active {
    background: var(--secondary);
}

/* Lightbox Modal */
.video-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(5, 7, 10, 0.95);
    backdrop-filter: blur(12px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.video-lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 2.5rem;
    color: var(--light);
    cursor: pointer;
    z-index: 3100;
    transition: transform 0.3s ease, color 0.3s ease;
    display: block;
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
}

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

.lightbox-content-wrapper {
    width: 90%;
    max-width: 900px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    width: 100%;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 229, 255, 0.1);
    background: #000;
}

.lightbox-content.aspect-16-9 {
    aspect-ratio: 16/9;
}

.lightbox-content.aspect-9-16 {
    aspect-ratio: 9/16;
    max-width: 400px;
}

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

.mobile-social-menu {
    display: none;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(3, 5, 9, 0.98);
        backdrop-filter: blur(20px);
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.6s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1000;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    nav ul li a {
        font-size: 2rem;
        font-weight: 800;
        letter-spacing: 2px;
    }

    .mobile-social-menu {
        display: flex;
        gap: 15px;
        margin-top: 40px;
        justify-content: center;
    }

    .mobile-social-menu a {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        border: 1px solid var(--border);
        background: rgba(255, 255, 255, 0.03);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--light);
        font-size: 1rem;
        transition: var(--transition);
    }

    .mobile-social-menu a:hover {
        border-color: var(--primary);
        background: rgba(0, 229, 255, 0.1);
        color: var(--primary);
        box-shadow: 0 0 15px var(--primary-glow);
    }

    .social-header {
        display: none !important;
    }

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

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

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }

    .bio-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .bio-border-top {
        top: -10px;
        left: -10px;
        width: 60px;
        height: 60px;
    }

    .bio-border-bottom {
        bottom: -10px;
        right: -10px;
        width: 60px;
        height: 60px;
    }

    .bio-img img {
        box-shadow: 10px 10px 0 var(--glass);
    }

    .video-card-new {
        flex: 0 0 290px;
    }
    .shorts-card-new {
        flex: 0 0 180px;
    }
    .carousel-track {
        gap: 16px;
    }
    .lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 2rem;
    }

    .release-card {
        flex-direction: column;
    }

    .release-cover img {
        max-width: 100%;
        height: auto;
    }

    .tracklist {
        width: 100%;
    }

    /* Mobile Music Player */
    #player-container {
        bottom: 10px;
        padding: 10px 20px;
        border-radius: 20px;
        width: 92%;
    }
    
    .player-volume, 
    .progress-container {
        display: none !important;
    }
    
    .current-track {
        width: 55%;
    }
    
    .current-track img {
        width: 35px;
        height: 35px;
    }
    
    .current-track h4 {
        font-size: 0.75rem;
    }
    
    .player-controls {
        width: 45%;
        align-items: flex-end;
    }
    
    .main-controls {
        gap: 15px;
    }
    
    .play-pause {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: center;
        width: 100%;
    }
    .hero-btns a {
        width: 100%;
        margin: 0 !important;
        text-align: center;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 110px; /* Positioned above the player (z-index 2000) */
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    z-index: 2100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: #20ba5a;
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.7);
    color: #FFF;
}

.whatsapp-float i {
    line-height: 1;
}

/* Pulsing effect */
.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25d366;
    opacity: 0.5;
    z-index: -1;
    animation: whatsapp-wave 2s infinite;
}

@keyframes whatsapp-wave {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 105px;
        right: 20px;
    }
}