:root {
    --colorRojo: #E83028;
    --colorBlanco: #FFFFFF;
    --colorNegro: #0A0A0A;
    --colorFondo: #222222;
    --colorAmarillo: #FFD700;
    --colorAzul: #1E90FF;
    --fontPrimary: 'Orbitron', sans-serif;
    --fontSecondary: 'Roboto', sans-serif;
}

*{
    scroll-behavior: smooth;
}

section, .quote-section, footer {
    view-timeline-name: --section;
    animation: autoShowAnimation both ease-out;
    animation-timeline: --section;
    animation-range: entry 0% cover 10%;
}

.hero,
.slider2,
.navbar {
    animation: none !important;
}

body {
    margin: 0;
    font-family: var(--fontSecondary);
    background: var(--colorNegro);
    color: var(--colorBlanco);
    overflow-x: hidden;
    position: relative;
}

body::after {
    content: '';
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, 
        rgb(10, 10, 10) 0%, 
        rgba(255, 255, 255, 0) 50%,
        transparent 100%);
    pointer-events: none;
    z-index: 100;
    backdrop-filter: blur(10px);
    mask-image: linear-gradient(to top, 
        black 0%, 
        transparent 100%);
}

.autoShow{
    animation: autoShowAnimation both;
    animation-timeline: view(100% 5%);
}

@keyframes autoShowAnimation {
    from {
        filter: blur(20px) brightness(1.5);
        opacity: 0;
        transform: translateY(100px) scale(0.8);
    }
    to {
        filter: blur(0) brightness(1);
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
  
section:nth-child(odd) {
    animation-delay: 0.1s;
}
  
section:nth-child(even) {
    animation-delay: 0.2s;
}

/* Navbar Styling */
.navbar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    height: 80px;      
    padding: 0 40px;   
    position: relative;
    z-index: 10;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid var(--colorRojo);
}

.logo {
    font-family: var(--fontPrimary);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--colorBlanco);
    text-shadow: 0 0 5px var(--colorRojo), 0 0 10px var(--colorRojo);
    letter-spacing: 3px;
    margin: 0;
    transition: all 0.3s ease;
}

.logo-link {
    color: inherit;
    text-decoration: none;
    display: block;
}

.logo:hover {
    transform: scale(1.05);
    text-shadow: 0 0 10px var(--colorRojo), 0 0 20px var(--colorRojo);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
    justify-self: center;
}

