:root {
  --c-bg: #060811;
  --c-surface: rgba(255, 255, 255, 0.04);
  --c-border: rgba(255, 255, 255, 0.08);

  --c-neon: #ff3d4e;
  --c-neon-bright: #ff6370;
  --c-neon-glow: rgba(255, 61, 78, 0.35);
  --c-cyan: #ff3d4e;
  --c-cyan-glow: rgba(255, 61, 78, 0.25);
  --c-pink: #ff3d4e;
  --c-green: #10b981;

  --c-text: #e2e8f0;
  --c-muted: #94a3b8;
  --c-white: #ffffff;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --nav-h: 72px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  overflow-x: clip;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

input,
select,
textarea {
  font-family: inherit;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--c-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--c-neon);
  border-radius: 3px;
}

::selection {
  background: var(--c-neon);
  color: var(--c-white);
}

.container {
  width: min(1200px, 100% - 48px);
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity 0.2s;
}

.btn:hover::before {
  opacity: 1;
}

.btn-rect {
  border-radius: var(--radius-md);
  box-shadow: 0 0 12px rgba(255, 61, 78, 0.15), 0 2px 10px rgba(255, 61, 78, 0.2);
}

.btn-rect:hover {
  box-shadow: 0 0 20px rgba(255, 61, 78, 0.25), 0 4px 15px rgba(255, 61, 78, 0.3);
}

.btn-neon {
  background: linear-gradient(135deg, var(--c-neon), var(--c-neon-bright));
  color: var(--c-white);
  box-shadow: 0 0 24px var(--c-neon-glow), 0 4px 20px rgba(255, 61, 78, 0.4);
}

.btn-neon:hover {
  box-shadow: 0 0 40px var(--c-neon-glow), 0 8px 32px rgba(255, 61, 78, 0.6);
  transform: translateY(-2px);
}

.events-action .btn:hover {
  transform: none;
}

.btn-outline {
  border: 1.5px solid var(--c-cyan);
  color: var(--c-cyan);
  background: transparent;
}

.btn-outline:hover {
  background: var(--c-cyan-glow);
  box-shadow: 0 0 24px var(--c-cyan-glow);
  transform: translateY(-2px);
}

/* Disable button hover effects specifically on the events page */
.events-page-body .btn:hover::before {
  opacity: 0;
}

.events-page-body .btn-neon:hover {
  box-shadow: 0 0 24px var(--c-neon-glow), 0 4px 20px rgba(255, 61, 78, 0.4);
  transform: none;
}

.events-page-body .btn-outline:hover {
  background: transparent;
  box-shadow: none;
  transform: none;
}

.events-page-body .btn-rect:hover {
  box-shadow: 0 0 12px rgba(255, 61, 78, 0.15), 0 2px 10px rgba(255, 61, 78, 0.2);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: min(1200px, 100% - 48px);
  margin-inline: auto;
  position: relative;
}

.nav-logo-centered {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-btn-events,
.nav-btn-about {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: var(--c-white);
  text-transform: uppercase;
  padding: 8px 24px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: background var(--transition);
}

.nav-btn-about {
  left: 20%;
}

.nav-btn-events {
  left: 80%;
}

.events-text,
.about-text {
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
}

.events-text::after,
.about-text::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #FF3D4E;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-btn-events:hover,
.nav-btn-about:hover {
  background: rgba(255, 255, 255, 0.12);
}

.nav-btn-events:hover .events-text::after,
.nav-btn-about:hover .about-text::after {
  transform: scaleX(1);
}

.navbar-logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition);
  filter: drop-shadow(0 0 8px rgba(255, 61, 78, 0.3));
}

.nav-logo-centered:hover .navbar-logo-img {
  transform: scale(1.08) rotate(3deg);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: var(--nav-h) 24px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(6, 8, 17, 0.45) 0%,
      rgba(6, 8, 17, 0.3) 50%,
      rgba(6, 8, 17, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-brand {
  position: relative;
  display: inline-block;
  text-align: center;
  animation: fade-up 0.9s 0.2s ease both;
}

.hero-brand-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(4.5rem, 16vw, 227px);
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: #FF3D4E;
  position: relative;
  user-select: none;
}

.hero-brand-sub {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  font-family: 'Permanent Marker', cursive;
  font-weight: 400;
  font-size: clamp(0.9rem, 3.2vw, 39px);
  letter-spacing: clamp(4px, 1.6vw, 20.22px);
  text-transform: none;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
  pointer-events: none;
  text-align: justify;
  text-align-last: justify;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--c-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fade-in 1.5s 1.2s ease both;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--c-neon-bright);
  border-bottom: 2px solid var(--c-neon-bright);
  transform: rotate(45deg);
  animation: scroll-bounce 1.5s ease-in-out infinite;
}

