:root {
    --bg-color: #000000;
    --card-bg: #1c1c1e;
    --text-primary: #f5f5f7;
    --text-secondary: #86868b;
    --accent: #0044ff;
    --royal-blue: #0000E6;
    --luminous-blue: #4169E1;
    --accent-gradient: linear-gradient(90deg, #0044ff 0%, #0000E6 100%);
    --border: rgba(255, 255, 255, 0.1);
    --radius: 20px;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); /* Apple-like bouncy/smooth */
}

/* --- RESET & BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
    padding-bottom: 80px; /* Space for bottom nav */
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* --- UTILITIES --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.glass {
    background: rgba(28, 28, 30, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    letter-spacing: -0.5px;
}

/* --- NAVIGATION --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 70px;
    display: flex;
    align-items: center;
    transition: var(--transition);
    overflow: hidden; /* Added to contain animation lines */
}

/* Header Animation Lines */
.navbar::before,
.navbar::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #0000E6, transparent);
    z-index: 1002;
}

.navbar::before {
    top: 0;
    animation: slideRightSequence 6s linear infinite;
}

.navbar::after {
    bottom: 0;
    animation: slideLeftSequence 6s linear infinite;
}

@keyframes slideRightSequence {
    0% { transform: translateX(-100%); }
    45% { transform: translateX(100%); }
    100% { transform: translateX(100%); }
}

@keyframes slideLeftSequence {
    0% { transform: translateX(100%); }
    50% { transform: translateX(100%); }
    95% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.nav-links {
    display: none;
}

.menu-toggle {
    display: block;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-primary);
}

@media (min-width: 900px) {
    .nav-links {
        display: flex;
        gap: 30px;
    }

    .nav-links a {
        font-weight: 500;
        transition: var(--transition);
        position: relative;
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: var(--royal-blue);
    }

    .menu-toggle {
        display: none;
    }
}

