/* Reset y Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

:root {
    --primary-color: #ffffff;
    --secondary-color: #e0e0e0;
    --dark-bg: #050505;
    /* Darker for better contrast */
    --darker-bg: #000000;
    --text-light: #f0f0f0;
    /* Slightly softer white */
    --text-gray: #a0a0a0;
    --accent: #f5f5f5;
    --card-bg: rgba(20, 20, 20, 0.6);
    /* Glassmorphism base */
    --border-color: rgba(255, 255, 255, 0.1);
    --glass-border: 1px solid rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --glass-backdrop: blur(12px);
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #000000;
    /* No background image on body, only black */
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
    touch-action: manipulation;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    letter-spacing: 0.02em;
    padding-top: 0;
}

/* Ajuste para el anclaje del menú (Scroll Margin) */
section {
    scroll-margin-top: 50px;
    /* 50px para separación óptima del navbar */
}

.hero {
    scroll-margin-top: 0;
    /* El hero no necesita margen */
}

/* Capa 1: Fondo Negro Fijo del Navbar */


/* Capa 2: Contenido que hace scroll (Humo) */
.page-content {
    position: relative;
    z-index: 2;
    /* Cubre el fondo negro (.navbar-bg) */
    margin-top: 60px;
    /* Empieza debajo del navbar */
    background-color: #000000;
    background-image: url('images/background-texture.png');
    background-size: cover;
    background-position: center top;
    /* Empieza justo arriba del contenedor (debajo del banner) */
    background-repeat: no-repeat;
    background-attachment: scroll;
    /* Se mueve con el contenido */
    background-blend-mode: lighten;
    box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.8);
    /* Sombra para suavizar el borde */
    min-height: calc(100vh - 60px);
    /* Asegura que cubra al menos la pantalla restante */
}

/* ... (rest of CSS) ... */

/* Capa 3: Navegación (Links y Logo) */
.navbar {
    position: fixed;
    /* Anclado arriba */
    top: 0;
    width: 100%;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.7);
    /* Semi-transparent black */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    /* Siempre encima de todo */
    padding: 1rem 0;
    transition: background-color 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}



.nav-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

/* ... (logo styles remain similar but can be tweaked if needed) ... */
.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: block;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
}

.logo-img:hover {
    opacity: 1;
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
}

/* ... (nav-social styles) ... */
.nav-social {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-left: auto;
    padding-right: 40px;
}

.social-icon {
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

.social-icon:hover {
    color: var(--text-light);
    transform: translateY(-2px);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

/* ... (nav-menu styles) ... */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    padding-left: 20px;
    margin-left: 0;
}

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 300;
    font-size: 1.1rem;
    /* Slightly smaller for elegance */
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--text-light);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.nav-link:hover {
    color: var(--text-light);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

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

/* ... (hamburger styles) ... */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
    padding: 10px;
}

.hamburger span {
    width: 30px;
    height: 2px;
    background-color: var(--text-light);
    transition: all 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-color: transparent;
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: contrast(1.1) brightness(0.8);
    /* Enhance image mood */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
}

.hero-logo-container {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.hero-logo {
    max-width: 200px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.8));
    animation: fadeInUp 1s ease, logoFloat 3s ease-in-out infinite;
    animation-delay: 0s, 1s;
}

/* Logo después del banner (para móviles) */
.hero-logo-after {
    display: none;
    background-color: transparent;
    padding: 3rem 0;
    text-align: center;
}

.hero-logo-after-img {
    max-width: 200px;
    width: 80%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.8));
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

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

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: var(--text-light);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    line-height: 1.1;
}

.title-line {
    display: block;
    animation: slideInLeft 0.8s ease forwards;
    opacity: 0;
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
}

.title-line:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

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

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

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: var(--text-light);
    text-decoration: none;
    border-radius: 2px;
    /* Sharper edges */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

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

.btn-primary:hover {
    color: var(--darker-bg);
    border-color: var(--text-light);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid #ffffff;
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* Section Titles */
.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #ffffff;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
}

