
/* ============================================================
   ProjectV — Modern GTA5 RP Theme
   ============================================================ */

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  --neon-blue:   #00d4ff;
  --neon-blue2:  #0093ff;
  --neon-purple: #7b2ff7;
  --dark-bg:     #07070f;
  --dark-card:   #0e0e1a;
  --dark-border: rgba(0, 212, 255, 0.15);
  --glass-bg:    rgba(14, 14, 26, 0.75);
  --text-main:   #e8eaf0;
  --text-dim:    #8a8fa8;
  --glow-sm:     0 0 8px rgba(0, 212, 255, 0.4);
  --glow-md:     0 0 20px rgba(0, 212, 255, 0.5), 0 0 40px rgba(0, 212, 255, 0.2);
  --glow-lg:     0 0 30px rgba(0, 212, 255, 0.7), 0 0 60px rgba(0, 212, 255, 0.3);
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--dark-bg);
  color: var(--text-main);
  font-family: "Open Sans", sans-serif;
  overflow-x: hidden;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0a0a12; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--neon-blue2), var(--neon-blue));
  border-radius: 3px;
}

a {
  color: var(--neon-blue);
  transition: all 0.3s ease;
}
a:hover, a:focus {
  color: #fff;
  text-decoration: none;
  outline: none;
}

p { padding: 0; margin: 0 0 20px 0; }

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  margin: 0 0 20px 0;
  padding: 0;
  color: #fff;
}

/* ── Gradient Text Utility ──────────────────────────────────── */
.gradient {
  background: linear-gradient(90deg, #fff 30%, var(--neon-blue) 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Preloader ──────────────────────────────────────────────── */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--dark-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader::before {
  content: "Project Five";
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: var(--neon-blue);
  text-shadow: var(--glow-md);
  position: fixed;
  top: calc(50% + 45px);
  left: 50%;
  transform: translateX(-50%);
  letter-spacing: 4px;
}

#preloader::after {
  content: "";
  position: fixed;
  top: calc(50% - 35px);
  left: calc(50% - 35px);
  border: 3px solid rgba(0, 212, 255, 0.1);
  border-top: 3px solid var(--neon-blue);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ── Back to Top ────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  display: none;
  background: linear-gradient(135deg, var(--neon-blue2), var(--neon-blue));
  color: #fff;
  width: 42px;
  height: 42px;
  text-align: center;
  line-height: 42px;
  font-size: 16px;
  border-radius: 4px;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  box-shadow: var(--glow-sm);
  transition: all 0.3s;
}
.back-to-top:hover { box-shadow: var(--glow-md); color: #fff; transform: translateY(-3px); }
.back-to-top i { padding-top: 0; color: #fff; line-height: 42px; }

/* ── Status Bar ─────────────────────────────────────────────── */
#status-bar {
  background: rgba(0, 0, 0, 0.95);
  border-bottom: 1px solid var(--dark-border);
  padding: 6px 0;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
#status-bar .status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #00ff88;
  border-radius: 50%;
  margin-right: 8px;
  box-shadow: 0 0 8px #00ff88;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px #00ff88; }
  50% { opacity: 0.5; box-shadow: 0 0 2px #00ff88; }
}
#status-bar .status-online { color: #00ff88; }
#status-bar .status-sep { margin: 0 16px; opacity: 0.3; }

/* ── Header ─────────────────────────────────────────────────── */
#header {
  height: 68px;
  position: fixed;
  left: 0;
  top: 36px;
  right: 0;
  z-index: 997;
  transition: top 0.4s ease, height 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
  background: transparent;
}
#header.header-scrolled {
  background: rgba(7, 7, 15, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--dark-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  top: 0;
  height: 60px;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo { line-height: 1; flex-shrink: 0; text-decoration: none; }
.logo {
  width: auto;
  height: 48px;
  filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.3));
  transition: filter 0.3s;
  display: block;
}
.logo:hover { filter: drop-shadow(0 0 16px rgba(0, 212, 255, 0.7)); }

/* ── Navigation ─────────────────────────────────────────────── */
#nav-menu-container { display: flex; align-items: center; }

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2px;
}
.nav-menu > li { position: relative; }