.interactive-blue-wrapper {
    position: relative;
    background: radial-gradient(circle at 50% 50%, #0000aa 0%, #000044 40%, #000000 100%);
    background-size: 200% 200%;
    animation: deepBluePulse 15s ease infinite alternate;
    overflow: hidden;
}

@keyframes deepBluePulse {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

/* --- MOBILE MENU (Full Screen) --- */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0; /* Full screen */
    width: 100%;
    height: 100vh;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 0;
    background: rgba(5, 5, 5, 0.6); /* Darker base */
    backdrop-filter: blur(40px); /* Heavy blur */
    -webkit-backdrop-filter: blur(40px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: all;
    transform: none;
}

.mobile-links {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.mobile-links a {
    display: block;
    font-size: 1.5rem; /* Reduced from 2rem */
    margin: 0.8rem 0; /* Reduced spacing */
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.mobile-menu-overlay.active .mobile-links a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-links a:hover {
    color: var(--royal-blue);
}


.close-menu {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-secondary);
    transition: color 0.3s;
}

.close-menu:hover {
    color: white;
}

/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    padding-top: 80px; /* Offset for fixed header */
}

/* .hero-bg { removed/replaced by carousel } */

/* NEW: Hero Gradient Animation (Overlay with movement) */
.hero-bg-anim {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Gradient with transparency to see images behind */
    background: linear-gradient(135deg, rgba(0,0,68,0.2), rgba(0,0,230,0.1), rgba(0,0,68,0.2));
    background-size: 400% 400%;
    animation: gradientMove 6s ease infinite; /* Fast & Seamless */
    z-index: 2; /* On top of images */
    pointer-events: none;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero .subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    display: inline-block;
}

.btn-primary {
    background: var(--text-primary);
    color: #000;
}

.btn-primary:hover {
    transform: scale(1.05);
    background: #fff;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* --- BIO SECTION (CARDS) --- */
.bio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.card {
    background: var(--card-bg);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.card-image {
    height: 400px;
    background-size: cover;
    background-position: center;
}

.card-content {
    padding: 40px;
}

.card-content h3 {
    font-size: 2rem;
    margin-bottom: 5px;
}

.card-content .role {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.card-content .description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- PROPOSAL (BENTO GRID) --- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 20px;
}

.bento-item {
    background-color: var(--card-bg);
    border-radius: var(--radius);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.bento-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.bento-item:hover {
    transform: scale(1.02);
}

.bento-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 30px;
    z-index: 2;
}

.bento-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.bento-content p {
    color: #ccc;
    font-size: 0.9rem;
}

.icon-large {
    font-size: 3rem;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.8);
}

/* Grid Areas for Bento */
.bento-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-item.medium {
    grid-column: span 2;
}

.bento-item.small {
    grid-column: span 1;
}

/* --- MUSIC PLAYER --- */
.music-player-container {
    border-radius: var(--radius);
    overflow: hidden;
    background: #1c1c1e;
    border: 1px solid var(--border);
}

.player-header {
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
    background: rgba(255,255,255,0.03);
}

.current-track-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

#album-art {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.track-text h3 { font-size: 1.2rem; }
.track-text p { color: var(--accent); font-size: 0.9rem; }

.control-btn {
    background: var(--text-primary);
    color: #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.control-btn:hover { transform: scale(1.1); }

.track-list {
    padding: 20px;
}

.track-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.track-item:hover {
    background: rgba(255,255,255,0.05);
}

.track-item.active {
    background: rgba(41, 151, 255, 0.2);
}

.track-item.active .track-number { color: var(--accent); }
.track-item.active .track-name { color: var(--accent); }

.track-number {
    width: 40px;
    color: var(--text-secondary);
    font-weight: 600;
}

.track-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.track-name { font-weight: 500; font-size: 1rem; }
.track-artist { font-size: 0.8rem; color: var(--text-secondary); }

.track-duration {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* --- PROFESSIONAL ZONE --- */
.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.download-card {
    background: var(--card-bg);
    padding: 40px 20px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.download-card:hover {
    transform: translateY(-5px);
    background: #252527;
}

.icon-box {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.download-card h3 { font-size: 1.2rem; margin-bottom: 5px; }
.download-card p { font-size: 0.9rem; color: var(--text-secondary); }

/* --- FOOTER --- */
footer {
    border-top: 1px solid var(--border);
    padding: 60px 0;
    background: #050505;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

/* .footer-brand h2 removed - replaced by logo */
.footer-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 15px;
    display: block;
}
.footer-brand p { color: var(--text-secondary); font-size: 0.9rem; }

.footer-contact h3 { font-size: 1.1rem; margin-bottom: 15px; color: var(--text-primary); }
.footer-contact p, .footer-contact a { display: block; color: var(--text-secondary); margin-bottom: 5px; font-size: 0.9rem; }
.footer-contact a:hover { color: var(--accent); }

.footer-social { display: flex; gap: 20px; }
.footer-social a { font-size: 1.5rem; color: var(--text-secondary); transition: var(--transition); }
.footer-social a:hover { color: var(--text-primary); transform: translateY(-3px); }

/* --- ANIMATIONS --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .bento-item.large, .bento-item.medium, .bento-item.small {
        grid-column: span 1;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 3rem; }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 15px auto;
    }
}

/* --- ADDED STYLES FOR REDESIGN --- */

/* --- HEADER LOGO --- */
.logo img {
    height: 35px; /* Reduced for elegance */
    width: auto;
}

/* --- RIDER PAGE STYLES --- */
.rider-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.rider-tab-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    font-weight: 500;
}

.rider-tab-btn:hover,
.rider-tab-btn.active {
    background: var(--text-primary);
    color: #000;
    border-color: var(--text-primary);
}

.rider-panel {
    display: none;
    animation: fadeIn 0.5s ease;
}

.rider-panel.active {
    display: block;
}

.rider-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.spec-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 30px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.spec-card:hover {
    transform: translateY(-5px);
    border-color: var(--royal-blue);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.spec-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.spec-icon {
    font-size: 2rem;
    color: var(--royal-blue);
}

.spec-card h3 {
    font-size: 1.3rem;
    margin: 0;
}

.spec-list {
    list-style: none;
    padding: 0;
}

.spec-list li {
    margin-bottom: 10px;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
}

.spec-list li::before {
    content: '•';
    color: var(--royal-blue);
    font-weight: bold;
}

.download-spec-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: rgba(65, 105, 225, 0.2);
    color: var(--royal-blue);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.download-spec-btn:hover {
    background: var(--royal-blue);
    color: #fff;
}

/* --- BIO TABS --- */
.bio-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.tab-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 10px 25px;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--text-primary);
    color: #000;
    border-color: var(--text-primary);
}

.bio-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.bio-content.active {
    display: block;
}

.bio-detail {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    text-align: center;
}

@media(min-width: 768px) {
    .bio-detail {
        flex-direction: row;
        text-align: left;
    }
}

.bio-cover {
    width: 100%;
    max-width: 400px;
    border-radius: var(--radius);
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.bio-text {
    flex: 1;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- NEW SECTIONS STYLING --- */

/* SPOTIFY CLONE SECTION */
.spotify-section {
    background-color: #121212; /* Official Spotify Dark */
    padding: 40px 0;
    color: #fff;
    margin-top: 0; /* Glue to header */
}

.spotify-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: left; /* Spotify style */
    color: #fff;
}

.spotify-track-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.spotify-track-row {
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.2s;
    cursor: pointer;
}

.spotify-track-row:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.spotify-track-row:hover .track-index {
    color: #fff;
}

.spotify-track-row:hover .play-overlay {
    opacity: 1;
}

.spotify-track-row:hover .track-title {
    color: #1DB954; /* Spotify Green */
}

.track-index {
    width: 30px;
    color: #b3b3b3;
    font-size: 1rem;
    text-align: center;
}

.track-cover-container {
    position: relative;
    width: 50px;
    height: 50px;
    margin: 0 15px;
}

.track-cover {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    opacity: 0;
    transition: opacity 0.2s;
    font-size: 1.2rem;
}

.track-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.track-title {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 2px;
}

.track-plays {
    font-size: 0.8rem;
    color: #b3b3b3;
}

.track-duration {
    color: #b3b3b3;
    font-size: 0.9rem;
    margin-left: 10px;
}

/* 3D CAROUSEL SECTION */
.carousel-3d-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.carousel-3d {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
}

.carousel-card {
    position: absolute;
    width: 100%;
    height: auto;
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.5s ease, opacity 0.5s ease, z-index 0.5s ease;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    cursor: pointer;
}

.card-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
}

.card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.card-content-main {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    padding: 30px;
    z-index: 2;
    text-align: center;
}

.card-content-main h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.card-content-main .meta {
    color: #fff);
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.card-content-mini {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    padding: 20px;
    text-align: center;
    opacity: 0.7;
}

.card-content-mini h3 {
    font-size: 1.2rem;
    margin: 0;
}

/* Carousel States */
.card-left {
    transform: translateX(-120%) scale(0.8) rotateY(15deg);
    z-index: 1;
    opacity: 0.6;
    filter: blur(2px);
}

.card-center {
    transform: translateX(0) scale(1.1);
    z-index: 10;
    opacity: 1;
}

.card-right {
    transform: translateX(120%) scale(0.8) rotateY(-15deg);
    z-index: 1;
    opacity: 0.6;
    filter: blur(2px);
}

.carousel-controls {
    position: absolute;
    bottom: -50px;
    width: 200px;
    display: flex;
    justify-content: space-between;
}

.control-btn-arrow {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.control-btn-arrow:hover {
    background: var(--royal-blue);
    border-color: var(--royal-blue);
}

@media (max-width: 768px) {
    .carousel-3d-wrapper {
        height: 350px;
    }
    .carousel-3d {
        max-width: 280px;
    }
    .card-left {
        transform: translateX(-100%) scale(0.7) rotateY(15deg);
    }
    .card-right {
        transform: translateX(100%) scale(0.7) rotateY(-15deg);
    }
}

/* EXPERIENCIA VALLENATA SECTION */
.accordion-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: #000;
}

.accordion-bellows-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: repeating-linear-gradient(
        45deg,
        #111,
        #111 20px,
        #080808 20px,
        #080808 40px
    );
    opacity: 0.5;
    transform-origin: center;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 0;
}

/* Expansion state - will be toggled by JS scroll observer */
.accordion-section.expanded .accordion-bellows-bg {
    transform: scaleX(1.1);
    background-size: 120% 120%; /* Simulate opening */
}

.relative-z {
    position: relative;
    z-index: 2;
}

.parranda-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.parranda-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.parranda-card:hover {
    transform: translateY(-10px);
    background: rgba(65, 105, 225, 0.1); /* Blue tint */
    border-color: var(--royal-blue);
}

.card-icon {
    font-size: 3rem;
    color: var(--royal-blue);
    margin-bottom: 20px;
}

.pulse {
    animation: pulse-icon 2s infinite;
}

@keyframes pulse-icon {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.parranda-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.parranda-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.btn-text {
    color: #fff;
    font-weight: 600;
    transition: var(--transition);
}

.btn-text:hover {
    color: var(--royal-blue);
}

/* Song Request Feature */
.request-feature {
    background: var(--card-bg);
    border-radius: 30px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    border: 1px solid var(--border);
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .request-feature {
        flex-direction: row;
        padding: 40px;
    }
}

.vinyl-visual {
    width: 150px;
    height: 150px;
    background: #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 2px solid rgba(255,255,255,0.1);
    animation: rotate-vinyl 10s linear infinite;
    flex-shrink: 0;
}

.vinyl-grooves {
    position: absolute;
    top: 10px; left: 10px; right: 10px; bottom: 10px;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 50%;
}

.vinyl-grooves::before {
    content: '';
    position: absolute;
    top: 10px; left: 10px; right: 10px; bottom: 10px;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 50%;
}

.vinyl-label-center {
    width: 60px;
    height: 60px;
    background: var(--royal-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
    z-index: 2;
}

.request-content {
    flex: 1;
    text-align: center;
}

@media (min-width: 768px) {
    .request-content {
        text-align: left;
    }
}

.request-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.request-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.request-input-group {
    display: flex;
    gap: 10px;
}

.glass-input {
    width: 100%; /* Changed from flex: 1 to ensure full width in vertical forms */
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px 20px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.glass-input:focus {
    outline: none;
    border-color: var(--royal-blue);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(0, 68, 255, 0.15);
}

.glass-input option {
    background: #1c1c1e;
    color: #fff;
}

.contact-form label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
    margin-left: 5px;
}

.contact-form button[type="submit"] {
    width: 100%;
    padding: 18px;
    font-size: 1rem;
    letter-spacing: 0.5px;
    margin-top: 10px;
    border-radius: 12px;
}

/* Albums */
#albumes {
    position: relative;
}

#albumes::before,
#albumes::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #0000E6, transparent);
    z-index: 10;
    pointer-events: none;
}

#albumes::before {
    top: 0;
    animation: slideRightSequence 6s linear infinite;
}

#albumes::after {
    bottom: 0;
    animation: slideLeftSequence 6s linear infinite;
}

.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.album-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 20px;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.album-card:hover {
    transform: translateY(-10px);
    background: #252527;
}

.album-cover {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.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);
}

.vinyl-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    transition: var(--transition);
}

.vinyl-overlay i {
    font-size: 3rem;
    color: #fff;
    animation: rotate-vinyl 5s linear infinite;
}

.album-card:hover .vinyl-overlay {
    opacity: 1;
}

.album-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.album-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

/* Videos */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.video-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    z-index: 1; /* Above bg */
}

