/* ── RESET & BASE ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:   #0a0a0a;
  --dark:    #111111;
  --card:    #181818;
  --border:  #222222;
  --yellow:  #f0c040;
  --yellow2: #e8a800;
  --white:   #ffffff;
  --gray:    #888888;
  --font-head: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── BUTTONS ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: var(--font-head);
  font-size: 18px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all .25s;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}
.btn-primary:hover {
  background: var(--yellow2);
  border-color: var(--yellow2);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn-outline:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  transform: translateY(-2px);
}

.full-width { width: 100%; justify-content: center; }

/* ── SECTION LABELS ───────────────────────────────────────────── */
.section-tag {
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.section-title span { color: var(--yellow); }
.section-title.centered { text-align: center; }

/* ── NAVBAR ───────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background .3s, backdrop-filter .3s;
  padding: 0 24px;
}

#navbar.scrolled {
  background: rgba(10,10,10,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 28px;
  letter-spacing: 2px;
}
.nav-logo span { color: var(--yellow); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  transition: color .2s;
}
.nav-links a:hover { color: var(--yellow); }

.nav-cta {
  background: var(--yellow) !important;
  color: var(--black) !important;
  padding: 10px 20px;
  border-radius: 4px;
  font-family: var(--font-head);
  font-size: 16px;
  letter-spacing: 1px;
}
.nav-cta:hover { background: var(--yellow2) !important; color: var(--black) !important; }

.nav-burger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: rgba(10,10,10,.98);
  padding: 16px 24px 24px;
  gap: 16px;
  border-top: 1px solid var(--border);
}
.nav-mobile a {
  font-size: 20px;
  font-family: var(--font-head);
  letter-spacing: 2px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  color: rgba(255,255,255,.8);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile.open { display: flex; }

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 45%;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,.3) 0%,
    rgba(10,10,10,.15) 40%,
    rgba(10,10,10,.85) 80%,
    rgba(10,10,10,1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-location {
  font-size: 13px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 8px;
  font-family: var(--font-head);
}

.hero-name {
  font-family: var(--font-head);
  font-size: clamp(60px, 10vw, 120px);
  line-height: .9;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 4px 30px rgba(0,0,0,.5);
}

.hero-nickname {
  font-family: var(--font-head);
  font-size: clamp(22px, 4vw, 42px);
  color: var(--yellow);
  letter-spacing: 3px;
  font-weight: 400;
  margin-bottom: 8px;
}

.hero-division {
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 32px;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.4);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: .4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ── STATS BAR ────────────────────────────────────────────────── */
.stats-bar {
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 24px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 48px;
}

.stat-num {
  font-family: var(--font-head);
  font-size: 48px;
  color: var(--black);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(0,0,0,.6);
  font-weight: 600;
}

.stat-divider {
  font-size: 20px;
  color: rgba(0,0,0,.3);
}

/* ── ABOUT ────────────────────────────────────────────────────── */
.about {
  padding: 100px 0;
  background: var(--dark);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: top;
  border-radius: 2px;
  filter: grayscale(20%);
}

.about-image-border {
  position: absolute;
  inset: -12px;
  border: 2px solid var(--yellow);
  border-radius: 2px;
  z-index: -1;
  opacity: .4;
}

.about-text p {
  color: rgba(255,255,255,.65);
  margin-bottom: 16px;
  font-size: 15px;
}

.about-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
}

.detail { display: flex; flex-direction: column; gap: 4px; }

.detail-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
}

.detail-value {
  font-family: var(--font-head);
  font-size: 20px;
  color: var(--white);
  letter-spacing: 1px;
}

.about-socials { display: flex; gap: 16px; }

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--yellow);
  font-size: 14px;
  font-weight: 500;
  transition: opacity .2s;
}
.social-link:hover { opacity: .75; }
.social-link svg { width: 20px; height: 20px; }

/* ── FIGHT RECORD ─────────────────────────────────────────────── */
.record {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.record-bg {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(240,192,64,.02) 40px,
      rgba(240,192,64,.02) 80px
    );
}

.record-table-wrap {
  overflow-x: auto;
  margin-top: 40px;
}

.record-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.record-table th {
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-head);
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 20px;
  text-align: left;
}

.record-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  color: rgba(255,255,255,.8);
}

.record-table tr:hover td { background: var(--card); }

.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 3px;
  font-family: var(--font-head);
  font-size: 14px;
  letter-spacing: 1px;
}

