
@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@800&display=swap");
/*@import url("https://fonts.googleapis.com/css2?family=Monoton&display=swap");*/



:root{
  /* Palette inspirée de l’image */
  --bg: #25142a;        /* très sombre */
  --surface: #3d2850;   /* violet sombre */
  --primary: #4e2d84;   /* violet néon */
  --teal: #65baaa;      /* teal arcade */
  --coral: #e96160;     /* corail punchy */
  --sand: #fcd79d;      /* beige chaud */
  --text: #f1eee9;      /* blanc cassé */

  --muted: rgba(241,238,233,.72);
  --line: rgba(241,238,233,.12);

  --radius: 18px;
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --glow: 0 0 0 1px rgba(252,215,157,.10), 0 0 40px rgba(101,186,170,.14);

  --stroke: #fcd79d;

}

*{ box-sizing: border-box; }
html,body{
  height: 100%;
  width: 100%;
}
body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: transparent;
  color: var(--text);
  overflow-x: hidden;
  user-select: none;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;

  background:
    radial-gradient(1100px 700px at 15% 0%, var(--coral), transparent 60%),
    radial-gradient(900px 600px at 85% 20%, var(--teal), transparent 55%),
    radial-gradient(800px 600px at 65% 90%, var(--sand), transparent 55%),
    var(--surface);

}

/* Topbar */
.topbar{
  position: sticky;
  top: 0;
  height: 60px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 8px;
  backdrop-filter: blur(10px);
  background: linear-gradient(to bottom, var(--coral), var(--primary), var(--surface), var(--bg));
  /*border-bottom: 1px solid var(--line);*/
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  letter-spacing: .3px;
  width: 350px;
}


.arcade-box {  
  width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateZ(0);
  transition: transform .20s ease, box-shadow .20s ease, filter .20s ease;
  will-change: transform;
}
.arcade-box:hover{
  transform: translateY(-6px) rotate(-.2deg);
  box-shadow: 0 24px 80px rgba(0,0,0,.46), var(--glow);
  filter: brightness(1.03);
}
.arcade-box:active{ transform: translateY(-2px); }

.arcade-title-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--primary);
  border-left: 8px solid var(--teal);
  border-right: 8px solid var(--teal);
  border-top: 3px solid var(--teal);
  border-bottom: 1px solid var(--teal);
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  width: 100%;
  height: 30px;
}

.arcade-title {

  text-align: center;
  margin-bottom: 0;
  margin-top: 0;
  line-height: 1;
  text-decoration: none;

  font-size: .9rem;
  font-family: "Orbitron", sans-serif;
  color: var(--text);

  text-shadow: 0 0 10px #fff, 0 0 30px #ff1177, 0 0 80px #ff1177, 0 0 150px #ff1177;
  /*animation: neon1 1.5s ease-in-out infinite alternate;*/
  will-change: filter;
}

@keyframes neon1 {
  from { filter: brightness(1.4); }
  to   { filter: brightness(0.8); }
}
.arcade-title:nth-child(odd) {
  animation-delay: 0.75s;
}


.arcade-screen-head-container {
  perspective: 100px;
  width: 92%;
  margin-bottom: -9px;
  margin-top: -7px;
}
.arcade-screen-head {
  height: 20px;
  width: 100%;
  background-color: var(--bg);
  transform: rotateX(-72deg);

  border-left: 8px solid var(--teal);
  border-right: 8px solid var(--teal);
}


.arcade-screen-container {
  position: relative;
  perspective: 400px;
  width: 103%;
  display: flex;
  justify-content: flex-end;

  align-items: center;
  flex-direction: column;

}


.arcade-screen {
  display: flex;
  justify-content: center;  
  background-color: var(--primary);
  width: 85%;
  transform: rotateX(35deg);

  border-left: 5px solid var(--teal);
  border-right: 5px solid var(--teal);
  margin-bottom: -6px;
  margin-top: -13px;
}
.arcade-img {
  border-radius: 20px;
  width: 95%;
  aspect-ratio: 1 / 1;
  /*animation: neon1 5s ease-in-out infinite alternate;*/
}