/* Added background animation for Videos page */
#videos {
    background: radial-gradient(circle at center, #1c1c1e 0%, #000 100%);
    position: relative;
    overflow: hidden;
}

#videos::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 0, 230, 0.1) 0%, transparent 60%);
    animation: rotateBg 20s linear infinite;
    z-index: 0;
}

@keyframes rotateBg {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.video-item iframe {
    width: 100%;
    aspect-ratio: 16/9; /* Standard video ratio, responsive */
}

.video-item h3 {
    padding: 10px;
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.3;
}

.video-placeholder {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.play-icon {
    font-size: 4rem;
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
}

.video-item:hover .video-placeholder {
    transform: scale(1.05);
}

.video-item:hover .play-icon {
    color: var(--royal-blue);
    transform: scale(1.1);
}

/* Tour Dates */
.tour-dates {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tour-item {
    display: flex;
    align-items: center;
    background: var(--card-bg);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.tour-item:hover {
    background: #252527;
    border-color: var(--royal-blue);
}

.tour-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #000;
    padding: 10px;
    border-radius: 10px;
    width: 70px;
    margin-right: 20px;
}

.tour-date .day {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--royal-blue);
}

.tour-date .month {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.tour-info {
    flex: 1;
}

.tour-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.tour-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* --- BOTTOM NAVIGATION --- */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1001;
    background: rgba(28, 28, 30, 0.85); /* Darker glass */
    padding-bottom: env(safe-area-inset-bottom);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary); /* Default icon color (white/gray) */
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    flex: 1;
    transition: all 0.3s ease;
}

.nav-item i {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #fff; /* Icons white */
    transition: color 0.3s ease;
}

.nav-item span {
    opacity: 0.8;
}

/* Active State */
.nav-item.nav-active i,
.nav-item.nav-active span {
    color: var(--royal-blue); /* Royal Blue */
    opacity: 1;
}

.nav-item:active {
    transform: scale(0.95);
}

/* Center Item (Vinyl) */
.center-item {
    position: relative;
    top: -20px; /* Float above */
}

.vinyl-disc {
    width: 60px;
    height: 60px;
    background: #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255,255,255,0.2);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    margin-bottom: 5px;
    transition: all 0.3s ease;
    animation: rotate-vinyl 8s linear infinite;
}

.vinyl-disc i {
    font-size: 2rem;
    margin: 0;
    color: #fff;
}

/* Active Vinyl */
.nav-item.nav-active .vinyl-disc {
    border-color: var(--royal-blue);
    box-shadow: 0 0 20px rgba(65, 105, 225, 0.5); /* Glow */
}

.nav-item.nav-active .vinyl-disc i {
    color: var(--royal-blue);
}

@keyframes rotate-vinyl {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .bottom-nav {
        height: 70px;
    }

    .center-item {
        top: -15px;
    }

    .vinyl-disc {
        width: 50px;
        height: 50px;
    }

    .vinyl-disc i {
        font-size: 1.8rem;
    }
}


/* --- MARQUEE STYLES --- */
.marquee-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: var(--accent-gradient);
    z-index: 3000;
    display: flex;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    backdrop-filter: blur(5px);
}