.nav-menu > li > a {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  padding: 8px 12px;
  display: block;
  white-space: nowrap;
  position: relative;
  transition: color 0.2s;
}
.nav-menu > li > a::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--neon-blue);
  box-shadow: var(--glow-sm);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.nav-menu > li:hover > a,
.nav-menu > .menu-active > a { color: var(--neon-blue); }
.nav-menu > li:hover > a::after,
.nav-menu > .menu-active > a::after { transform: scaleX(1); }

/* Dropdown */
.nav-menu ul {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  list-style: none;
  margin: 0;
  padding: 8px 0;
  background: rgba(8, 8, 20, 0.98);
  border: 1px solid var(--dark-border);
  border-radius: 6px;
  min-width: 190px;
  display: none;
  z-index: 99;
  box-shadow: 0 16px 48px rgba(0,0,0,0.7), var(--glow-sm);
  backdrop-filter: blur(20px);
}
.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul { display: block; }
.nav-menu ul ul { top: 0; left: 100%; }
.nav-menu ul li > a {
  display: block;
  padding: 9px 18px;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}
.nav-menu ul li > a:hover { color: var(--neon-blue); padding-left: 24px; }

/* CTA button */
.nav-menu .nav-cta > a {
  background: var(--neon-blue) !important;
  color: #000 !important;
  padding: 7px 20px !important;
  border-radius: 4px;
  font-weight: 700 !important;
  letter-spacing: 1.5px;
  margin-left: 14px;
  transition: background 0.2s, box-shadow 0.2s;
}
.nav-menu .nav-cta > a::after { display: none !important; }
.nav-menu .nav-cta:hover > a {
  background: #fff !important;
  color: #000 !important;
  box-shadow: var(--glow-md);
}

/* ── Mobile nav toggle ──────────────────────────────────────── */
#mobile-nav-toggle {
  position: fixed;
  right: 16px;
  top: 48px;
  z-index: 999;
  border: 1px solid var(--dark-border);
  background: rgba(7, 7, 15, 0.9);
  backdrop-filter: blur(12px);
  font-size: 18px;
  display: none;
  cursor: pointer;
  outline: none;
  width: 42px;
  height: 42px;
  border-radius: 6px;
  line-height: 42px;
  text-align: center;
  padding: 0;
  transition: border-color 0.2s, box-shadow 0.2s;
}
#mobile-nav-toggle:hover { border-color: var(--neon-blue); box-shadow: var(--glow-sm); }
#mobile-nav-toggle i { color: var(--neon-blue); line-height: inherit; }

/* ── Mobile nav panel ───────────────────────────────────────── */
#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 80px;
  bottom: 0;
  z-index: 998;
  background: rgba(5, 5, 14, 0.99);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  left: -300px;
  width: 300px;
  overflow-y: auto;
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-right: 1px solid var(--dark-border);
}
#mobile-nav ul { padding: 0; margin: 0; list-style: none; }
#mobile-nav ul li { position: relative; }
#mobile-nav ul li a {
  color: rgba(255,255,255,0.7);
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  padding: 15px 24px;
  display: block;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s, padding-left 0.2s;
}
#mobile-nav ul li a:hover,
#mobile-nav ul li.menu-active > a,
#mobile-nav ul li.menu-item-active > a { color: var(--neon-blue); }
#mobile-nav ul li a:hover { padding-left: 32px; }
#mobile-nav ul li li a { padding-left: 40px; font-size: 11px; border-bottom: none; }
#mobile-nav ul .menu-has-children i {
  position: absolute; right: 0; z-index: 99;
  padding: 18px 22px; cursor: pointer; color: var(--text-dim);
}

#mobile-body-overly {
  width: 100%; height: 100%;
  z-index: 997; top: 0; left: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  display: none;
}
body.mobile-nav-active { overflow: hidden; }
body.mobile-nav-active #mobile-nav { left: 0; }

@media (max-width: 991px) {
  .header-inner { padding: 0 20px; }
  #nav-menu-container { display: none !important; }
  #mobile-nav-toggle { display: block; }
}

/* ── Intro / Hero ───────────────────────────────────────────── */
#intro {
  display: table;
  width: 100%;
  height: 100vh;
  background: #000;
  position: relative;
  overflow: hidden;
}

/* Scanline overlay */
#intro::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.08) 2px,
    rgba(0, 0, 0, 0.08) 4px
  );
  pointer-events: none;
  z-index: 5;
}