@keyframes scroll-bounce {

  0%,
  100% {
    transform: rotate(45deg) translate(0, 0);
    opacity: 1;
  }

  50% {
    transform: rotate(45deg) translate(4px, 4px);
    opacity: 0.5;
  }
}

.section {
  padding: 120px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-family: 'Orbitron', monospace;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--c-white);
  line-height: 1.15;
}

.highlight {
  background: linear-gradient(135deg, var(--c-neon-bright), var(--c-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.reveal {
  opacity: 0;
  transform: translateY(60px) scale(0.96);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.wwd-track {
  position: relative;
  height: 300vh;
  background: var(--c-bg);
}

.wwd-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wwd-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 260px;
  height: 175px;
  background: rgba(17, 24, 39, 0.9);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.65);
  transform: translate(-50%, -50%);
  opacity: 0;
  will-change: transform, opacity;
  transition: border-color 0.3s, box-shadow 0.3s;
  cursor: pointer;
  z-index: 2;
}

.wwd-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.wwd-card:hover {
  border-color: rgba(255, 61, 78, 0.55);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 28px rgba(255, 61, 78, 0.25);
}

.wwd-card--lead {
  opacity: 1;
  z-index: 10;
}

.wwd-text {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 820px;
  padding: 0 24px;
  opacity: 0;
  transform: translateY(20px);
  will-change: opacity, transform;
  pointer-events: none;
}

.wwd-heading {
  font-family: 'Quantico', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.6rem);
  color: var(--c-white);
  line-height: 1.15;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.wwd-body {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  color: var(--c-muted);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .wwd-track {
    height: 220vh;
  }

  .wwd-card {
    width: 150px;
    height: 105px;
    padding: 12px;
    border-radius: 14px;
  }
}

.events-section {
  background: var(--c-bg);
}

.section-sub {
  color: var(--c-muted);
  font-size: 1.05rem;
  margin-top: 12px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.ev-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 56px;
}

.ev-row {
  display: flex;
  gap: 12px;
  height: 360px;
}

.ev-row--center {
  justify-content: center;
}

.ev-row--center .ev-card {
  flex: 0 0 calc(50% - 6px);
  max-width: calc(50% - 6px);
  transition: flex 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    border-color var(--transition),
    box-shadow var(--transition),
    filter var(--transition);
}

.ev-card {
  position: relative;
  flex: 1 1 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--c-border);
  background: var(--c-bg);
}

.ev-row:has(.ev-card:hover) .ev-card:hover {
  flex: 1.86 1 0;
}

.ev-row:has(.ev-card:hover) .ev-card:not(:hover) {
  flex: 0.54 1 0;
}

.ev-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.ev-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
  pointer-events: none;
}

.ev-card:hover .ev-thumb {
  opacity: 0;
}

.ev-card:hover .ev-video {
  opacity: 1;
}

.ev-card:hover {
  border-color: var(--c-neon);
  box-shadow: 0 0 30px var(--c-neon-glow), 0 0 60px rgba(255, 61, 78, 0.12);
}

.ev-row:has(.ev-card:hover) .ev-card:not(:hover) {
  filter: brightness(0.55) saturate(0.7);
}

.ev-card:hover {
  filter: brightness(1) saturate(1);
}

@media (max-width: 640px) {
  .ev-row {
    flex-direction: column;
    height: auto;
  }

  .ev-card {
    height: 200px;
    flex: none !important;
    filter: none !important;
  }

  .ev-row:has(.ev-card:hover) .ev-card:hover,
  .ev-row:has(.ev-card:hover) .ev-card:not(:hover) {
    flex: none;
    filter: none;
  }

  .ev-row--center .ev-card {
    max-width: 100%;
    flex: 1 1 auto !important;
  }
}

.about-section {
  position: relative;
  min-height: 100vh;
  padding: 120px 0;
  overflow: hidden;
  isolation: isolate;
}

