/* Fontes */
@font-face {
    font-family: 'Baskerville';
    src: url('../font/Baskervville-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: 'DraculaCondensed';
    src: url('../font/Dracula-Condensed.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --bg-color: #0A0A0A;
    --bg-darker: #050505;
    --primary-color: #E50914;
    --secondary-color: #D4AF37;
    --text-color: #FFFFFF;
    --text-muted: #B3B3B3;
    --font-heading: 'Bebas Neue', sans-serif;
    --font-hero: 'DraculaCondensed', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Reset e Estilos Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100%;
    position: relative;
}

/* Overlay de Grão Cinematográfico */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("https://www.transparenttextures.com/patterns/carbon-fibre.png");
    /* Padrão sutil para textura */
    opacity: 0.03;
    z-index: 9999;
    pointer-events: none;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Base Styles */
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

/* Tela de Loading */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: transform 1s cubic-bezier(1, 0, 0, 1);
}

#loader-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("https://www.transparenttextures.com/patterns/carbon-fibre.png");
    opacity: 0.05;
    pointer-events: none;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 10;
    width: 100%;
}

.loader-signature {
    width: 200px;
    max-width: 80%;
    height: auto;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.loader-progress {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #000;
}

/* Esconder o overflow do body enquanto carrega */
body.loading {
    overflow: hidden;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cabeçalho */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
    background: transparent;
}

.main-header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo a {
    font-family: var(--font-hero);
    font-size: 2.8rem;
    font-weight: normal;
    letter-spacing: 2px;
    color: #000;
    /* Cor escura inicial para a hero branca */
}

.main-header.scrolled .logo a {
    color: #fff;
    /* Cor branca para as seções de fundo escuro */
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links li a {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    text-transform: uppercase;
    opacity: 0.9;
    color: #000;
}

.main-header.scrolled .nav-links li a {
    color: #fff;
}

.nav-links li a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 30px;
    height: 2px;
    background: #000;
    transition: 0.3s;
}

.main-header.scrolled .mobile-menu-btn span {
    background: #fff;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: #fff;
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
    background: #fff;
}

/* Hero Section with Clipping Mask */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* Atrás do conteúdo mas no contexto de empilhamento */
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-mobile {
    display: none;
}

@media (max-width: 1024px) {
    .hero-video-desktop {
        display: none;
    }
    .hero-video-mobile {
        display: block;
    }
}

.hero-svg-mask {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 480px) {
    .hero-svg-mask {
        transform: scale(1.2);
        /* Zoom balanceado para não cortar as laterais */
    }

    .svg-text-ret {
        font-size: 320px !important;
        /* Menos zoom interno para o texto caber na largura */
        letter-spacing: -8px !important;
    }

    .hero-subtitle {
        font-size: 1.2rem !important;
    }
}

/* Estratégia de Clipping Mask atualizada usando SVG */
.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-svg-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-overlay-text {
    position: absolute;
    bottom: 15px; /* Puxando para o limite inferior para afastar do logo central */
    z-index: 10;
    text-align: center;
    color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px; /* Reduzindo o gap para compactar o rodapé do Hero */
    width: 100%;
}

.hero-subtitle {
    font-family: 'Baskerville', serif;
    font-size: 1.7rem;
    font-weight: 400;
    letter-spacing: 4px;
    margin-bottom: 0;
}

/* Special Button Hero */
.btn-special-hero {
    position: relative;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 9999px;
    height: 48px;
    padding: 4px;
    padding-left: 24px;
    padding-right: 56px;
    display: inline-flex;
    align-items: center;
    background: var(--primary-color);
    color: #fff;
    width: fit-content;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: none;
    text-decoration: none;
    z-index: 20;
}

.btn-special-hero:hover {
    padding-left: 56px;
    padding-right: 24px;
    background: #000;
}

.btn-special-hero .btn-text {
    position: relative;
    z-index: 10;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.btn-special-hero .btn-icon-wrapper {
    position: absolute;
    right: 4px;
    width: 40px;
    height: 40px;
    background: #fff;
    color: #000;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-special-hero:hover .btn-icon-wrapper {
    right: calc(100% - 44px);
    transform: rotate(45deg);
}

.svg-text-ret {
    font-family: var(--font-hero);
    font-size: 450px;
    /* Unidade relativa ao viewBox de 1000 */
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -15px;
    /* Mais apertado para um visual condensado massivo */
}

/* Indicador de Scroll */
.scroll-indicator {
    opacity: 0.6;
    transition: var(--transition-smooth);
}

.scroll-indicator:hover {
    opacity: 1;
}

/* Estilos da Discografia */
.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.album-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 4px;
    background: #111;
    padding: 10px;
    transition: var(--transition-smooth);
}

.album-card:hover {
    transform: translateY(-10px);
    background: #1a1a1a;
}

.album-img-placeholder {
    width: 100%;
    aspect-ratio: 1/1;
    background: linear-gradient(45deg, #111, #222);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.album-card h3 {
    font-size: 1.2rem;
    text-align: center;
}

/* --- SEÇÃO AGENDA (LIGHT MODE PREMIUM) --- */
#agenda {
    background: #FFFFFF;
    color: #000;
    padding: 120px 0;
}

#agenda .section-title,
#discografia .section-title {
    font-family: 'DraculaCondensed', sans-serif;
    font-size: 5rem;
    letter-spacing: 6px;
    margin-bottom: 50px;
    text-align: center;
}