.marquee-content {
    padding-left: 0;
    animation: marquee 40s linear infinite;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-content:hover {
    animation-play-state: paused;
}

.marquee-content .highlight {
    font-weight: 700;
    margin-right: 5px;
    opacity: 0.9;
}

.marquee-content .separator {
    margin: 0 20px;
    opacity: 0.6;
}

.marquee-link {
    background: rgba(255,255,255,0.2);
    padding: 4px 12px;
    border-radius: 20px;
    margin-left: 10px;
    font-size: 0.8rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.marquee-link:hover {
    background: #fff;
    color: var(--royal-blue);
}

/* Adjust layout when marquee is present */
body.has-marquee {
    padding-top: 40px; /* Push body down */
}

body.has-marquee .navbar {
    top: 40px; /* Push navbar down */
}

body.has-marquee .mobile-menu-overlay {
    top: 40px;
    height: calc(100vh - 40px);
}

/* --- CALENDAR & AGENDA STYLES --- */
.page-hero {
    height: 60vh;
    min-height: 400px;
}

.calendar-wrapper {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 30px;
    border: 1px solid var(--border);
    max-width: 900px;
    margin: 0 auto;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.month-year {
    font-size: 1.5rem;
    font-weight: 700;
}

.calendar-nav-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-nav-btn:hover {
    background: var(--royal-blue);
    border-color: var(--royal-blue);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.weekday {
    text-align: center;
    font-weight: 600;
    color: var(--text-secondary);
    padding-bottom: 10px;
}

.day-cell {
    aspect-ratio: 1/1;
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
    transition: var(--transition);
    position: relative;
    font-size: 1rem;
}

.day-cell:hover:not(.empty) {
    background: rgba(255,255,255,0.1);
}

.day-cell.event-day {
    background: rgba(65, 105, 225, 0.2);
    border: 1px solid var(--royal-blue);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    /* Added Pulse Animation */
    animation: pulse-border 2s infinite;
    position: relative;
    z-index: 1;
}

@keyframes pulse-border {
    0% { box-shadow: 0 0 0 0 rgba(0, 0, 230, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(0, 0, 230, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 0, 230, 0); }
}

.day-cell.event-day::after {
    content: '';
    position: absolute;
    bottom: 5px;
    width: 6px;
    height: 6px;
    background: var(--royal-blue);
    border-radius: 50%;
}

.day-cell.today {
    border: 1px solid var(--text-secondary);
}

/* Modal Styles */
.event-details-modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6); /* Lighter bg to show blur better */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    backdrop-filter: blur(20px); /* Deep blur */
    -webkit-backdrop-filter: blur(20px);
}

.event-details-modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: rgba(28, 28, 30, 0.85); /* Glass feel */
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    padding: 50px 40px;
    border-radius: 30px; /* Smooth corners */
    max-width: 450px;
    width: 90%;
    position: relative;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 40px 80px -15px rgba(0,0,0,0.6);
    transform: scale(0.95);
    transition: var(--transition);
}

.event-details-modal.active .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 20px; right: 20px;
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    color: var(--text-primary);
    transition: var(--transition);
}

.close-modal:hover {
    color: #fff;
    transform: rotate(90deg);
}

.modal-date {
    color: var(--royal-blue);
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-title {
    font-size: 2rem;
    margin-bottom: 20px;
}

.modal-info {
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

@media (max-width: 600px) {
    .marquee-content {
        font-size: 0.8rem;
    }
    .calendar-wrapper {
        padding: 15px;
    }
    .day-cell {
        font-size: 0.8rem;
    }
    .modal-title {
        font-size: 1.5rem;
    }
}

/* --- NEXT EVENT HIGHLIGHT (Agenda Page - Redesign) --- */
#agenda-next-event {
    position: relative;
    width: 100%;
    margin-top: 0;
    padding: 120px 20px 50px; /* Top padding clears fixed header */
    background: #000;
    overflow: hidden;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Liquid Blue Background Animation */
#agenda-next-event::before,
#agenda-next-event::after {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--royal-blue) 0%, transparent 70%);
    filter: blur(100px);
    opacity: 0.5;
    animation: liquidMove 15s infinite alternate ease-in-out;
    z-index: 0;
    border-radius: 50%;
}

#agenda-next-event::before {
    top: -400px;
    left: -200px;
}

#agenda-next-event::after {
    bottom: -400px;
    right: -200px;
    background: radial-gradient(circle, #0044ff 0%, transparent 70%);
    animation-delay: -7s;
}

@keyframes liquidMove {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(100px, 50px) scale(1.1); }
    100% { transform: translate(-50px, -30px) scale(0.9); }
}