.arcade-boutons {
  position: absolute;
  display: flex;          
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-evenly;
  width: 100%;
}

.arcade-bntBallStick {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.arcade-bntBall {
  border-radius: 50%;
  width: 20px;
  height: 20px;

  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.95) 0%, var(--coral) 40%);
}

.arcade-bntStick {
  width: 5px;
  height: 14px;
  border-radius: 3px;
  background-color: var(--text);  
}

.arcade-bnt {  
  width: 15px;
  height: 8px;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}

.bgTeal {
  background-color: var(--teal);
}
.bgSand {
  background-color: var(--sand);
}
.bgCoral {
  background-color: var(--coral);
}
.bgPrimary {
  background-color: var(--primary);
}



.arcade-base-container {
  background-color: var(--primary);
  border-left: 8px solid var(--teal);
  border-right: 8px solid var(--teal);
  border-top: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text);

  border-radius: 3px;


}

.arcade-base {
  font-size: .8rem;
  text-align: center;
}

.arcadeBackground {
  backdrop-filter: blur(10px);
  background: linear-gradient(to bottom, var(--coral), var(--primary), var(--surface), var(--bg));

}


.bounito {
  font-size: 2rem;
  font-family: "Orbitron", sans-serif;
  font-weight: 800;
  position: absolute;
  letter-spacing: 0.05em;
  z-index: 99;
   background: linear-gradient(
    180deg in oklch,
    var(--coral) 0%,
    var(--coral) 50%,
    var(--teal) 55%,
    var(--teal) 75%,
    oklch(100% 0 0 / 0) 80%,
    oklch(100% 0 0 / 0) 100%
  );

  background-size: 300px 400px;
  background-position: 0 -400px;
  animation: moveit 6s linear infinite;
	background-color: transparent;
  background-clip: text;
	background-repeat: repeat-x;
  color: transparent;
  -webkit-text-stroke: clamp(1px, 0.06em, 8px) var(--stroke);
  margin-top: 0px;
}

@keyframes moveit {
  0%   { background-position: 0 -400px; }
  25%  { background-position: 0 0; }
  62.5% { background-position: 0 0; }
  100% { background-position: 0 -400px; }
}

.reflect {
  -webkit-box-reflect: below calc(-0.4em)
    linear-gradient(
      to top,
      oklch(100% 0 0 / 0.45),
      oklch(100% 0 0 / 0.35) 18%,
      oklch(100% 0 0 / 0.25) 45%,
      oklch(100% 0 0 / 0.15) 80%
    );
  filter: saturate(0.68) contrast(0.68);
  z-index: 98;
}




a {
  text-decoration: none;
}




.nav{
  display: none;
  gap: 16px;
}
.nav a{
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}
.nav a:hover{ color: var(--text); }



@media (min-width: 750px){
  .nav{         display: flex;
            gap: 5px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around; }
}

/* Hero */
.hero{
  position: relative;
  padding: 4px 2px 2px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}


.hero__kicker{
  margin: 0 0 10px;
  color: var(--muted);
  font-weight: 700;
}
.hero__title{
  margin: 0;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.05;
  letter-spacing: -.6px;
}


.hero__actions{
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 11px 14px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .2px;
  border: 1px solid var(--line);
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
  will-change: transform;
}
.btn:active{ transform: translateY(1px); }

.btn--primary{
  color: var(--bg);
  background: linear-gradient(135deg, var(--teal), rgba(101,186,170,.75));
  box-shadow: 0 14px 40px rgba(0,0,0,.28);
}
.btn--ghost{
  color: var(--text);
  background: rgba(61,40,80,.35);
  backdrop-filter: blur(10px);
}
.btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: var(--glow);
}

