@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;600;800&family=Syncopate:wght@700&display=swap');
:root {
  --bg-dark: #0f111a;
  --bg-dark-grad: linear-gradient(135deg, #0b0c10 0%, #151828 100%);
  --cyan: #3EE9D6;
  --cyan-hover: #ffffff;
  --panel: rgba(20, 24, 38, 0.75);
  --border: rgba(255, 255, 255, 0.1);
  --text-main: #ffffff;
  --text-muted: #a0a5b5;
  --bg: #1b1e2b;
  --accent: var(--cyan);
  --accent-hover: var(--cyan-hover);
  --text: var(--text-muted);
  --border-solid: var(--border);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
}
body {
  background-color: #090C0D;
  background-repeat: no-repeat;
  background-size: contain;
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
}
body::-webkit-scrollbar {
  display: none;
}
body {
  user-select: none;
}
.bebas {
  font-family: 'Bebas Neue', display, sans-serif;
  letter-spacing: 2px;
}
.inter { font-family: 'Inter', sans-serif; }
.syncopate { font-family: 'Syncopate', sans-serif; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 30px; font-weight: 800; font-size: 14px; text-transform: uppercase;
  cursor: pointer; border-radius: 6px; transition: all 0.3s ease; text-decoration: none;
  border: none;
}
.btn:hover {
  transform: scale(1.05);
}
.btn-cyan {
  background-color: var(--cyan); color: #000; font-family: 'Inter', sans-serif;
  box-shadow: 0 0 15px rgba(62, 233, 214, 0.2);
}
.btn-cyan:hover { background-color: #fff; color: #000; box-shadow: 0 0 20px rgba(255, 255, 255, 0.5); }
.btn-white {
  background-color: #fff; color: var(--cyan); font-family: 'Inter', sans-serif;
}
.btn-white:hover { background-color: var(--cyan); color: #fff; }
.btn-discord {
  background-color: #5865F2; color: #fff; font-family: 'Inter', sans-serif;
  box-shadow: 0 0 15px rgba(88, 101, 242, 0.25);
}
.btn-discord:hover { background-color: #4752c4; color: #fff; }
.navbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 60px; background: rgba(0,0,0,0.4); border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
  position: relative; z-index: 100;
}
.navbar .logo { display: flex; align-items: center; gap: 15px; }
.logo-icon { width: 50px; height: 50px; }
.logo-text { line-height: 1; }
.nav-links { display: flex; gap: 35px; list-style: none; font-size: 14px; font-weight: 800; }
.nav-links a { color: #fff; text-decoration: none; transition: color 0.3s; }
.nav-links a:hover { color: var(--cyan); }
.nav-actions { display: flex; align-items: center; gap: 20px; }
.landing-hero {
  position: relative;
  min-height: 80vh;
  display: flex; align-items: center; justify-content: center;
  background: url('../backpage/background/background.png') no-repeat center center;
  background-size: cover;
  text-align: center;
}
.landing-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(15,17,26,0.3) 0%, rgba(15,17,26,0.85) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 10; max-width: 900px; padding: 0 20px; margin-top: -60px;
}
.hero-pretitle { font-size: 32px; letter-spacing: 3px; color: #fff; margin-bottom: 5px; }
.hero-title {
    font-size: 100px;
    line-height: .9;
    margin-bottom: 25px;
    color: #fff;
    text-shadow: 0px 4px 20px rgba(0, 0, 0, .5);
}
.hero-desc { font-size: 15px; color: #e0e0e0; line-height: 1.6; max-width: 700px; margin: 0 auto 40px; font-weight: 400; text-shadow: 0px 2px 4px rgba(0,0,0,0.8); }
.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}
.hero-actions .btn {
  padding: 16px 40px;
  font-weight: bold;
  border-radius: 4px;
  min-width: 180px;
}
.side-nav-left {
  position: absolute; left: 40px; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 30px; font-weight: 800; font-size: 16px; font-family: 'Space Mono', monospace; z-index: 15;
}
.side-nav-left a { color: var(--text-muted); cursor: pointer; transition: 0.3s; writing-mode: vertical-rl; transform: rotate(180deg); text-decoration: none; }
.side-nav-left a:hover, .side-nav-left a.active { color: #fff; }
.side-nav-right {
  position: absolute; right: 40px; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 15px; z-index: 15;
}
.side-icon {
  width: 45px; height: 45px; border-radius: 50%; background: #fff; color: #000; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px; cursor: pointer; transition: 0.3s; font-family: sans-serif; text-decoration: none;
}
.side-icon:hover { background: var(--cyan); color: #000; transform: scale(1.1); }
.section-pad { padding: 40px 20px; }
.section-title-wrap { text-align: center; margin-bottom: 0px; }
.section-title-wrap h2 { font-size: 40px; color: #fff; margin-bottom: 10px; }
.advanced-carousel-wrap {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.advanced-carousel-track {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
}
.carousel-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 340px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  transition: transform 0.5s ease, opacity 0.5s ease, left 0.5s ease;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  cursor: default;
}
.carousel-slide .carousel-img {
  width: 100%;
  height: 200px;
  background: #222;
  border-radius: 8px 8px 0 0;
  object-fit: cover;
}
.carousel-slide h4 { color: #fff; padding: 0 20px; margin: 0; }
.carousel-slide p { padding: 0 20px; margin: 0; font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.carousel-version {
  display: inline-block;
  margin: 0 20px;
  padding: 2px 10px;
  background: rgba(62,233,214,0.12);
  border: 1px solid rgba(62,233,214,0.35);
  border-radius: 4px;
  color: #3EE9D6;
  font-size: 12px;
  letter-spacing: 1px;
  width: fit-content;
}
.carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 3;
  transform: translate(-50%, -50%) scale(1);
}
.carousel-slide.prev {
  opacity: 0.45;
  pointer-events: auto;
  z-index: 2;
  left: 18%;
  transform: translate(-50%, -50%) scale(0.85);
}
.carousel-slide.next {
  opacity: 0.45;
  pointer-events: auto;
  z-index: 2;
  left: 82%;
  transform: translate(-50%, -50%) scale(0.85);
}
.carousel-slide.hidden-left {
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  left: 0%;
  transform: translate(-50%, -50%) scale(0.7);
}
.carousel-slide.hidden-right {
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  left: 100%;
  transform: translate(-50%, -50%) scale(0.7);
}
.carousel-nav-btn {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--panel);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  z-index: 10;
  display: flex; align-items: center; justify-content: center;
  transition: 0.3s;
}
.carousel-nav-btn:hover { border-color: var(--cyan); color: var(--cyan); }
.carousel-dots {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background 0.3s;
}
.dot.active { background: var(--cyan); }
@media (max-width: 768px) {
  .navbar { padding: 16px 20px; }
  .nav-links { display: none; }
  .hero-title { font-size: 64px; }
  .carousel-slide.prev, .carousel-slide.next { opacity: 0; pointer-events: none; }
  .prev-btn, .next-btn { display: none; }
  .advanced-carousel-track { height: 380px; }
  .side-nav-left, .side-nav-right { display: none; }
}
.info-boxes-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 30px; align-items: start; max-width: 1400px; margin: 0 auto; padding: 0px 20px; }
.info-col { display: flex; flex-direction: column; gap: 20px; }
.info-box { background: var(--panel); border: 1px solid var(--border); padding: 25px; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); transition: 0.3s; }
.info-box:hover { border-color: var(--cyan); }
.info-box h4 { font-size: 24px; color: #fff; margin-bottom: 10px; }
.info-box p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }
.info-center-feature { width: 400px; height: 600px; background: url('../backpage/performances.webp') center/cover; border-radius: 12px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.info-center-feature::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(62,233,214,0.2) 100%); }
@media (max-width: 1024px) { .info-boxes-grid { grid-template-columns: 1fr; } .info-center-feature { width: 100%; height: 300px; } }