/* Particles canvas */
#particles-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

#intro .carousel-item {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#intro .carousel-item::before {
  content: '';
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(7, 7, 30, 0.75) 50%,
    rgba(0, 0, 0, 0.9) 100%
  );
  position: absolute;
  inset: 0;
  z-index: 1;
}

#intro .carousel-background img { max-width: 100%; }

#intro .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0;
  z-index: 3;
}

#intro .carousel-content { text-align: center; padding: 0 20px; }

/* Hero corner decorations */
#intro .carousel-content::before,
#intro .carousel-content::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  opacity: 0.5;
}
#intro .carousel-content::before {
  top: -20px;
  left: calc(50% - 200px);
  border-top: 2px solid var(--neon-blue);
  border-left: 2px solid var(--neon-blue);
}
#intro .carousel-content::after {
  bottom: -20px;
  right: calc(50% - 200px);
  border-bottom: 2px solid var(--neon-blue);
  border-right: 2px solid var(--neon-blue);
}

#intro .carousel-content { position: relative; }

#intro h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 56px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.1;
  text-shadow: 0 0 40px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--neon-blue);
  text-shadow: var(--glow-sm);
  margin-bottom: 16px;
  display: block;
}

#intro p {
  width: 70%;
  margin: 0 auto 32px;
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  line-height: 1.7;
}

/* Carousel indicators */
.carousel-indicators { bottom: 24px; z-index: 4; }
.carousel-indicators li {
  width: 30px;
  height: 3px;
  border-radius: 2px;
  background-color: rgba(255,255,255,0.3);
  border: none;
  transition: all 0.3s;
}
.carousel-indicators .active {
  background-color: var(--neon-blue);
  box-shadow: var(--glow-sm);
  width: 48px;
}

#intro .carousel-fade { overflow: hidden; }
#intro .carousel-fade .carousel-inner .carousel-item { transition-property: opacity; }
#intro .carousel-fade .carousel-inner .carousel-item,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right { opacity: 0; }
#intro .carousel-fade .carousel-inner .active,
#intro .carousel-fade .carousel-inner .carousel-item-next.carousel-item-left,
#intro .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-right {
  opacity: 1; transition: 0.8s;
}
#intro .carousel-fade .carousel-inner .carousel-item-next,
#intro .carousel-fade .carousel-inner .carousel-item-prev,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#intro .carousel-control-prev,
#intro .carousel-control-next {
  width: 8%;
  z-index: 4;
}
#intro .carousel-control-next-icon,
#intro .carousel-control-prev-icon {
  background: none;
  font-size: 28px;
  line-height: 1;
  color: rgba(255,255,255,0.5);
  text-shadow: var(--glow-sm);
  transition: all 0.3s;
}
#intro .carousel-control-prev:hover .carousel-control-prev-icon,
#intro .carousel-control-next:hover .carousel-control-next-icon {
  color: var(--neon-blue);
}

/* Hero CTA button */
#intro .btn-get-started {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  padding: 14px 40px;
  border-radius: 2px;
  transition: all 0.3s;
  color: #fff;
  background: linear-gradient(90deg, var(--neon-blue2), var(--neon-blue));
  border: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 147, 255, 0.4);
}
#intro .btn-get-started::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}
#intro .btn-get-started:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 147, 255, 0.6);
  color: #fff;
}
#intro .btn-get-started:hover::before { left: 100%; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.6;
}
.scroll-indicator span {
  font-family: "Montserrat", sans-serif;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--neon-blue);
}
.scroll-indicator .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--neon-blue), transparent);
  animation: scroll-anim 1.5s ease-in-out infinite;
}
@keyframes scroll-anim {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.3; }
}

/* ── Section Headers ────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 40px; }

.section-header h3 {
  font-size: 30px;
  background: linear-gradient(90deg, var(--neon-blue2) 0%, var(--neon-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 900;
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
}

.section-header h3::before {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  background: var(--dark-border);
  bottom: 0;
  left: 0;
}
.section-header h3::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-blue2), var(--neon-blue));
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: var(--glow-sm);
}

.section-header p {
  color: var(--text-dim);
  text-align: center;
  padding-bottom: 10px;
  font-size: 15px;
}

/* ── About Section ──────────────────────────────────────────── */
#about {
  background: url("../img/background05.png") center top no-repeat fixed;
  background-size: cover;
  padding: 100px 0 80px;
  position: relative;
}