/* About Section */
.about {
    padding: 50px 0 80px 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--dark-bg);
}

.about-content {
    display: grid;
    gap: 4rem;
}

.about-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.band-members h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-light);
}

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

.member-card {
    text-align: center;
    background-color: var(--card-bg);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: var(--glass-border);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.member-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: var(--glass-shadow);
    background-color: rgba(30, 30, 30, 0.7);
}

.member-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    border: 3px solid #ffffff;
}

.member-card h4 {
    font-family: 'Orbitron', sans-serif;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.member-card p {
    color: var(--text-gray);
}

/* Music Section */
.music {
    padding: 50px 0 80px 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--darker-bg);
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.music-card {
    background-color: var(--card-bg);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    border-radius: 16px;
    overflow: hidden;
    border: var(--glass-border);
    transition: all 0.4s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.music-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: var(--glass-shadow);
}

.music-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--dark-bg), var(--darker-bg));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(224, 224, 224, 0.8));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button svg {
    width: 40px;
    height: 40px;
    margin-left: 5px;
    color: var(--darker-bg);
}

.play-button:hover {
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    transform: scale(1.1);
}

.music-card h3 {
    padding: 1.5rem;
    font-family: 'Orbitron', sans-serif;
    color: var(--text-light);
}

.music-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
}

/* Scroll offset for fixed navbar */
section {
    scroll-margin-top: 100px;
}

.video-section {
    margin-top: 4rem;
}

.video-section h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
}

.video-placeholder {
    background-color: var(--card-bg);
    border: 2px dashed var(--border-color);
    border-radius: 10px;
    padding: 4rem 2rem;
    text-align: center;
    color: var(--text-gray);
}

.video-note {
    font-size: 0.9rem;
    margin-top: 1rem;
    color: #ffffff;
}

/* Featured Album Section */
.featured-album {
    padding: 30px 0 80px 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--dark-bg);
}

.album-grid {
    display: grid;
    gap: 2rem;
    max-width: 400px;
    margin: 0 auto;
}

.album-card {
    background-color: var(--card-bg);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    border-radius: 16px;
    overflow: hidden;
    border: var(--glass-border);
    transition: all 0.4s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.album-card:hover {
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: var(--glass-shadow);
}

.album-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--dark-bg), var(--darker-bg));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-overlay {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(224, 224, 224, 0.8));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-overlay svg {
    width: 40px;
    height: 40px;
    color: var(--darker-bg);
}

.play-overlay:hover {
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    transform: scale(1.1);
}

.album-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    color: var(--darker-bg);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.album-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-light);
}