.about-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  transform: scale(1.0);
}

.about-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(6, 8, 17, 0.72) 0%,
      rgba(6, 8, 17, 0.45) 45%,
      rgba(6, 8, 17, 0.72) 100%),
    linear-gradient(to right,
      rgba(6, 8, 17, 0.5) 0%,
      transparent 30%,
      transparent 70%,
      rgba(6, 8, 17, 0.5) 100%);
}

.about-content {
  position: relative;
  z-index: 2;
}

.about-us-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 680px;
}

.about-us-text--centered {
  margin-top: 48px;
}

.about-us-heading {
  font-family: 'Orbitron', monospace;
  font-weight: 700;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  color: var(--c-white);
  line-height: 1.25;
}

.about-us-text p {
  color: rgba(226, 232, 240, 0.85);
  font-size: 1rem;
  line-height: 1.85;
}

.team-section {
  background: var(--c-bg);
  padding: 120px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.team-grid--first {
  grid-template-columns: repeat(6, 1fr);
  margin-top: 56px;
}

.team-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 28px 0;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.team-grid--first .team-card {
  border-color: rgba(255, 61, 78, 0.45);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45), 0 0 22px rgba(255, 61, 78, 0.3);
  padding: 38px 0;
  transform: scale(1.1);
}

.team-grid--first .team-avatar-wrap {
  width: 86%;
}

.team-grid--first .team-member-name {
  font-size: 1.2rem;
}

.team-grid--first .team-member-role {
  font-size: 0.88rem;
}

.team-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  height: 100%;
}

.team-avatar-wrap {
  width: 80%;
  aspect-ratio: 3 / 4;
  position: relative;
  border-radius: var(--radius-md);
  padding: 3px;
  background: linear-gradient(135deg, var(--c-border), rgba(255, 255, 255, 0.05));
  transition: background 0.4s ease;
  overflow: hidden;
}

.team-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: calc(var(--radius-md) - 3px);
  display: block;
  object-fit: cover;
}

.team-avatar-glow {
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-md);
  background: radial-gradient(circle, var(--c-neon-glow) 0%, transparent 80%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.team-member-name {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--c-white);
  margin-top: 4px;
  padding: 0 15px;
}

.team-member-role {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-neon-bright);
  padding: 0 15px;
}

.team-member-socials {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: auto;
  padding-top: 8px;
}

.team-social-icon {
  color: var(--c-muted);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1200px) {
  .team-grid,
  .team-grid--first {
    grid-template-columns: repeat(4, 1fr);
  }
  .team-grid--first .team-card {
    transform: none;
    padding: 28px 0;
  }
}

@media (max-width: 992px) {
  .team-grid,
  .team-grid--first {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .team-grid,
  .team-grid--first {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .team-section {
    padding: 80px 0;
  }
}

@media (max-width: 480px) {
  .team-grid,
  .team-grid--first {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin-inline: auto;
  }
}

.events-hero {
  padding-top: 140px;
  padding-bottom: 60px;
  background: radial-gradient(circle at bottom center, rgba(255, 61, 78, 0.08), transparent 60%);
  text-align: center;
}

.events-hero-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.02em;
  color: var(--c-white);
  line-height: 1.1;
  margin-bottom: 12px;
}

.events-hero-sub {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: var(--c-muted);
  text-transform: uppercase;
}

.events-showcase-section {
  padding-bottom: 120px;
}

.showcase-card {
  background: var(--c-bg);
  border: 1px solid rgba(255, 61, 78, 0.3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.showcase-card-banner {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.showcase-card-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.showcase-game-tag {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--c-neon-bright);
  text-transform: uppercase;
}

.showcase-event-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--c-white);
  line-height: 1.3;
}

.showcase-event-desc {
  color: var(--c-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.showcase-event-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(255, 255, 255, 0.02);
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border);
  font-size: 0.9rem;
}

.showcase-event-details span {
  color: var(--c-text);
}

.showcase-event-details strong {
  color: var(--c-white);
  margin-right: 4px;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .nav-container {
    justify-content: space-between;
    padding-inline: 16px;
  }

  .nav-logo-centered {
    position: static;
    transform: none;
  }

  .nav-btn-events,
  .nav-btn-about {
    position: static;
    transform: none;
    font-size: 0.95rem;
    padding: 6px 12px;
    left: auto;
  }
}