#about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7,7,15,0.93) 0%, rgba(14,14,40,0.88) 100%);
  z-index: 1;
}
#about .container { position: relative; z-index: 2; }

.premier-titre h3 {
  font-size: 38px !important;
  letter-spacing: 6px !important;
}
.premier-titre p { font-size: 16px; color: var(--text-dim) !important; }

#about .about-col {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--dark-border);
  border-radius: 6px;
  margin-bottom: 24px;
  transition: all 0.4s ease;
  position: relative;
  min-height: 430px;
}
#about .about-col:hover {
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.15), 0 20px 60px rgba(0,0,0,0.4);
  transform: translateY(-6px);
}

#about .about-col .img {
  position: relative;
  overflow: hidden;
  border-radius: 6px 6px 0 0;
}
#about .about-col .img img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
  filter: brightness(0.8) saturate(1.1);
}
#about .about-col:hover .img img { transform: scale(1.05); filter: brightness(1) saturate(1.2); }

/* Icon sits between the image and text, centred on the card */
#about .about-col .icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, var(--neon-blue2), var(--neon-blue));
  border-radius: 4px;
  border: 3px solid var(--dark-card);
  margin: -30px auto 0;
  transition: all 0.3s;
  box-shadow: var(--glow-sm);
  z-index: 2;
}
#about .about-col:hover .icon {
  box-shadow: var(--glow-md);
  transform: scale(1.1);
}
#about .about-col .iconesvg {
  font-size: 28px;
  color: #fff !important;
  --ionicon-stroke-width: 32px;
}

#about .about-col h2 {
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  padding: 0;
  margin: 16px 0 12px;
}
#about .about-col h2 div:hover { cursor: pointer; color: var(--neon-blue); }

#about .about-col p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-dim);
  margin-bottom: 0;
  padding: 0 20px 24px;
  text-align: center;
}

/* ── Services Section ───────────────────────────────────────── */
#services {
  background: url("../img/background-main.png") center top no-repeat fixed;
  background-size: cover;
  padding: 100px 0 80px;
  position: relative;
}
#services::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7,7,20,0.92) 0%, rgba(10,10,30,0.88) 100%);
}
#services .container { position: relative; z-index: 1; }

#services .box {
  background: var(--glass-bg);
  border: 1px solid var(--dark-border);
  border-radius: 6px;
  padding: 28px 24px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
#services .box:hover {
  border-color: rgba(0, 212, 255, 0.5);
  background: rgba(0, 212, 255, 0.06);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4), 0 0 20px rgba(0,212,255,0.1);
}

#services .icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid var(--dark-border);
  border-radius: 6px;
  transition: all 0.3s;
}
#services .box:hover .icon {
  background: rgba(0, 212, 255, 0.2);
  box-shadow: var(--glow-sm);
}
#services .icon i {
  background: linear-gradient(90deg, var(--neon-blue2), var(--neon-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 22px;
  line-height: 1;
  transition: all 0.3s;
  float: none;
}

#services .content { flex: 1; }
#services .title {
  margin: 0 0 8px;
  font-weight: 700;
  font-size: 15px;
}
#services .title a { color: #fff; transition: color 0.3s; }
#services .box:hover .title a { color: var(--neon-blue); }

#services .description {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-dim);
  margin-bottom: 0;
  margin-left: 0;
}

/* ── Call to Action (Discord) ───────────────────────────────── */
#call-to-action {
  background: linear-gradient(135deg, rgba(0,0,0,0.95) 0%, rgba(10,5,25,0.95) 100%),
    url(../img/background05.png) fixed center center;
  background-size: cover;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
}

#call-to-action::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(88,101,242,0.12) 0%, transparent 70%);
  pointer-events: none;
}

#call-to-action h3 {
  color: #fff;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

#call-to-action .discord-wrapper {
  margin: 0 0 24px;
}
.discord-logo {
  font-size: 64px;
  color: #5865f2;
  filter: drop-shadow(0 0 20px rgba(88,101,242,0.6));
  transition: all 0.3s;
}
.discord-logo:hover {
  filter: drop-shadow(0 0 30px rgba(88,101,242,0.9));
  transform: scale(1.1);
}