/* Shop Section */
.shop {
    padding: 30px 0 80px 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: transparent;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.product-card {
    background-color: var(--card-bg);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    border-radius: 16px;
    overflow: hidden;
    border: var(--glass-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.product-card:nth-child(1) {
    animation-delay: 0.1s;
}

.product-card:nth-child(2) {
    animation-delay: 0.2s;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: var(--glass-shadow);
}

.product-card:active {
    transform: scale(1.02) translateY(-2px);
}

.product-image {
    width: 100%;
    background: transparent;
    position: relative;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.product-img {
    width: 100%;
    height: auto;
    max-height: 350px;
    display: block;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.btn-quick-view {
    padding: 12px 30px;
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    color: var(--darker-bg);
    border: none;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-quick-view:hover {
    transform: scale(1.1);
}

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-info h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--text-light);
    margin-bottom: 0;
}

.product-price {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
}

.btn-preventa {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    transition: color 0.3s ease;
    position: relative;
    margin-top: auto;
    padding-bottom: 5px;
}

.btn-preventa::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.btn-preventa:hover {
    color: #ffffff;
    opacity: 0.8;
}

.btn-preventa:hover::after {
    width: 100%;
}

.btn-preventa:active {
    transform: scale(0.98);
    opacity: 0.9;
}

.view-all {
    text-align: center;
    margin-top: 2rem;
}

.btn-view-all {
    display: inline-block;
    padding: 12px 40px;
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    color: var(--darker-bg);
    transform: scale(1.05);
}

/* Discografía Section */
.discografia {
    padding: 30px 0 80px 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: transparent;
}

.discografia-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.album-spotify {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.album-spotify:hover {
    transform: scale(1.02);
}

.cassette-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cassette-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
}

.spotify-inside-cassette {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    width: 97%;
    max-width: 490px;
    z-index: 2;
    pointer-events: auto;
}

.spotify-inside-cassette iframe {
    width: 100%;
    border: none;
    border-radius: 4px;
    background: transparent;
    height: 180px;
}

/* Acerca de nosotros Section */
.acerca {
    padding: 30px 0 350px 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: transparent;
}

.acerca-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.acerca-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    font-family: 'Roboto', sans-serif;
    margin-bottom: 3rem;
}

/* Members Grid */
.members-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.member-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.member-card:hover {
    transform: scale(1.08) translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.member-image {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    position: relative;
}

.member-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    border-radius: 0 !important;
}

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

.member-info {
    padding: 0.8rem 0.5rem;
    text-align: center;
    background: transparent;
}

.member-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    margin: 0 0 0.3rem 0;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-gray);
    font-family: 'Roboto', sans-serif;
}


/* Booking Section */
.booking {
    padding: 0 0 30px 0;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: transparent;
}

.booking .section-title {
    margin-bottom: 1rem;
    margin-top: 0;
}

.booking-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.booking-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    font-family: 'Roboto', sans-serif;
    margin-bottom: 1rem;
}

.booking-link {
    color: var(--text-light);
    text-decoration: underline;
    position: relative;
    transition: opacity 0.3s ease;
}

.booking-link:hover {
    opacity: 0.8;
}

/* Podcast Section */
.podcast {
    padding: 80px 0 80px 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: transparent;
}

.podcast-embed-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.podcast-embed-container iframe {
    width: 100%;
    max-width: 100%;
    min-height: 279px;
    border-radius: 12px;
}

/* Shows Section */
.shows {
    padding: 30px 0 80px 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: transparent;
}

.shows-list {
    display: grid;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.show-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s ease;
}

.show-item:hover {
    border-color: #ffffff;
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.show-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    padding: 1rem;
    background-color: var(--darker-bg);
    border-radius: 10px;
    border: 2px solid #ffffff;
}

.show-day {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
}