.badge.win  { background: rgba(74,222,128,.15); color: #4ade80; border: 1px solid rgba(74,222,128,.3); }
.badge.loss { background: rgba(248,113,113,.15); color: #f87171; border: 1px solid rgba(248,113,113,.3); }
.badge.nc   { background: rgba(156,163,175,.15); color: #9ca3af; border: 1px solid rgba(156,163,175,.3); }

.record-note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--gray);
  font-style: italic;
}

/* ── GALLERY ──────────────────────────────────────────────────── */
.gallery-section {
  padding: 100px 0;
  background: var(--dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 48px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease, filter .4s ease;
  filter: grayscale(20%);
}

.gallery-item:hover img {
  transform: scale(1.07);
  filter: grayscale(0%);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(240,192,64,0);
  transition: background .3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-item-overlay {
  background: rgba(240,192,64,.15);
}

.gallery-more {
  text-align: center;
  margin-top: 40px;
}

/* ── VIDEOS ───────────────────────────────────────────────────── */
.videos-section {
  padding: 100px 0;
  background: var(--black);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.video-item {
  position: relative;
  aspect-ratio: 9/16;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  background: var(--card);
}

.video-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s;
}

.video-item:hover .video-overlay { background: rgba(0,0,0,.15); }

.play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(240,192,64,.9);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s, background .2s;
}

.play-btn svg {
  width: 24px;
  height: 24px;
  fill: var(--black);
  margin-left: 4px;
}

.video-item:hover .play-btn {
  transform: scale(1.1);
  background: var(--yellow);
}

/* ── VIDEO CAROUSEL ───────────────────────────────────────────── */
.carousel-wrap {
  position: relative;
  margin-top: 48px;
  overflow: hidden;
  border-radius: 8px;
}

.carousel {
  display: flex;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

.car-slide {
  min-width: 100%;
  position: relative;
  aspect-ratio: 9/16;
  max-height: 80vh;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (min-width: 640px) {
  .car-slide { aspect-ratio: 16/9; }
}

.car-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.car-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .25s;
}

.car-overlay:hover { background: rgba(0,0,0,.15); }

.car-play {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(240,192,64,.9);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s;
}

.car-play svg {
  width: 30px;
  height: 30px;
  fill: #000;
  margin-left: 5px;
}

.car-overlay:hover .car-play { transform: scale(1.1); }
.car-overlay.playing { background: transparent; }
.car-overlay.playing .car-play { display: none; }

.car-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.6);
  color: #fff;
  border: 2px solid rgba(255,255,255,.2);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  transition: background .2s, border-color .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.car-btn:hover { background: var(--yellow); border-color: var(--yellow); color: #000; }
.car-prev { left: 16px; }
.car-next { right: 16px; }

.car-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.car-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  cursor: pointer;
  transition: background .2s, transform .2s;
}

.car-dot.active {
  background: var(--yellow);
  transform: scale(1.3);
}

/* ── CONTACT ──────────────────────────────────────────────────── */
.contact-section {
  padding: 100px 0;
  background: var(--dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-text p {
  color: rgba(255,255,255,.65);
  margin-bottom: 24px;
  font-size: 15px;
}

.contact-info { display: flex; flex-direction: column; gap: 12px; }

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,.7);
  transition: color .2s;
}
.contact-info-item:hover { color: var(--yellow); }
.ci-icon { font-size: 20px; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  border-radius: 4px;
  outline: none;
  transition: border-color .2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--yellow);
}

.form-group select option { background: var(--card); }
.form-group textarea { resize: vertical; }

/* ── FOOTER ───────────────────────────────────────────────────── */
.footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 48px 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 36px;
  letter-spacing: 3px;
}
.footer-logo span { color: var(--yellow); }

.footer-name {
  font-family: var(--font-head);
  font-size: 18px;
  letter-spacing: 2px;
  color: rgba(255,255,255,.5);
}

.footer-links {
  display: flex;
  gap: 24px;
  margin: 8px 0;
}

.footer-links a {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  transition: color .2s;
}
.footer-links a:hover { color: var(--yellow); }

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,.2);
}

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .videos-grid  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: block; }

  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .about-image img { height: 400px; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .videos-grid  { grid-template-columns: 1fr; }

  .stats-bar { gap: 0; }
  .stat-item { padding: 0 20px; }
  .stat-divider { display: none; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 4px; }
  .hero-buttons { flex-direction: column; }
}