#call-to-action .cta-btn {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  display: inline-block;
  padding: 14px 40px;
  border-radius: 2px;
  transition: all 0.3s;
  background: #5865f2;
  color: #fff;
  border: none;
  box-shadow: 0 4px 20px rgba(88,101,242,0.4);
  position: relative;
  overflow: hidden;
}
#call-to-action .cta-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}
#call-to-action .cta-btn:hover {
  background: #4752c4;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(88,101,242,0.6);
  color: #fff;
}
#call-to-action .cta-btn:hover::before { left: 100%; }

/* ── Facts / Statistics ─────────────────────────────────────── */
#facts {
  background: url("../img/background06.jpg") center top no-repeat fixed;
  background-size: cover;
  padding: 100px 0 0;
  position: relative;
}
#facts::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(7, 7, 15, 0.88);
  z-index: 1;
}
#facts .container { position: relative; z-index: 2; }

.counter-center { justify-content: center; }

#facts .counters > div {
  padding: 30px 20px;
  position: relative;
}

#facts .counters > div::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--dark-border);
}
#facts .counters > div:last-child::after { display: none; }

#facts .counters span {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 52px;
  display: block;
  background: linear-gradient(90deg, var(--neon-blue2), var(--neon-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
  filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.3));
}

#facts .counters p {
  padding: 0;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
}

#facts .facts-img {
  text-align: center;
  padding-top: 60px;
  position: relative;
}
#facts .facts-img img {
  max-width: 100%;
  filter: drop-shadow(0 -20px 40px rgba(0, 212, 255, 0.1));
}

/* ── Section with Background ────────────────────────────────── */
.section-bg {
  background: linear-gradient(135deg, rgba(7,7,15,0.97), rgba(10,10,25,0.97)),
    url("../img/background-main.png") center top no-repeat fixed;
  background-size: cover;
}

/* ── Portfolio / Media ──────────────────────────────────────── */
#portfolio {
  padding: 100px 0 80px;
  position: relative;
  background: url("../img/background-main.png") center top no-repeat fixed;
  background-size: cover;
}
#portfolio::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(7, 7, 15, 0.92);
}
#portfolio .container { position: relative; z-index: 1; }

#portfolio .portfolio-container { margin-top: 8px; }

#portfolio .portfolio-item {
  position: relative;
  height: 240px;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 24px;
  border: 1px solid var(--dark-border);
  transition: all 0.3s;
}
#portfolio .portfolio-item:hover {
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

#portfolio .portfolio-item figure {
  background: #000;
  overflow: hidden;
  height: 240px;
  position: relative;
  margin: 0;
}
.img-fluid { max-width: 100%; height: 100%; object-fit: cover; }

#portfolio .portfolio-item figure:hover img {
  opacity: 0.35;
  transform: scale(1.05);
  transition: all 0.4s;
}
#portfolio .portfolio-item figure img { transition: all 0.4s; }

#portfolio .portfolio-item figure .link-preview,
#portfolio .portfolio-item figure .link-details {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  line-height: 1;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--neon-blue2), var(--neon-blue));
  border-radius: 50%;
  transition: all 0.3s;
  box-shadow: var(--glow-sm);
}
#portfolio .portfolio-item figure .link-preview i,
#portfolio .portfolio-item figure .link-details i {
  font-size: 20px;
  color: #fff;
  padding: 0;
}
#portfolio .portfolio-item figure .link-preview { left: 50%; top: 50%; }
#portfolio .portfolio-item figure .link-details { right: 50%; top: 50%; }

#portfolio .portfolio-item figure:hover .link-preview {
  opacity: 1;
  left: calc(50% - 22px);
}
#portfolio .portfolio-item figure:hover .link-details {
  opacity: 1;
  right: calc(50% - 22px);
}

/* ── Team / Jobs ────────────────────────────────────────────── */
#team {
  background: url("../img/background05.png") center top no-repeat fixed;
  background-size: cover;
  padding: 100px 0 80px;
  position: relative;
}
#team::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(7, 7, 15, 0.9);
}
#team .container { position: relative; z-index: 1; }

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.job-category {
  background: var(--glass-bg);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  padding: 22px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.job-category:hover {
  border-color: rgba(0,212,255,0.35);
  box-shadow: var(--glow-sm);
}

.job-cat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--neon-blue);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--dark-border);
}
.job-cat-header i { font-size: 13px; flex-shrink: 0; }