.show-month {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.show-info {
    flex: 1;
}

.show-venue {
    font-family: 'Orbitron', sans-serif;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.show-location {
    color: var(--text-gray);
    margin-bottom: 0.3rem;
}

.show-action {
    display: flex;
    align-items: center;
}

.show-link {
    padding: 12px 30px;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.show-link:hover {
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    color: var(--darker-bg);
}

.show-link-free {
    border: 2px solid #ffffff;
    background-color: transparent;
    cursor: default;
}

.show-link-free:hover {
    background-color: transparent;
    color: #ffffff;
}

.shows-text {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.2rem;
    padding: 2rem 0;
}

.btn-ticket {
    padding: 12px 30px;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-ticket:hover {
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    color: var(--darker-bg);
}

/* Contact Section */
.contact {
    padding: 50px 0 80px 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--darker-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.contact-info p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-light);
    text-decoration: none;
    padding: 1rem;
    background-color: var(--card-bg);
    border-radius: 5px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.social-link svg {
    width: 24px;
    height: 24px;
}

.social-link:hover {
    border-color: #ffffff;
    transform: translateX(10px);
    color: #ffffff;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: var(--text-light);
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffffff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background-color: transparent;
    padding: 1.5rem 0 1rem 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Instagram Section in Footer */
/* Instagram Section in Footer */
.instagram-section {
    margin: 0 auto 1.5rem auto;
    padding: 0 20px;
    max-width: 500px;
    /* Reducido para que el widget sea más pequeño */
}

.instagram-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto 2rem auto;
}

.instagram-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.instagram-item:hover {
    transform: scale(1.05);
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-overlay i {
    font-size: 2rem;
    color: white;
}

.instagram-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(188, 24, 136, 0.4);
}

.instagram-follow-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(188, 24, 136, 0.6);
}

.instagram-follow-btn i {
    font-size: 1.2rem;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.footer p {
    color: var(--text-gray);
}

/* Logo dentro de Booking */
.booking-logo-container {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-logo {
    max-width: 180px;
    width: 100%;
    height: auto;
    animation: logoFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 20px rgba(255, 255, 255, 0.3));
}

/* Botón Volver Arriba */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(224, 224, 224, 0.9));
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.2);
    touch-action: manipulation;
    opacity: 0;
    transform: translateY(30px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-top-btn.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.scroll-top-btn.show:hover {
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.scroll-top-btn svg {
    width: 24px;
    height: 24px;
    color: var(--darker-bg);
}

.scroll-top-btn.show:active {
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Responsive Design */

/* Tablets y pantallas medianas */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

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

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

/* Tablets pequeñas y móviles grandes */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .navbar {
        padding: 0.8rem 0;
    }

    .nav-container {
        padding: 0 15px;
    }

    .hamburger {
        display: flex;
    }

    .logo-img {
        height: 40px;
        max-width: 150px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.85) !important;
        backdrop-filter: blur(40px) !important;
        -webkit-backdrop-filter: blur(40px) !important;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

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

    .nav-menu li {
        padding: 0.5rem 0;
        width: 100%;
    }

    .nav-link {
        font-size: 1.1rem;
        display: block;
        width: 100%;
        padding: 0.5rem 0;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-social {
        gap: 0.8rem;
        padding-right: 15px;
    }

    .social-icon {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 8px;
    }

    .social-icon svg {
        width: 24px;
        height: 24px;
    }

    .hero {
        min-height: auto;
        height: auto;
        padding-bottom: 0;
    }

    .hero-background {
        position: relative;
        padding-bottom: 56.25%;
        /* 16:9 aspect ratio */
        height: 0;
    }

    .hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center center;
    }

    .hero-logo-container {
        display: none;
        /* Ocultar logo sobre el banner en móviles */
    }

    .hero-logo-after {
        display: block;
        /* Mostrar logo después del banner en móviles */
        padding: 1.5rem 0;
        animation: fadeInUp 0.8s ease;
        min-height: 80vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-logo-after-img {
        animation: logoFloat 3s ease-in-out infinite, fadeInUp 0.8s ease;
        max-width: 300px;
        width: 80%;
        margin-top: 50px;
    }

    .podcast {
        padding: 10px 0 80px 0;
        justify-content: flex-start;
    }

    .hero-logo {
        max-width: 150px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
        letter-spacing: 2px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }

    .product-card {
        max-width: 100%;
    }

    .discografia-grid {
        max-width: 100%;
        gap: 1.5rem;
    }

    .cassette-container {
        max-width: 100%;
    }

    .cassette-img {
        max-width: 420px;
    }

    .spotify-inside-cassette {
        width: 97%;
        max-width: 410px;
        top: 50%;
        transform: translate(-50%, -40%);
    }

    .spotify-inside-cassette iframe {
        height: 180px;
    }

    .podcast-embed-container {
        padding: 0;
    }

    .podcast-embed-container iframe {
        height: 279px;
    }

    .acerca {
        padding: 10px 0 80px 0;
        justify-content: flex-start;
    }

    .members-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 10px;
    }

    .member-info h3 {
        font-size: 0.95rem;
    }

    .member-info p {
        font-size: 0.8rem;
    }

    .acerca-content,
    .booking-content {
        padding: 0 10px;
    }

    .booking {
        padding: 10px 0 80px 0;
        justify-content: flex-start;
    }

    .booking .section-title {
        margin-bottom: 2rem;
    }

    .acerca-text,
    .booking-text {
        font-size: 1.1rem;
        line-height: 1.7;
    }

    .scroll-top-btn {
        width: 50px;
        height: 50px;
        min-width: 44px;
        min-height: 44px;
        bottom: 20px;
        right: 20px;
    }

    .scroll-top-btn svg {
        width: 20px;
        height: 20px;
    }

    .footer {
        padding: 1.5rem 0;
    }

    .footer p {
        font-size: 0.9rem;
    }

    /* Shows - Versión móvil */
    .shows {
        padding: 10px 0 80px 0;
        justify-content: flex-start;
    }

    .shows-list {
        gap: 1.5rem;
    }

    .show-item {
        padding: 1.25rem;
        gap: 1rem;
        flex-direction: row;
    }

    .show-date {
        min-width: 60px;
        padding: 0.75rem;
    }

    .show-day {
        font-size: 1.5rem;
    }

    .show-month {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .show-venue {
        font-size: 1.15rem;
        margin-bottom: 0.3rem;
    }

    .show-location {
        font-size: 0.9rem;
    }

    .show-link {
        padding: 10px 20px;
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }

    /* Ocultar logo de booking en móviles */
    .booking-logo-container {
        display: none;
    }

    /* Instagram section responsive */
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .instagram-title {
        font-size: 1.5rem;
    }

    .instagram-follow-btn {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }
}

/* Móviles pequeños */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .navbar {
        padding: 0.6rem 0;
    }

    .nav-container {
        padding: 0 10px;
    }

    .logo-img {
        height: 35px;
        max-width: 120px;
    }

    .nav-social {
        gap: 0.6rem;
        padding-right: 10px;
    }

    .social-icon svg {
        width: 20px;
        height: 20px;
    }

    .hero {
        min-height: auto;
        height: auto;
        padding-bottom: 0;
    }

    .hero-background {
        position: relative;
        padding-bottom: 56.25%;
        /* 16:9 aspect ratio */
        height: 0;
    }

    .hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center center;
    }

    .hero-logo-container {
        display: none;
        /* Ocultar logo sobre el banner en móviles pequeños */
    }

    .hero-logo-after {
        display: block;
        /* Mostrar logo después del banner en móviles pequeños */
        padding: 1rem 0;
        animation: fadeInUp 0.8s ease;
    }

    .hero-logo-after-img {
        animation: logoFloat 3s ease-in-out infinite, fadeInUp 0.8s ease;
    }

    .podcast {
        padding: 10px 0 80px 0;
        justify-content: flex-start;
    }

    .hero-logo-after-img {
        max-width: 280px;
    }

    .hero-logo {
        max-width: 120px;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        letter-spacing: 1px;
    }

    .products-grid {
        gap: 1rem;
    }

    .product-card {
        border-radius: 8px;
    }

    .product-info h3 {
        font-size: 1.1rem;
    }

    .product-price {
        font-size: 1.2rem;
    }

    .btn-preventa {
        font-size: 1rem;
        padding: 0.75rem 1.25rem;
        min-height: 44px;
    }

    .discografia-grid {
        gap: 1rem;
    }

    .cassette-container {
        max-width: 100%;
    }

    .cassette-img {
        max-width: 340px;
    }

    .spotify-inside-cassette {
        width: 94%;
        max-width: 330px;
        top: 50%;
        transform: translate(-50%, -40%);
    }

    .spotify-inside-cassette iframe {
        height: 180px;
    }

    .podcast-embed-container iframe {
        height: 250px;
    }

    .acerca-text,
    .booking-text {
        font-size: 1rem;
        line-height: 1.6;
    }

    .booking-link {
        font-size: 1rem;
    }

    .scroll-top-btn {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        bottom: 15px;
        right: 15px;
    }

    .scroll-top-btn svg {
        width: 18px;
        height: 18px;
    }

    .modal-close {
        font-size: 30px;
        top: 5px;
        right: 5px;
    }

    .modal-content {
        max-height: 85vh;
    }

    /* Shows - Móviles pequeños */
    .show-item {
        padding: 1rem;
        gap: 1rem;
        flex-direction: column;
        text-align: center;
    }

    .show-date {
        min-width: auto;
        width: 100%;
        max-width: 120px;
        margin: 0 auto;
        padding: 0.75rem 1rem;
    }

    .show-day {
        font-size: 1.75rem;
    }

    .show-month {
        font-size: 0.8rem;
    }

    .show-info {
        width: 100%;
    }

    .show-venue {
        font-size: 1.1rem;
    }

    .show-location {
        font-size: 0.85rem;
    }

    .show-action {
        width: 100%;
        justify-content: center;
    }

    .show-link {
        padding: 10px 24px;
        font-size: 0.8rem;
        white-space: nowrap;
    }
}

/* Móviles muy pequeños */
@media (max-width: 360px) {
    .hero-logo {
        max-width: 100px;
    }

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

    .product-info h3 {
        font-size: 1rem;
    }

    .product-price {
        font-size: 1.1rem;
    }

    .acerca-text,
    .booking-text {
        font-size: 0.95rem;
    }

    .cassette-container {
        max-width: 100%;
    }

    .cassette-img {
        max-width: 280px;
    }

    .spotify-inside-cassette {
        width: 92%;
        max-width: 290px;
        top: 50%;
        transform: translate(-50%, -40%);
    }

    .spotify-inside-cassette iframe {
        height: 180px;
    }

    .podcast-embed-container iframe {
        height: 220px;
    }
}

/* Modal para imágenes */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

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

.modal-image-wrapper {
    position: relative;
    display: inline-block;
    max-width: 90%;
    max-height: 90vh;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #ffffff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    line-height: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.modal-close:hover {
    color: #ffffff;
    transform: scale(1.2);
    background-color: rgba(255, 255, 255, 0.2);
}

.modal-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    font-size: 1.5rem;
    font-family: 'Orbitron', sans-serif;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 15px 30px;
    border-radius: 10px;
}

.product-img {
    cursor: pointer;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* =========================================
   Scroll Animations
   ========================================= */

/* Base class for elements to animate */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

/* Fade In Animation */
.animate-on-scroll.fade-in {
    opacity: 0;
}

.animate-on-scroll.fade-in.visible {
    opacity: 1;
}

/* Slide Up Animation */
.animate-on-scroll.slide-up {
    opacity: 0;
    transform: translateY(50px);
}

.animate-on-scroll.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for children (optional utility) */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-500 {
    transition-delay: 0.5s;
}

/* =========================================
   Comic Section
   ========================================= */

.comic {
    padding: 40px 0;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: transparent;
    scroll-margin-top: 50px;
}

.comic-intro {
    text-align: center;
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.comic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.comic-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.comic-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

.comic-cover {
    background: #000000;
    padding: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.comic-cover-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.comic-chapter {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 1rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.comic-info {
    padding: 0.8rem;
    text-align: center;
}

.comic-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

.comic-pages {
    color: var(--text-color);
    opacity: 0.7;
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #000000;
    text-decoration: none;
    border-radius: 8px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-download svg {
    width: 20px;
    height: 20px;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Mobile */
@media (max-width: 768px) {
    .comic {
        padding: 60px 0;
    }

    .comic-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 20px;
    }

    .comic-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 20px;
    }

    .comic-cover {
        padding: 0;
        aspect-ratio: 1/1;
    }

    .comic-chapter {
        font-size: 0.8rem;
        padding: 0.8rem;
    }

    .comic-info h3 {
        font-size: 1.3rem;
    }
}ax-height: 400px;
        object-fit: contain;
    }

    .comic-chapter {
        font-size: 0.8rem;
        padding: 0.8rem;
    }

    .comic-info h3 {
        font-size: 1.3rem;
    }
}