.nav-link {
    color: var(--colorBlanco);
    text-decoration: none;
    font-family: var(--fontPrimary);
    font-weight: 600;
    letter-spacing: 1.5px;
    position: relative;
    padding: 5px 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.nav-link:hover {
    color: var(--colorAmarillo);
    text-shadow: 0 0 5px var(--colorAmarillo);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--colorAmarillo);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.join-btn {
    background: linear-gradient(135deg, var(--colorRojo), #c62828);
    color: var(--colorBlanco);
    border: none;
    padding: 12px 30px;
    cursor: pointer;
    font-family: var(--fontPrimary);
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(232, 48, 40, 0.7);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.join-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transform: rotate(30deg);
    transition: all 1s ease-in-out;
}

.join-btn:hover {
    background: var(--colorBlanco);
    color: var(--colorRojo);
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(232, 48, 40, 0.9);
}

.join-btn:hover::before {
    left: 100%;
}

.subtitle {
    font-family: var(--fontPrimary);
    font-size: 1.8rem;
    margin-top: 20px;
    position: relative;
    z-index: 5;
    text-shadow: 0 0 10px var(--colorRojo), 0 0 5px var(--colorNegro);
    letter-spacing: 2px;
    color: var(--colorBlanco);
    animation: pulse 2s infinite alternate;
}

@keyframes pulse {
    from {
        text-shadow: 0 0 10px var(--colorRojo), 0 0 5px var(--colorNegro);
    }
    to {
        text-shadow: 0 0 20px var(--colorRojo), 0 0 15px var(--colorAmarillo);
    }
}

/* Hero Section  */
.hero {
    position: relative;
    text-align: center;
    margin: 0;
    padding: 50px 20px 0;
    min-height: 100vh;
    font-family: var(--fontPrimary);
    background: linear-gradient(
        rgba(0, 0, 0, 0.5), 
        rgba(0, 0, 0, 0.8)
      ),
      url('hero-bg.jpeg') no-repeat center top / cover;
    overflow: hidden;
}

/* Contenedor slider */
.hero .banner {
    position: relative;
    width: 100%;
    min-height: 100vh;
    text-align: center;
    overflow: hidden;
}

.hero .banner::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    bottom: 0;
    left: 0;
    z-index: 1;
}

/* Slider  */
.hero .banner .slider {
    position: absolute;
    width: 200px;
    height: 250px;
    top: 10%;
    left: calc(50% - 100px);
    transform-style: preserve-3d;
    transform: perspective(1000px);
    animation: autoRun 14s linear infinite;
    z-index: 2;
}

.hero .banner .slider:hover {
    animation-play-state: paused;
}

@keyframes autoRun {
    from {
        transform: perspective(1000px) rotateX(-10deg) rotateY(0deg);
    }
    to {
        transform: perspective(1000px) rotateX(-10deg) rotateY(360deg);
    }
}

/* Cards */
.hero .banner .slider .item {
    position: absolute;
    inset: 0 0 0 0;
    transform: rotateY(calc(var(--position) * (360deg / var(--quantity)))) translateZ(500px);
    transform-style: preserve-3d;
    transition: transform 0.5s ease, z-index 0.5s ease;
    will-change: transform;
}

.hero .banner .slider .item:hover {
    transform: rotateY(calc(var(--position) * (360deg / var(--quantity)))) translateZ(550px);
    z-index: 10;
}

/* Card Faces */
.hero .banner .slider .item .face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    overflow: hidden;
}

/* Front Face */
.hero .banner .slider .item .face.front {
    border: 2px solid var(--colorRojo);
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(232, 48, 40, 0.5);
    transform: translateZ(0);
}

.hero .banner .slider .item:hover .face.front {
    box-shadow: 0 0 20px var(--colorAzul), 0 0 30px rgba(232, 48, 40, 0.6);
    border-color: var(--colorAzul);
}

/* Back Face */
.hero .banner .slider .item .face.back {
    transform: rotateY(180deg);
    filter: brightness(0.4);
    border: 3px solid var(--colorRojo);
    border-radius: 12px;
}

.hero .banner .slider .item:hover .face.back {
    box-shadow: 0 0 15px var(--colorAmarillo);
    border-color: var(--colorAmarillo);
}

/* Image Styling */
.hero .banner .slider .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.5s ease, filter 0.3s ease;
    transform: translateZ(0);
}

.hero .banner .slider .item:hover img {
    transform: scale(1.15) translateZ(0);
    filter: blur(2px);
}

/* Overlay */
.character-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 20%, transparent 70%);
    transform: translateZ(30px); /* Separate from image plane */
    backface-visibility: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero .banner .slider .item:hover .character-overlay {
    opacity: 1;
}

.character-info {
    color: white;
    text-align: center;
    transform: translateZ(0);
}

.character-info h3 {
    color: var(--colorAmarillo);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.stats {
    margin: 0.5rem 0;
}

.stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.3rem;
}

.stat span {
    font-size: 0.75rem;
    font-weight: 500;
}