/* Agenda 3D Object */
.orb-3d {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: conic-gradient(from 0deg, #0000E6, #0044ff, #0000E6);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    animation: spin3d 10s linear infinite;
    z-index: 1; /* Behind card (card is z-index 2) */
}

@keyframes spin3d {
    0% { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
    50% { transform: translate(-50%, -50%) rotate(180deg) scale(1.1); }
    100% { transform: translate(-50%, -50%) rotate(360deg) scale(1); }
}

/* Horizontal Card Style */
.next-event-card {
    position: relative;
    z-index: 2;
    background: rgba(28, 28, 30, 0.4);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px 30px;
    width: 100%;
    max-width: 900px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.next-event-card:hover {
    border-color: rgba(0, 0, 230, 0.4);
    background: rgba(28, 28, 30, 0.6);
}

.next-event-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.next-event-badge {
    background: var(--royal-blue);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    box-shadow: 0 0 15px rgba(0, 0, 230, 0.4);
}

.next-event-info {
    display: flex;
    flex-direction: column;
}

.next-event-info h2 {
    font-size: 1.5rem;
    margin: 0 0 5px 0;
    line-height: 1.1;
    background: linear-gradient(180deg, #fff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.next-event-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.next-event-info p i {
    color: var(--royal-blue);
}

.next-event-right {
    margin-left: 20px;
}

.btn-ticket {
    background: #fff;
    color: #000;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-block;
    text-decoration: none;
    white-space: nowrap;
}

.btn-ticket:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
    background: var(--royal-blue);
    color: #fff;
}

@media (max-width: 768px) {
    .next-event-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 25px;
    }

    .next-event-left {
        flex-direction: column;
        gap: 15px;
    }

    .next-event-right {
        margin-left: 0;
    }
}

/* --- CONTACT PAGE STYLES --- */

.small-hero {
    height: 50vh;
    min-height: 350px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--royal-blue);
    box-shadow: 0 20px 40px rgba(0, 0, 230, 0.1);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: rgba(65, 105, 225, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--royal-blue);
    font-size: 2rem;
    transition: var(--transition);
}

.contact-card:hover .icon-circle {
    background: var(--royal-blue);
    color: white;
    transform: scale(1.1);
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.contact-role {
    color: var(--royal-blue);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-details p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-details a {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 5px;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--text-primary);
    text-decoration: underline;
}

/* Social Links Large */
.social-links-large {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-radius: 15px;
    width: 120px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.social-item i {
    font-size: 2.5rem;
    transition: var(--transition);
}

.social-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

.social-item:hover {
    transform: translateY(-5px);
    background: #fff;
}

.social-item.instagram:hover { color: #E1306C; }
.social-item.tiktok:hover { color: #000; }
.social-item.youtube:hover { color: #FF0000; }
.social-item.spotify:hover { color: #1DB954; }

/* Contact Form */
.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    padding: 50px;
    border-radius: 30px;
    border: 1px solid var(--border);
}

.form-wrapper h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-weight: 500;
    margin-left: 10px;
    font-size: 0.9rem;
}

.form-group textarea {
    resize: vertical;
}

@media (max-width: 768px) {
    .form-wrapper {
        padding: 30px 20px;
    }
}

/* --- VIDEO DESTACADO --- */
.video-responsive-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-responsive-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* --- TRAYECTORIA / GALLERY SECTION --- */
.trayectoria-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.trayectoria-item {
    display: flex;
    align-items: center;
    gap: 50px;
    background: rgba(255, 255, 255, 0.03); /* Subtle background */
    padding: 30px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.trayectoria-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.trayectoria-item.reverse {
    flex-direction: row-reverse;
}

.trayectoria-content {
    flex: 1;
}

.trayectoria-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--royal-blue);
    position: relative;
    display: inline-block;
}

.trayectoria-content h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--royal-blue);
}

.trayectoria-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.trayectoria-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 350px; /* Fixed height for consistency */
}

.trayectoria-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.trayectoria-item:hover .trayectoria-image img {
    transform: scale(1.05);
}

/* Mobile Responsiveness for Trayectoria */
@media (max-width: 900px) {
    .trayectoria-item,
    .trayectoria-item.reverse {
        flex-direction: column-reverse; /* Image on top */
        gap: 30px;
        text-align: center;
        padding: 20px;
    }

    .trayectoria-image {
        width: 100%;
        height: 250px;
    }

    .trayectoria-content h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* --- BIO LAYOUT (NEW) --- */
.bio-layout {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

@media (min-width: 900px) {
    .bio-layout {
        flex-direction: row;
        align-items: flex-start;
    }
}

.bio-card {
    background: rgba(255, 255, 255, 0.05); /* Lighter than default card-bg */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.bio-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--royal-blue);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.profile-card {
    flex: 0 0 300px; /* Fixed width for profile */
    text-align: center;
}

.profile-img-wrapper {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.profile-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-card h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.bio-info-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.bio-info-grid .bio-card h4 {
    color: var(--royal-blue);
    margin-bottom: 15px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bio-info-grid .bio-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* --- CONTACT FORM REDESIGN OVERRIDES (Extra Specificity) --- */
.form-wrapper {
    background: rgba(28, 28, 30, 0.6); /* Ensure good contrast */
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    padding: 50px;
}

.form-group {
    margin-bottom: 25px; /* More spacing */
}

/* --- NEW BUTTONS FOR DISCOGRAPHY --- */
.album-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.btn-spotify {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 8px 16px;
    font-size: 0.9rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.btn-spotify:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
    color: #fff;
}

.btn-youtube {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 8px 16px;
    font-size: 0.9rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.btn-youtube:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
    color: #fff;
}

/* --- ANIMATED DRAW BUTTON --- */
.btn-draw-border {
    position: relative;
    padding: 12px 30px;
    color: var(--text-primary);
    font-weight: 500;
    background: transparent;
    display: inline-block;
    text-decoration: none;
    overflow: visible;
}

.btn-border-svg {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.btn-border-svg rect {
    fill: none;
    stroke: var(--royal-blue);
    stroke-width: 2;
    stroke-dasharray: 400; /* Fallback */
    stroke-dashoffset: 400; /* Fallback */
    animation: drawLine 2s linear infinite;
}

/* Use pathLength support to make it generic */
@keyframes drawLine {
    from { stroke-dashoffset: 100; }
    to { stroke-dashoffset: 0; }
}

.btn-draw-border:hover {
    background: rgba(65, 105, 225, 0.1);
    color: #fff;
    text-shadow: 0 0 10px var(--royal-blue);
}

/* --- SOCIAL MEDIA 3D SECTION --- */
.social-3d-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    perspective: 1000px;
    margin-top: 40px;
}

.social-card-3d {
    background-color: transparent;
    width: 100%;
    height: 300px;
    perspective: 1000px;
}

.social-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.social-card-3d:hover .social-card-inner {
    transform: rotateY(180deg);
}

/* On mobile, ensure hover states work or consider adding a class via JS for tap */
.social-card-3d:active .social-card-inner {
     /* transform: rotateY(180deg);  Optional: instant flip on touch? No, transition handles it */
}

.social-card-front, .social-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: white;
}

.social-card-front {
    /* Backgrounds handled by utility classes */
    background: #1c1c1e; /* Fallback */
}

.social-card-back {
    background: #1c1c1e; /* Fallback */
    transform: rotateY(180deg);
}

/* Platform Gradients */
.facebook-bg {
    background: linear-gradient(135deg, #1877F2, #0044ff);
}

.instagram-bg {
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737);
}

.youtube-bg {
    background: linear-gradient(135deg, #FF0000, #cc0000);
}

.social-icon-3d {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.social-card-front h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.social-card-front p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.btn-white {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background: white;
    color: #000;
    transform: scale(1.1);
}

/* Spotify Special Card */
.social-card-spotify {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 20px auto 0;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    background: #000;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .social-3d-grid {
        grid-template-columns: 1fr; /* Stack vertically */
        padding: 0 20px;
    }

    .social-card-3d {
        height: 250px; /* Slightly shorter on mobile */
    }
}

/* --- SOCIAL WALLET STACK (New) --- */
.social-wallet-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 400px;
    margin: 0 auto;
    perspective: 1000px;
    transform-style: preserve-3d; /* Enable true 3D stacking */
}

.social-wallet-card {
    position: absolute;
    width: 100%;
    height: 220px;
    border-radius: 20px;
    /* Glassmorphism & Moving Gradient - Deep Blue */
    background: linear-gradient(135deg, #000044, #0000cc, #000044);
    background-size: 200% 200%;
    animation: gradientMove 8s ease infinite;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);

    box-shadow: 0 -5px 20px rgba(0,0,0,0.3); /* Top shadow for stack effect */
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    overflow: visible; /* Changed from hidden to show glow outside */
    transform-origin: center top;
    left: 0;
    transform-style: preserve-3d;
}

/* Interaction Glow (Behind) */
.social-wallet-card::before {
    content: '';
    position: absolute;
    top: -5px; left: -5px; right: -5px; bottom: -5px; /* Increased size */
    background: linear-gradient(90deg, #0044ff 0%, #0000E6 100%);
    background-size: 200% 200%;
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    filter: blur(15px); /* Soft glow */
    animation: gradientMove 3s linear infinite;
    transform: translateZ(-10px); /* Push behind significantly */
}

.social-wallet-card:hover::before,
.social-wallet-card:active::before,
.social-wallet-card.active::before {
    opacity: 0.8;
}

.social-wallet-card h3,
.social-wallet-card p {
    color: #fff !important;
}

/* Header Strip (Always Visible) */
.social-wallet-header {
    height: 60px;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.social-wallet-icon {
    font-size: 1.8rem;
    color: #fff;
    margin-right: 15px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.social-wallet-title {
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Content Body (Hidden initially or covered) */
.social-wallet-body {
    padding: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: calc(100% - 60px);
}

.social-wallet-card.active .social-wallet-body {
    opacity: 1;
    transform: translateY(0);
}

/* Action Button */
.btn-wallet-action {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    padding: 10px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 10px;
}

.btn-wallet-action:hover {
    background: #fff;
    color: #000;
    transform: scale(1.05);
}

/* Stacking Logic with 3D Depth */
.social-wallet-card:nth-child(1) { top: 0px; z-index: 1; transform: translateZ(0px); }
.social-wallet-card:nth-child(2) { top: 50px; z-index: 2; transform: translateZ(20px); }
.social-wallet-card:nth-child(3) { top: 100px; z-index: 3; transform: translateZ(40px); }
.social-wallet-card:nth-child(4) { top: 150px; z-index: 4; transform: translateZ(60px); }
.social-wallet-card:nth-child(5) { top: 200px; z-index: 5; transform: translateZ(80px); }

/* Active State */
.social-wallet-card.active {
    top: 20px !important;
    z-index: 100 !important;
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    height: 300px;
}

/* Interaction States for Siblings */
.social-wallet-card.move-out-up {
    transform: translateY(-200%);
    opacity: 0;
}

.social-wallet-card.move-out-down {
    transform: translateY(200%);
    opacity: 0;
}

/* Specific Card Styles (Gradients) - Overridden for Glassmorphism */
.wallet-fb, .wallet-ig-joint, .wallet-ig-julian, .wallet-yt, .wallet-sp {
    background: transparent; /* Use main card background */
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* --- NEW BIO BUTTON (Blue Line Loop) --- */
.btn-glass-loop {
    position: relative;
    padding: 15px 40px;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.05); /* Glass Base */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 30px; /* Visual radius (SVG handles actual border) */
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: visible; /* Allow SVG to show */
    transition: all 0.3s ease;
}

.btn-glass-loop:hover {
    background: rgba(0, 0, 230, 0.1); /* Slight blue tint on hover */
    text-shadow: 0 0 10px rgba(0, 0, 230, 0.8);
    transform: translateY(-2px);
}

.btn-glass-loop .btn-border-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: visible;
}

.btn-glass-loop .btn-border-svg rect {
    fill: none;
    stroke: var(--royal-blue);
    stroke-width: 3px;
    stroke-linecap: round;
    stroke-dasharray: 50 600; /* Fallback: Short dash, long gap */
    stroke-dashoffset: 600;
    animation: loopLine 1.5s linear infinite;
    rx: 30; /* Radius matching border-radius */
    ry: 30;
    vector-effect: non-scaling-stroke; /* Keep stroke width constant */
}

/* Use pathLength for consistent animation speed regardless of size */
.btn-glass-loop .btn-border-svg rect[pathLength] {
    stroke-dasharray: 40 100; /* Longer comet effect: 40% dash, 60% gap */
    stroke-dashoffset: 100;
    animation: loopLinePath 2s linear infinite;
}

@keyframes loopLine {
    to { stroke-dashoffset: 0; }
}

@keyframes loopLinePath {
    from { stroke-dashoffset: 100; }
    to { stroke-dashoffset: 0; }
}