#agenda .section-title {
    color: #000;
}

#discografia .section-title {
    color: #fff;
    margin-top: 0;
}

#agenda .section-title::after {
    background: #000;
}

.shows-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.show-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 35px 40px;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-left: 6px solid var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.show-item:hover {
    background: #fff;
    transform: translateX(12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.2);
}

.show-date {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 140px;
    line-height: 1;
}

.show-info {
    flex: 1;
    margin-left: 20px;
}

.show-info h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: #000;
    letter-spacing: 1px;
}

.show-info p {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

#agenda .btn-primary {
    background: #000;
    color: #fff;
    padding: 12px 30px;
    font-size: 0.9rem;
}

#agenda .btn-primary:hover {
    background: var(--primary-color);
    transform: scale(1.05);
}

.mouse {
    width: 25px;
    height: 45px;
    border: 2px solid black;
    /* Borda escura */
    border-radius: 20px;
    position: relative;
}

.mouse::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    width: 4px;
    height: 8px;
    background: black;
    /* Ponto de scroll escuro */
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

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

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

/* --- SEÇÃO SOBRE HORIZONTAL (NOIR) --- */
.about-horizontal {
    background: #0A0A0A;
    overflow: hidden;
}

.about-pin-container {
    height: 100vh;
    width: 100%;
}

.about-content-wrapper {
    display: flex;
    height: 100vh;
    width: 100%;
    align-items: center;
    position: relative;
    padding: 0 5vw;
}

/* Lado da Imagem */
.about-image-side {
    width: 40vw;
    height: 70vh;
    flex-shrink: 0;
    z-index: 10;
}

.image-stack {
    width: 100%;
    height: 100%;
    position: relative;
    perspective: 1000px;
}

.img-base {
    width: 85%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 10px 20px 50px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.img-rotate {
    width: 80%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.9);
    position: absolute;
    top: 5%;
    right: -30%;
    z-index: 5;
}

.image-caption {
    position: absolute;
    bottom: -60px;
    left: 0;
    display: flex;
    gap: 20px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    z-index: 10;
}

.image-caption .tag {
    color: var(--secondary-color);
    font-weight: bold;
}

/* Lado dos Slides */
.about-slides-container {
    flex: 1;
    height: 100%;
    position: relative;
    padding-left: 15vw;
    overflow: visible;
}

.about-bg-title {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-family: var(--font-hero);
    font-size: 30vw;
    line-height: 1;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
    z-index: 1;
    white-space: nowrap;
}

.about-slides-inner {
    display: flex;
    height: 100%;
    align-items: center;
    position: relative;
    z-index: 5;
    will-change: transform;
}

.about-slide {
    min-width: 50vw;
    padding-right: 15vw;
    flex-shrink: 0;
}

.slide-label {
    font-family: 'Baskerville', serif;
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    display: block;
    font-weight: 400;
    font-style: italic;
    opacity: 0.8;
}

.slide-text {
    font-size: 1.8rem;
    line-height: 1.4;
    color: #fff;
    max-width: 700px;
}

/* Responsividade Sobre Mobile */
@media (max-width: 1024px) {
    .about-content-wrapper {
        flex-direction: column;
        height: auto;
        padding: 100px 20px;
    }

    .about-image-side {
        width: 100%;
        height: 60vh;
        margin-bottom: 80px;
    }

    .about-slides-inner {
        flex-direction: column;
        height: auto;
    }

    .about-slide {
        min-width: 100%;
        padding-right: 0;
        margin-bottom: 100px;
    }

    .slide-text {
        font-size: 1.4rem;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    border-radius: 0;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: white;
    color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: black;
}

/* Footer */
.footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: var(--bg-darker);
}

/* Botão de Menu Mobile */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 30px;
    height: 2px;
    background: #000;
    /* Hambúrguer escuro inicial */
    transition: var(--transition-smooth);
}