.stars {
    --percent: calc(var(--rating) / 5 * 100%);
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.stars::before {
    content: '★★★★★';
    background: linear-gradient(90deg, var(--colorAmarillo) var(--percent), rgba(255,255,255,0.3) var(--percent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Content */
.hero .banner .content {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(1400px, 100vw);
    height: max-content;
    padding-bottom: 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    perspective: 800px;
    z-index: 1;
}

.hero .banner .content h1 {
    font-size: clamp(5rem, 15vw, 16em);
    line-height: 1em;
    color: var(--colorBlanco);
    text-shadow: 0 0 10px var(--colorRojo), 0 0 20px var(--colorRojo);
    font-family: var(--fontPrimary);
    letter-spacing: 5px;
    margin: 0;
    width: 100%;
    text-align: center;
    transform: rotateX(60deg);
    position: relative;
}

.hero .banner .content h1:hover {
    text-shadow: 0 0 15px var(--colorRojo), 0 0 30px var(--colorRojo);
}

.hero .banner .content .model {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 75vh;
    background:
      linear-gradient(
        to top,
        rgb(0, 0, 0) 0%,
        rgba(0, 0, 0, 0) 50%
      ),
      url('images/model.png') no-repeat bottom center / contain;
}


/* Mosaic Section */
.mosaic {
    padding: 80px 20px;
    background: linear-gradient(
        rgb(0, 0, 0), 
        rgba(0, 0, 0, 0.7)
      ),
      url('images/bg-mosaic\ \(2\).webp') no-repeat center top / cover;
    position: relative;
    bottom: 0;
}

.mosaic h2 {
    font-family: var(--fontPrimary);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--colorBlanco);
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
}

.mosaic h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: var(--colorRojo);
    margin: 15px auto;
}

.artists {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.artist-card {
    width: 250px;
    height: 350px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.artist-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 30px rgba(232, 187, 40, 0.507);
}

.artist-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.artist-card:hover img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.artist-card:hover .card-overlay {
    transform: translateY(0);
}

.card-overlay h3 {
    font-family: var(--fontPrimary);
    color: var(--colorRojo);
    margin: 0 0 5px 0;
    font-size: 1.5rem;
}

.card-overlay p {
    margin: 0;
    color: var(--colorBlanco);
    font-size: 0.9rem;
}

/* Slider 2 Section*/
.slider2{
    margin-top: 64px;
    width: 100%;
    border: 2px solid transparent;
    height: var(--height);
    overflow: hidden;
    mask-image: linear-gradient(
        to right,
        transparent,
        #ffffff,
        transparent
    );
}

.slider2 .list{
    display: flex;
    width: 100%;
    min-width: calc(var(--width) * var(--quantity2));
    position: relative;
}

.slider2 .list .item2{
    width: var(--width);
    height: var(--height);
    position: absolute;
    left: 100%;
    animation: autoRun2 10s linear infinite;
    transition: filter 0.5s;
    animation-delay: calc((10s / var(--quantity2)) * (var(--position2) - 1)) !important;
}

.slider2 .list .item2 img{
    width: 100%;
    border-radius: 10px;
}

@keyframes autoRun2{
    from{
        left:100%;
    }
    to{
        left: calc(var(--width) * -1);
    }
}

.slider2:hover .item2{
    animation-play-state: paused !important;
    filter: grayscale(1) brightness(1.1);
    transform: scale(1.05);
    transition: all 0.3s ease;
}


.slider2 .item2:hover{
    filter: grayscale(0);
}

.slider2[reverse="true"] .list .item2{
    animation: reversePlay 10s linear infinite;
}

@keyframes reversePlay {
    from {
        left: calc(var(--width) * -1);
    }
    to {
        left: 100%;
    }
}


/* Synopsis Section */
.synopsis {
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    background: var(--colorNegro);
}

.synopsis .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.synopsis h2 {
    font-family: var(--fontPrimary);
    font-size: 3rem;
    color: var(--colorBlanco);
    text-shadow: 0 0 10px var(--colorRojo), 0 0 20px var(--colorRojo);
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.synopsis-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.synopsis-content p {
    background: rgba(10, 10, 10, 0.7);
    padding: 20px;
    border-radius: 10px;
    border-left: 3px solid var(--colorRojo);
}

.spiral-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="none" stroke="%23E83028" stroke-width="0.5" d="M50,0 C60,20 70,30 50,50 C30,70 20,80 0,50 C-20,20 -30,10 -10,-10 C10,-30 20,-40 50,0 Z" transform="rotate(45 50 50)"/></svg>');
    opacity: 0.1;
    z-index: 1;
    animation: spiralRotate 60s linear infinite;
}

@keyframes spiralRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Quote Section */
.quote-section {
    padding: 80px 20px;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://example.com/gurren-bg.jpg') center/cover;
    text-align: center;
    animation-range: entry 20% cover 30%;
}

.quote-container {
    max-width: 800px;
    margin: 0 auto;
}

blockquote {
    font-family: var(--fontPrimary);
    font-size: 2rem;
    color: var(--colorBlanco);
    line-height: 1.4;
    position: relative;
    padding: 0 40px;
    margin-bottom: 20px;
}

blockquote:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

cite:hover {
    color: var(--colorAmarillo);
    transition: color 0.3s ease;
}

blockquote::before,
blockquote::after {
    content: '"';
    font-size: 4rem;
    color: var(--colorRojo);
    opacity: 0.5;
    position: absolute;
}

blockquote::before {
    top: -20px;
    left: 0;
}

blockquote::after {
    bottom: -60px;
    right: 0;
}

cite {
    font-family: var(--fontSecondary);
    font-style: normal;
    font-size: 1.2rem;
    color: var(--colorRojo);
    display: block;
    margin-top: 30px;
}

/* Footer */
footer {
    background: var(--colorNegro);
    padding: 80px 20px 30px;
    color: var(--colorBlanco);
    position: relative;
    overflow: hidden;   
    border-top: 3px solid var(--colorRojo);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="none" stroke="%23E83028" stroke-width="0.3" d="M50,0 C60,20 70,30 50,50 C30,70 20,80 0,50 C-20,20 -30,10 -10,-10 C10,-30 20,-40 50,0 Z" transform="rotate(45 50 50)"/></svg>');
    opacity: 0.05;
    z-index: 1;
    animation: spiralRotate 80s linear infinite;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
    .footer-content {
        animation-range: entry 5% cover 15%;
        filter: blur(5px) brightness(1.1);
    }
}

.footer-about {
    padding-right: 20px;
}

.footer-about h3 {
    font-family: var(--fontPrimary);
    color: var(--colorRojo);
    margin-top: 0;
    font-size: 1.5rem;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.footer-about p {
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-about h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--colorRojo);
}

.anime-stats {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.stat-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-family: var(--fontPrimary);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--colorRojo);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    opacity: 0.8;
}

.footer-logo {
    font-family: var(--fontPrimary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--colorRojo);
    margin-bottom: 20px;
}

.footer-logo:hover {
    text-shadow: 0 0 10px var(--colorRojo);
    transition: text-shadow 0.3s ease;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links h3{
    font-family: var(--fontPrimary);
    color: var(--colorRojo);
    margin-top: 0;
    font-size: 1.5rem;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--colorRojo);
}

.footer-links a {
    color: var(--colorBlanco);
    text-decoration: none;
    font-family: var(--fontSecondary);
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0 8px 20px;
    margin-left: -20px;
    border-radius: 5px;
}

.footer-links a:hover {
    color: var(--colorRojo);
    background: rgba(232, 48, 40, 0.1);
    padding-left: 25px;
}

.footer-links a::before {
    content: '▶';
    position: absolute;
    left: 5px;
    color: var(--colorRojo);
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
    left: 10px;
}

.newsletter {
    background: rgba(34, 34, 34, 0.7);
    padding: 20px;
    border-radius: 10px;
    border-top: 3px solid var(--colorRojo);
}

.newsletter:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(232, 48, 40, 0.3);
    transition: all 0.3s ease;
}

.newsletter h3 {
    font-family: var(--fontPrimary);
    color: var(--colorBlanco);
    text-shadow: 0 0 10px var(--colorAzul), 0 0 20px var(--colorAzul);
    margin-top: 0;
}

.newsletter p {
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.newsletter form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter input {
    padding: 12px;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--colorBlanco);
    border-bottom: 2px solid var(--colorRojo);
}

.newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter button {
    background: var(--colorRojo);
    color: var(--colorBlanco);
    border: none;
    padding: 12px;
    border-radius: 5px;
    font-family: var(--fontPrimary);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter button:hover {
    background: var(--colorBlanco);
    color: var(--colorRojo);
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* =========================================
   CUSTOM SCROLLBAR
========================================= */

::-webkit-scrollbar{
  width:6px;
}

::-webkit-scrollbar-track{
  background:#050505;
}

::-webkit-scrollbar-thumb{

  background:#AAFF00;

  border-radius:999px;

  box-shadow:
    0 0 10px rgba(170,255,0,.5);

}

::-webkit-scrollbar-thumb:hover{
  background:#d9ff7a;
}

/* Firefox */

*{
  scrollbar-width:thin;
  scrollbar-color:#AAFF00 #050505;
}


/* =========================================================
   RESPONSIVE — LANDING PAGE (styles.css)
   Fixed: navbar grid→flex, 3D card slider overflow
   at smaller screens, synopsis/quote adjustments
========================================================= */

/* ── 1280px ── */
@media (max-width: 1280px) {
    .navbar {
        padding: 0 24px;
    }
    .nav-links {
        gap: 28px;
    }
    /* Reduce 3D depth so cards don't clip viewport */
    .hero .banner .slider .item {
        transform: rotateY(calc(var(--position) * (360deg / var(--quantity)))) translateZ(400px);
    }
}

/* ── 1024px ── */
@media (max-width: 1024px) {
    .navbar {
        padding: 0 20px;
    }
    .logo {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }
    .nav-links {
        gap: 20px;
    }
    .nav-link {
        font-size: 0.8rem;
    }
    .join-btn {
        padding: 10px 18px;
        font-size: 0.78rem;
        letter-spacing: 1px;
    }
    .hero .banner .slider .item {
        transform: rotateY(calc(var(--position) * (360deg / var(--quantity)))) translateZ(340px);
    }
    .hero .banner .slider {
        width: 180px;
        height: 225px;
        left: calc(50% - 90px);
    }
}

/* ── 768px: fix navbar (grid → flex), tighten hero ── */
@media (max-width: 768px) {
    .navbar {
        display: flex;
        flex-wrap: wrap;
        height: auto;
        padding: 12px 20px;
        gap: 10px;
        align-items: center;
        justify-content: space-between;
    }
    .logo {
        font-size: 1.2rem;
        order: 1;
        flex: 1;
    }
    .join-btn {
        order: 2;
        padding: 8px 14px;
        font-size: 0.72rem;
    }
    .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 16px;
    }
    .nav-link {
        font-size: 0.78rem;
        letter-spacing: 1px;
    }
    .hero .banner .content h1 {
        font-size: clamp(4rem, 12vw, 8rem);
    }
    .hero .banner .slider .item {
        transform: rotateY(calc(var(--position) * (360deg / var(--quantity)))) translateZ(280px);
    }
    .hero .banner .slider {
        width: 160px;
        height: 200px;
        left: calc(50% - 80px);
    }
    .synopsis-content {
        grid-template-columns: 1fr;
    }
    blockquote {
        font-size: 1.5rem;
    }
}

/* ── 600px ── */
@media (max-width: 600px) {
    blockquote::after {
        bottom: -30px;
    }
    .artists {
        gap: 18px;
    }
    .artist-card {
        width: 200px;
        height: 280px;
    }
}

/* ── 480px ── */
@media (max-width: 480px) {
    .navbar {
        padding: 10px 14px;
    }
    .logo {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    .nav-links {
        gap: 10px;
    }
    .nav-link {
        font-size: 0.65rem;
        letter-spacing: 0.5px;
    }
    .join-btn {
        padding: 7px 11px;
        font-size: 0.65rem;
        letter-spacing: 0.5px;
    }
    .hero .banner .content h1 {
        font-size: clamp(3rem, 14vw, 5rem);
    }
    .hero .banner .slider .item {
        transform: rotateY(calc(var(--position) * (360deg / var(--quantity)))) translateZ(220px);
    }
    .hero .banner .slider {
        width: 140px;
        height: 175px;
        left: calc(50% - 70px);
    }
}