* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
    overflow: hidden;
    background: radial-gradient(circle at center, #001020, #000000);
    font-family: "Orbitron", sans-serif;
    color: white;
    transition: background 0.8s ease;
}
body.bg-blue { background: radial-gradient(circle at center, #001b3d, #000000); }
body.bg-pink { background: radial-gradient(circle at center, #2b001f, #000000); }
body.bg-purple { background: radial-gradient(circle at center, #1a0030, #000000); }

.scanlines {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: repeating-linear-gradient(
        to bottom,
        rgba(255,255,255,0.03) 0px,
        rgba(255,255,255,0.03) 2px,
        transparent 2px,
        transparent 4px
    );
    z-index: 9999;
    mix-blend-mode: overlay;
}

.navbar {
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid cyan;
    z-index: 10;
}
.navbar-brand {
    font-size: 1.8rem;
    color: cyan !important;
    text-shadow: 0 0 10px cyan;
}
.nav-link {
    color: cyan !important;
    text-shadow: 0 0 8px cyan;
    cursor: pointer;
}
.navbar-toggler {
    border: 1px solid cyan;
    box-shadow: 0 0 10px cyan;
}
.navbar-toggler-icon {
    background-image: none;
    width: 24px;
    height: 2px;
    background-color: cyan;
    box-shadow: 0 0 10px cyan;
    position: relative;
}
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: cyan;
    box-shadow: 0 0 10px cyan;
    left: 0;
}
.navbar-toggler-icon::before { top: -7px; }
.navbar-toggler-icon::after { top: 7px; }
.navbar-collapse {
    padding: 1px;
}

.slider {
    display: flex;
    width: 300vw;
    height: 100vh;
    transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1);
}
.page {
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.grid-bg {
    position: absolute;
    inset: 0;
    z-index: -3;
}

.grid-blue {
    background-size: 80px 80px;
    background-image:
        linear-gradient(to right, rgba(0,200,255,0.25) 2px, transparent 2px),
        linear-gradient(to bottom, rgba(0,200,255,0.25) 2px, transparent 2px);
}

.grid-pink {
    background-size: 80px 80px;
    background-image:
        linear-gradient(to right, rgba(255,80,200,0.35) 2px, transparent 2px),
        linear-gradient(to bottom, rgba(255,80,200,0.35) 2px, transparent 2px);
}

.grid-purple {
    background-size: 80px 80px;
    background-image:
        linear-gradient(to right, rgba(180,80,255,0.35) 2px, transparent 2px),
        linear-gradient(to bottom, rgba(180,80,255,0.35) 2px, transparent 2px);
}

.particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    display: block;
}

.main-gaida-title {
    font-size: 5rem;
    top: 40%;
    transform: translate(-50%, -50%);

  /* font-family: "Monoton", sans-serif;
  font-style: normal; */

    font-family: "Audiowide", sans-serif;
  font-weight: 400;
  font-style: normal;

}

.gaida-title {
    font-size: 4rem;
    font-weight: bold;
    letter-spacing: 14px;
    position: absolute;
    left: 50%;
    animation:
            glowPulse 3s ease-in-out infinite,
            titleGlow 4s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 20px cyan);
}

@keyframes glowPulse {
    0% { filter: drop-shadow(0 0 20px cyan) drop-shadow(0 0 20px hotpink); }
    50% { filter: drop-shadow(0 0 40px cyan) drop-shadow(0 0 40px hotpink); }
    100% { filter: drop-shadow(0 0 20px cyan) drop-shadow(0 0 20px hotpink); }
}

@keyframes titleGlow {
    from { filter: drop-shadow(0 0 20px cyan); }
    to   { filter: drop-shadow(0 0 40px hotpink); }
}

.gaida-title1::before,
.gaida-title1::after {
    content: "GAIDA — Création de Fursuits";
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.6;
    mix-blend-mode: screen;
}

.gaida-title2::before,
.gaida-title2::after {
    content: "Mes Créations";
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.6;
    mix-blend-mode: screen;
}

.gaida-title3::before,
.gaida-title3::after {
    content: "Contact & Informations";
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.6;
    mix-blend-mode: screen;
}

.gaida-title::before {
    color: cyan;
    animation: glitch1 0.8s infinite;
}

.gaida-title::after {
    color: hotpink;
    animation: glitch2 0.8s infinite;
}

@keyframes glitch1 {
    0% { transform: translate(0,0); }
    20% { transform: translate(-3px,2px); }
    40% { transform: translate(2px,-3px); }
    60% { transform: translate(-2px,1px); }
    80% { transform: translate(2px,-2px); }
    100% { transform: translate(0,0); }
}

@keyframes glitch2 {
    0% { transform: translate(0,0); }
    20% { transform: translate(3px,-2px); }
    40% { transform: translate(-3px,3px); }
    60% { transform: translate(2px,-1px); }
    80% { transform: translate(-2px,2px); }
    100% { transform: translate(0,0); }
}

.exit-up { animation: titleDisappearUp 0.5s forwards; }
.enter-down { animation: titleAppearDown 0.6s forwards; }

@keyframes titleAppearDown {
    0% { opacity: 0; transform: translate(-50%, -200px) scale(0.9); filter: blur(6px); }
    60% { opacity: 1; filter: blur(0px); }
    100% { transform: translate(-50%, 0) scale(1); }
}
@keyframes titleDisappearUp {
    0% { opacity: 1; transform: translate(-50%, 0) scale(1); filter: blur(0px); }
    100% { opacity: 0; transform: translate(-50%, -200px) scale(0.9); filter: blur(6px); }
}

.page-title-top { top: 12%; transform: translateX(-50%); }

.page-content {
    position: absolute;
    bottom: 10%;
    left: 10%;
    max-width: 500px;
    background: rgba(0,0,0,0.5);
    padding: 20px;
    border: 1px solid cyan;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px cyan;
}

.page-content-large {
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    max-width: 900px;
    padding: 35px;
    font-size: 1.1rem;
}

.page-content h2 { text-shadow: 0 0 10px hotpink; }
.page-content p { margin-top: 10px; line-height: 1.5; }

.cube-container {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
    perspective: 800px;
}

.cube {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateCube 8s linear infinite;
}

@keyframes rotateCube {
    from { transform: rotateX(0deg) rotateY(0deg); }
    to   { transform: rotateX(360deg) rotateY(360deg); }
}

.cube-face {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid cyan;
    box-shadow: 0 0 20px cyan;
    background: rgba(0,0,0,0.2);
}

.cube-face.front  { transform: translateZ(100px); }
.cube-face.back   { transform: rotateY(180deg) translateZ(100px); }
.cube-face.right  { transform: rotateY(90deg) translateZ(100px); }
.cube-face.left   { transform: rotateY(-90deg) translateZ(100px); }
.cube-face.top    { transform: rotateX(90deg) translateZ(100px); }
.cube-face.bottom { transform: rotateX(-90deg) translateZ(100px); }

@media (max-width: 992px) {
    .cube-container {
        display: none;
    }

    .page-content,
    .page-content-large {
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: none;
        bottom: 5%;
        padding: 20px;
    }

    .page-content-large {
        padding: 25px;
        font-size: 1rem;
    }

    .gaida-title {
        font-size: 4rem;
        letter-spacing: 6px;
    }
}

.section-bg-gaida {
    position: absolute;
    inset: 0;
    background: url('files/gaida.png') center center no-repeat;
    background-size: cover;
    opacity: 0.15;
    mix-blend-mode: screen;
    animation: shimmer 12s linear infinite;
    z-index: -1; 
} 

@keyframes shimmer { 
    0% { filter: brightness(1) hue-rotate(0deg); } 
    50% { filter: brightness(1.2) hue-rotate(20deg); } 
    100% { filter: brightness(1) hue-rotate(0deg); } 
}

.nav-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    padding: 10px 20px;
    color: cyan;
    cursor: pointer;
    z-index: 2000;
    text-shadow: 0 0 15px cyan;
    opacity: .3;
    transition: .3s;
}
#nav-prev { left: 10px; }
#nav-next { right: 10px; }
.nav-arrow:hover { opacity: 1; }

#slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform 0.2s ease-out;
}

.nav-link:focus {
    outline: none;
    text-shadow: 0 0 12px white;
}