.job-cat-items {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.jc-item {
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: var(--text-main);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 3px;
  padding: 4px 10px;
  transition: all 0.2s;
  cursor: default;
}
.jc-item:hover {
  color: var(--neon-blue);
  border-color: rgba(0,212,255,0.35);
  background: rgba(0,212,255,0.07);
}

@media (max-width: 991px) { .jobs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px)  { .jobs-grid { grid-template-columns: 1fr; } }

/* ── Footer ─────────────────────────────────────────────────── */
#footer {
  background: #000;
  padding: 40px 0 20px;
  color: var(--text-dim);
  font-size: 13px;
  border-top: 1px solid var(--dark-border);
}
#footer .footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0 20px;
}
#footer .footer-logo img { height: 40px; opacity: 0.7; transition: opacity 0.3s; }
#footer .footer-logo img:hover { opacity: 1; }

#footer .footer-copy {
  text-align: center;
  color: var(--text-dim);
  font-size: 12px;
  letter-spacing: 1px;
  margin-top: 20px;
}
#footer .footer-copy a { color: var(--neon-blue); }
#footer .footer-copy a:hover { color: #fff; }

#footer .footer-links-row {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-links-row li a {
  color: var(--text-dim);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
}
#footer .footer-links-row li a:hover { color: var(--neon-blue); }

/* ── Animations ─────────────────────────────────────────────── */
@keyframes glitch {
  0%, 90%, 100% { text-shadow: 0 0 10px rgba(0,212,255,0.4); transform: none; }
  92% { text-shadow: -2px 0 #f00, 2px 0 var(--neon-blue); transform: skewX(-1deg); }
  94% { text-shadow: 2px 0 #f00, -2px 0 var(--neon-blue); transform: skewX(1deg); }
  96% { text-shadow: -2px 0 #0ff, 2px 0 #f00; transform: none; }
}

.glitch-text { animation: glitch 8s ease-in-out infinite; }

@keyframes neon-pulse {
  0%, 100% { box-shadow: var(--glow-sm); }
  50% { box-shadow: var(--glow-md); }
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 991px) {
  #header { top: 28px; }
  #header.header-scrolled { top: 0; }
  #nav-menu-container { display: none; }
  #mobile-nav-toggle { display: block; top: calc(28px + 10px); }
  #intro h2 { font-size: 36px; }
  #intro p { width: 90%; }
  #facts .counters > div::after { display: none; }
}

@media (max-width: 767px) {
  #status-bar { font-size: 10px; padding: 5px 10px; }
  #status-bar .status-sep { margin: 0 8px; }
  #intro h2 { font-size: 28px; letter-spacing: 1px; }
  #intro p { width: 95%; font-size: 13px; }
  .premier-titre h3 { font-size: 26px !important; }
  #facts .counters span { font-size: 36px; }
  #team .member { height: auto; padding: 14px; }
  #team .member .member-info { position: relative; }
}

@media (max-width: 480px) {
  #status-bar .status-online-text { display: none; }
  #intro h2 { font-size: 24px; }
  .section-header h3 { font-size: 22px; letter-spacing: 2px; }
}

/* ── Présentation Section ───────────────────────────────────── */
#presentation {
  background: url("../img/background05.png") center top no-repeat fixed;
  background-size: cover;
  padding: 100px 0 80px;
  position: relative;
}
#presentation::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7,7,15,0.96) 0%, rgba(10,10,30,0.9) 100%);
}
#presentation .container { position: relative; z-index: 1; }

.pres-row { gap: 40px 0; }

/* Text column */
.pres-text .cin-tag { margin-bottom: 14px; }

.pres-text h2 {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1.15;
  margin-bottom: 24px;
}

.pres-text p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.pres-italic {
  font-style: italic;
  color: rgba(255,255,255,0.5) !important;
  border-left: 2px solid var(--neon-blue);
  padding-left: 14px;
  margin: 20px 0 !important;
}

.pres-jobs-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--neon-blue);
  margin-bottom: 12px !important;
}

.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.job-tag {
  font-size: 11px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-main);
  background: rgba(0,212,255,0.07);
  border: 1px solid rgba(0,212,255,0.18);
  border-radius: 4px;
  padding: 4px 10px;
  transition: all 0.2s;
  cursor: default;
}
.job-tag:hover {
  background: rgba(0,212,255,0.15);
  border-color: rgba(0,212,255,0.5);
  color: var(--neon-blue);
}