.hero__panel{
  display: grid;
}
.panel{
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(61,40,80,.30);
  backdrop-filter: blur(10px);
  padding: 16px;
  box-shadow: var(--shadow);
}
.panel__row{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.panel__text{
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

/* Pills / badges */
.pill, .badge{
  display: inline-flex;
  align-items: center;
  font-weight: 900;
  letter-spacing: .2px;
  border-radius: 999px;
}
.pill{
  font-size: 12px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  background: rgba(37,20,42,.35);
}
.pill--teal{ background: var(--teal); color: var(--surface);}
.pill--sand{ background: var(--sand); color: var(--surface);}
.pill--coral{ background: var(--coral); }
.pill--primary { background: var(--primary); }

.http {
  border-radius: 10px;
  padding: 0px 5px;
  font-size: .7rem;
}

.section{
  max-width: 1200px;
  margin: 22px auto;
  padding: 10px 18px 6px;
}
.section__head{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.section__title{
  margin: 0;
  font-size: 20px;
  letter-spacing: -.2px;
  color: var(--teal);
}
.section__desc{
  margin: 0;
  color: var(--muted);
  font-weight: 650;
  font-size: 13px;
  color: var(--sand);
}

/* Carousel */
.carousel{
  position: relative;
  border-radius: calc(var(--radius) + 6px);
}
.carousel__track{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(150px, 280px);
  gap: 14px;
  overflow-x: auto;
  padding: 10px 6px 18px;
  scroll-snap-type: x mandatory;
  scroll-padding: 10px;
  scrollbar-width: thin;
  scrollbar-color: rgba(252,215,157,.25) transparent;
}
.carousel__track:focus{
  outline: none;
  box-shadow: 0 0 0 2px rgba(101,186,170,.30);
  border-radius: var(--radius);
}

.carousel__btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(37,20,42,.55);
  backdrop-filter: blur(10px);
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform .18s ease, opacity .18s ease, filter .18s ease;
  opacity: .92;
  z-index: 10;
}
.carousel__btn:hover{
  filter: brightness(1.08);
  transform: translateY(-50%) scale(1.03);
}
.carousel__btn:active{
  transform: translateY(-50%) scale(.98);
}
.carousel__btn--left{ left: -6px; }
.carousel__btn--right{ right: -6px; }

@media (max-width: 640px){
  .carousel__btn{ display: none; } /* sur mobile on swipe naturellement */
}

/* Cards */
.card{
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--line);
  background: rgba(61,40,80,.22);
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,.30);
  transform: translateZ(0);
  transition: transform .20s ease, box-shadow .20s ease, filter .20s ease;
  will-change: transform;
}
.card:hover{
  transform: translateY(-6px) rotate(-.2deg);
  box-shadow: 0 24px 80px rgba(0,0,0,.46), var(--glow);
  filter: brightness(1.03);
}
.card:active{ transform: translateY(-2px); }

.card__media{
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, rgba(78,45,132,.55), rgba(101,186,170,.25));
}
.card__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: .92;
  transform: scale(1.02);
  transition: transform .25s ease, opacity .25s ease;
}
.card:hover .card__media img{
  transform: scale(1.07);
  opacity: 1;
}

.badge{
  position: absolute;
  left: 10px;
  top: 10px;
  font-size: 12px;
  padding: 7px 10px;
  border: 1px solid rgba(241,238,233,.14);
  background: rgba(37,20,42,.55);
}
.badge--teal{ box-shadow: 0 0 0 1px rgba(101,186,170,.32) inset; }
.badge--coral{ box-shadow: 0 0 0 1px rgba(233,97,96,.32) inset; }
.badge--sand{ box-shadow: 0 0 0 1px rgba(252,215,157,.30) inset; }

.card__body{
  padding: 12px 12px 14px;
  border-top: 1px solid rgba(241,238,233,.08);
}
.card__title{
  margin: 0;
  font-size: 14px;
  letter-spacing: -.2px;
  font-family: "Orbitron", sans-serif;
  color: var(--sand);
}
.card__meta{
  margin: 6px 0 0;
  color: var(--muted);
  font-weight: 650;
  font-size: 13px;
  color: var(--sand);
}

/* Footer */
.footer{
  max-width: 1200px;
  margin: 26px auto 40px;
  padding: 0 18px;
  color: var(--muted);
  font-weight: 650;
}