.main-header.scrolled .mobile-menu-btn span {
    background: #fff;
    /* Hambúrguer branco no scroll */
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Atualizações de Responsividade */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #000;
        /* Fundo sólido preto */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 2000;
        /* Acima de tudo */
        padding: 50px;
    }

    .nav-links.active {
        right: 0;
        display: flex;
    }

    .mobile-menu-btn,
    .logo {
        z-index: 2001;
        /* Ambos acima do menu */
    }

    /* Se o botão do menu estiver ativo, force a logo a ficar branca */
    .mobile-menu-btn.active+.logo a,
    /* Se estivessem em outra ordem */
    .nav-container:has(.mobile-menu-btn.active) .logo a {
        color: #fff !important;
    }

    /* Caso o seletor HAS não seja suportado, uma alternativa simples: */
    .nav-links.active~.logo a {
        color: #fff !important;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .nav-links li a {
        font-size: 2.5rem !important;
        color: #fff !important;
        opacity: 1 !important;
    }


    .hero-title {
        font-size: 20vw;
    }

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

    /* About Responsivo - Redesign Mobile Layout */
    .about-horizontal {
        height: auto !important;
        padding: 0 !important;
        overflow: visible !important;
    }

    .about-pin-container {
        height: auto !important;
        padding: 0 !important;
        position: relative !important;
        display: block !important;
    }

    .about-content-wrapper {
        flex-direction: column;
        height: auto !important;
        display: block !important;
    }

    .about-image-side {
        position: sticky !important;
        top: 70px; /* Logo abaixo do header */
        width: 100%;
        height: 60vh;
        z-index: 50;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 40px 20px;
        background: #000;
        margin: 0 !important;
    }

    .image-stack {
        width: 100%;
        max-width: 320px;
        height: auto;
        aspect-ratio: 16/9;
        margin: 0 auto;
    }

    .about-slides-container {
        width: 100% !important;
        padding: 0 30px !important;
        z-index: 10;
        position: relative;
        margin-top: 20px;
        background: #000;
    }

    .about-slide {
        width: 100% !important;
        margin-bottom: 80px;
        padding-bottom: 40px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .about-slide:last-child {
        margin-bottom: 0;
        border-bottom: none;
    }

    .about-bg-title {
        display: none !important;
    }

    .show-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px 20px;
    }

    .show-date {
        min-width: unset;
        font-size: 1.8rem;
    }

    .show-info {
        margin-left: 0;
    }

    .show-info h3 {
        font-size: 1.4rem;
    }
}

/* --- NOVO STACK DE DISCOGRAFIA (HORIZONTAL 3D) --- */
.discography-carousel-section {
    background: #000;
    min-height: 850px;
    padding: 120px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.stack-area {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stack-container {
    width: 100%;
    height: 550px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1500px;
    transform-style: preserve-3d;
    cursor: grab;
}

.stack-container:active {
    cursor: grabbing;
}

.album-card-stack {
    position: absolute;
    width: 350px;
    height: 480px;
    border-radius: 24px;
    overflow: hidden;
    background: #111;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.5);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.6s ease, filter 0.6s ease;
    will-change: transform, opacity;
    user-select: none;
}

.album-card-stack img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    filter: brightness(0.6) grayscale(0.2);
    transition: filter 0.6s ease;
}

.album-card-stack.active img {
    filter: brightness(1) grayscale(0);
}

/* Info Overlay do Card */
.album-info-stack {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 10%, rgba(0, 0, 0, 0.7) 40%, transparent);
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.2s;
    pointer-events: none;
}

.album-card-stack.active .album-info-stack {
    opacity: 1;
    transform: translateY(0);
}

.album-year {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--secondary-color);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.album-info-stack h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-family: var(--font-heading);
    line-height: 1;
}

.album-info-stack p {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.5;
    max-width: 90%;
}

/* Interface de Controle */
.stack-controls {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
}

.stack-counter-new {
    display: flex;
    align-items: center;
    gap: 15px;
}

.count-current {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.count-line {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.count-total {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--font-heading);
}

.stack-dots-container {
    display: flex;
    gap: 12px;
}

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

.stack-dot.active {
    background: #fff;
    transform: scale(1.5);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

/* Responsividade */
@media (max-width: 1024px) {
    .discography-carousel-section {
        min-height: 700px;
        padding: 80px 0;
    }

    .stack-container {
        height: 400px;
    }

    .album-card-stack {
        width: 260px;
        height: 360px;
    }

    .album-info-stack {
        padding: 25px;
    }

    .album-info-stack h3 {
        font-size: 1.4rem;
    }

    .album-info-stack p {
        display: none;
    }
}

@media (max-width: 480px) {
    .album-card-stack {
        width: 220px;
        height: 300px;
    }
}
/* Footer Redesign */
.footer {
    background: #050505;
    padding: 60px 0 30px;
    color: #888;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 30px;
}

.footer-left p {
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: #fff;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.social-links a:hover {
    color: var(--primary-color);
    opacity: 1;
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.5;
}

.footer-bottom a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}