.pres-outro {
  font-size: 13px !important;
  color: rgba(255,255,255,0.45) !important;
  font-style: italic;
  margin-bottom: 28px !important;
}

.btn-pres {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--neon-blue);
  border: 1px solid var(--neon-blue);
  padding: 13px 28px;
  border-radius: 2px;
  transition: all 0.3s;
}
.btn-pres:hover {
  background: var(--neon-blue);
  color: #000;
  box-shadow: var(--glow-md);
}

/* Image grid */
.pres-img-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pres-img-main {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--dark-border);
  position: relative;
}
.pres-img-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
  pointer-events: none;
}
.pres-img-main img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
  filter: brightness(0.85) saturate(1.1);
}
.pres-img-main:hover img { transform: scale(1.03); }

.pres-img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.pres-img-row img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
  border: 1px solid var(--dark-border);
  transition: all 0.4s;
  filter: brightness(0.8) saturate(1.1);
}
.pres-img-row img:hover {
  filter: brightness(1) saturate(1.3);
  border-color: rgba(0,212,255,0.4);
  box-shadow: 0 0 16px rgba(0,212,255,0.2);
}

/* ── Services Values Row ────────────────────────────────────── */
.services-values {
  display: flex;
  gap: 1px;
  margin-top: 48px;
  border: 1px solid var(--dark-border);
  border-radius: 6px;
  overflow: hidden;
}

.sval-item {
  flex: 1;
  padding: 30px 24px;
  background: rgba(0,212,255,0.04);
  text-align: center;
  border-right: 1px solid var(--dark-border);
  transition: all 0.3s;
}
.sval-item:last-child { border-right: none; }
.sval-item:hover { background: rgba(0,212,255,0.09); }

.sval-item i {
  font-size: 24px;
  background: linear-gradient(90deg, var(--neon-blue2), var(--neon-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
  display: block;
}

.sval-item h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}

.sval-item p {
  font-size: 12px;
  color: var(--text-dim);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .services-values { flex-direction: column; }
  .sval-item { border-right: none; border-bottom: 1px solid var(--dark-border); }
  .sval-item:last-child { border-bottom: none; }
  .pres-text h2 { font-size: 28px; }
  .pres-img-main img { height: 200px; }
  .pres-img-row img { height: 110px; }
}

/* ── Cinematic Strip (3 GTA5 panels) ────────────────────────── */
#cinematic-strip {
  display: flex;
  height: 340px;
}

.cin-panel {
  flex: 1;
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  cursor: default;
  transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.cin-panel:hover { flex: 1.8; }

.cin-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.15) 100%
  );
  transition: background 0.4s;
}
.cin-panel:hover .cin-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(7, 7, 30, 0.5) 50%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.cin-content {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  padding: 0 28px;
  transform: translateY(10px);
  opacity: 0.85;
  transition: all 0.4s ease;
}
.cin-panel:hover .cin-content {
  transform: translateY(0);
  opacity: 1;
}

.cin-tag {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--neon-blue);
  text-shadow: var(--glow-sm);
  margin-bottom: 8px;
  border-left: 2px solid var(--neon-blue);
  padding-left: 8px;
}

.cin-content h3 {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cin-content p {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Vertical dividers between panels */
.cin-panel + .cin-panel::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(0, 212, 255, 0.2);
  z-index: 2;
}

/* ── GTA5 Wide Banner ───────────────────────────────────────── */
#gta-banner {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.gta-banner-bg {
  position: absolute;
  inset: 0;
  background: url("../img/background06.jpg") center center / cover no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
  filter: brightness(0.45) saturate(1.2);
}
#gta-banner:hover .gta-banner-bg { transform: scale(1); }

#gta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(7, 7, 30, 0.5) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 1;
}

/* Neon side lines */
#gta-banner::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 4px;
  background: linear-gradient(to bottom, transparent, var(--neon-blue), transparent);
  z-index: 2;
}

.gta-banner-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 0 20px;
}

.gta-banner-content .cin-tag { margin-bottom: 16px; border: none; padding: 0; }

