@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Rajdhani:wght@500;700&display=swap');


body {
  background: #0a0aff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: 'Rajdhani', sans-serif;
  overflow: hidden;
  margin: 0;
  padding: 0;
}


.navbar {
  background: #000;
  height: 48px;
  display: flex;
  align-items: stretch;
  flex-shrink: 0;
  position: relative;
  z-index: 10;
  border-bottom: 3px solid #ff1a1a;
}

.navbar a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 0 24px;
  display: flex;
  align-items: center;
  position: relative;
  transition: color 0.15s, background 0.15s;
}


.navbar a + a::before {
  content: '';
  position: absolute;
  left: 0; top: 25%; bottom: 25%;
  width: 1px;
  background: rgba(255,255,255,0.15);
}

.navbar a:hover {
  color: #ff1a1a;
  background: rgba(255,26,26,0.07);
}


.navbar a.active {
  color: #fff;
}
.navbar a.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: #ff1a1a;
}


.navbar .nav-cta {
  margin-left: auto;
  background: #ff1a1a;
  color: #fff;
  letter-spacing: 3px;
  padding: 0 28px;
  border: none;
  font-family: "Bebas Neue", sans-serif;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.15s;
}
.navbar .nav-cta:hover { background: #cc0000; }

#sitename {
  margin-right: auto;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 2px;
  padding-top: 14px;
  padding-left:18px;
}


.char-strip {
  position: relative;
  z-index: 4;
  padding: 0 28px;
  height: 60px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.char-strip::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: #ff1a1a;
}

.char-name-big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: #ff1a1a;
  letter-spacing: 6px;
  line-height: 1;
  padding-left: 16px;
  padding-top: 10px;
  text-shadow: 2px 2px 0px rgba(0,0,0,0.4);
  transition: opacity 0.2s;
}

.char-num {
  margin-left: auto;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.35);
}


.stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
  position: relative;
  z-index: 2;
}

.arrow-btn {
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
  padding: 0 14px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.arrow-btn svg { width: 32px; height: 32px; transition: transform 0.1s; }
.arrow-btn:hover svg { transform: scale(1.2); }
.arrow-btn:hover svg polygon { fill: #ff1a1a; }


.cards-track { flex: 1; position: relative; height: 380px; }

.card {
  position: absolute;
  top: 50%;
  width: 220px;
  height: 320px;
  margin-top: -160px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  will-change: transform, opacity, left, width, height;
  transition:
    left      0.45s cubic-bezier(.4,0,.2,1),
    transform 0.45s cubic-bezier(.4,0,.2,1),
    opacity   0.45s cubic-bezier(.4,0,.2,1),
    width     0.45s cubic-bezier(.4,0,.2,1),
    height    0.45s cubic-bezier(.4,0,.2,1),
    margin-top 0.45s cubic-bezier(.4,0,.2,1),
    box-shadow 0.45s;
}

.card img { width: 100%; height: 100%; object-fit: cover; display: block; }

.card-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 64px;
}


.bottombar {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 8px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.bottom-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.dots { display: flex; gap: 6px; align-items: center; }

.dot {
  width: 20px; height: 2px;
  background: rgba(255,255,255,0.2);
  transition: background 0.2s, width 0.2s;
}

.dot.active { background: #ff1a1a; width: 32px; }

.quotebar {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 10px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  position: relative;
  z-index: 2;
}

.quote-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  text-align: center;
  transition: opacity 0.3s ease;
}