.gta-banner-content h2 {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.gta-banner-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.btn-banner {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  padding: 14px 44px;
  border: 2px solid var(--neon-blue);
  color: #fff;
  border-radius: 2px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.btn-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--neon-blue);
  transform: translateX(-101%);
  transition: transform 0.3s ease;
  z-index: -1;
}
.btn-banner:hover {
  color: #000;
  box-shadow: var(--glow-md);
}
.btn-banner:hover::before { transform: translateX(0); }

/* ── Discord Final CTA ──────────────────────────────────────── */
#call-to-action {
  position: relative;
  background: #000;
  padding: 100px 0 80px;
  overflow: hidden;
  border-top: 1px solid rgba(88, 101, 242, 0.25);
}

/* Animated background gradient */
#call-to-action::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(88,101,242,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 50%, rgba(0,212,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* Big glowing orb behind the logo */
.discord-glow-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(88,101,242,0.12) 0%, transparent 65%);
  pointer-events: none;
  animation: orb-pulse 4s ease-in-out infinite;
}
@keyframes orb-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50%       { transform: translate(-50%, -50%) scale(1.15); opacity: 0.6; }
}

.discord-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.discord-big-logo {
  font-size: 80px;
  color: #5865f2;
  filter: drop-shadow(0 0 30px rgba(88,101,242,0.7));
  margin: 16px 0 28px;
  animation: logo-float 3s ease-in-out infinite;
}
@keyframes logo-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

#call-to-action h2 {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}

#call-to-action > .discord-cta-inner > p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 48px;
}

/* Step indicators */
.discord-cta-steps {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}

.discord-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 24px;
  background: rgba(88,101,242,0.07);
  border: 1px solid rgba(88,101,242,0.2);
  border-radius: 4px;
  min-width: 150px;
  transition: all 0.3s;
}
.discord-step:hover {
  background: rgba(88,101,242,0.15);
  border-color: rgba(88,101,242,0.5);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(88,101,242,0.2);
}

.step-num {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 900;
  background: linear-gradient(90deg, #5865f2, #7289da);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.step-text {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

.discord-step-arrow {
  color: rgba(88,101,242,0.4);
  font-size: 14px;
  padding: 0 10px;
}

/* Main join button */
.discord-join-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #5865f2;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 18px 54px;
  border-radius: 4px;
  transition: all 0.3s;
  box-shadow: 0 4px 24px rgba(88,101,242,0.4);
}
.discord-join-btn ion-icon { font-size: 22px; }
.discord-join-btn:hover {
  background: #4752c4;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(88,101,242,0.6);
}

/* Two-button row */
.cta-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}

/* FiveM connect button */
.fivem-join-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 18px 40px;
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.2);
  transition: all 0.3s;
}
.fivem-join-btn i { font-size: 18px; }
.fivem-join-btn:hover {
  border-color: var(--neon-blue);
  color: var(--neon-blue);
  box-shadow: var(--glow-md);
  background: rgba(0,212,255,0.06);
}

.discord-hint {
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.3);
  margin: 0;
}
.discord-hint a {
  color: rgba(255,255,255,0.3);
  transition: color 0.3s;
}
.discord-hint a:hover { color: var(--neon-blue); }

@media (max-width: 575px) {
  .cta-buttons { flex-direction: column; width: 100%; }
  .discord-join-btn, .fivem-join-btn { width: 100%; justify-content: center; }
}

@media (max-width: 767px) {
  #call-to-action { padding: 60px 0; }
  #call-to-action h2 { font-size: 28px; }
  .discord-big-logo { font-size: 60px; }
  .discord-step { min-width: 120px; padding: 14px 16px; }
  .discord-step-arrow { display: none; }
  .discord-join-btn { padding: 16px 36px; font-size: 13px; }
}

/* ── Utility ─────────────────────────────────────────────────── */
.section-bg { background-color: var(--dark-card); }

.wow { visibility: hidden; }

/* WOW override — always visible if JS fails */
@media (prefers-reduced-motion: reduce) {
  .wow { visibility: visible !important; animation: none !important; }
}

@media (max-width: 767px) {
  #cinematic-strip { height: auto; flex-direction: column; }
  .cin-panel { height: 180px; flex: none !important; }
  .cin-content h3 { font-size: 16px; }
  #gta-banner { height: 300px; }
  .gta-banner-content h2 { font-size: 28px; }
}
