:root {
  --nice-padding: 6rem;
  --roundness: 0.75rem;
  --accent1: #02db02;
  --accent2: #05b305;
  --accent2_transp: #05b30555;
  --background1: #212529;
  --background2: #16191b;
  --glow-color: rgba(2, 219, 2, 0.5);
  
  color-scheme: dark;
}

/* ==================== ANIMATIONS ====================  */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideSidebarIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scaleY(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
}

@keyframes glow {
  0%, 100% {
    text-shadow: 0 0 5px rgba(2, 219, 2, 0.5);
  }
  50% {
    text-shadow: 0 0 10px rgba(2, 219, 2, 0.7);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes bounceArrow {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* ==================== MOBILE ANIMATIONS ====================  */
@keyframes slideUpMobile {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scalePopIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes swipeInFromBottom {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes tapPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.97);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes cardSlideIn {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Removed: float1, float2, float3, card3DFloat, shadowGlow for professional appearance */

span {
  font-family: "Space Grotesk", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-user-select: none;
  user-select: none;
}

body {
  font-family: "Space Grotesk", sans-serif;
  background-color: var(--background1);
  color: white;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
  width: 100%;
  -webkit-touch-callout: none;
}

/* ==================== SCROLL PROGRESS BAR ====================  */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  width: 0%;
  z-index: 1000;
  box-shadow: 0 0 10px rgba(2, 219, 2, 0.6);
  transition: width 0.1s ease;
}

/* ==================== ANIMATED BACKGROUND ====================  */
/* Removed for cleaner, more professional appearance */

#more {
  padding-top: 5rem;
  margin-top: -5rem;
}
#discord {
  padding-top: 5rem;
  margin-top: -5rem;
}
#about {
  padding-top: 5rem;
  margin-top: -5rem;
}
#join {
  padding-top: 5rem;
  margin-top: -5rem;
}

/* ==================== UTILITY CLASSES ====================  */
.fade-in-up {
  animation: fadeInUp 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  opacity: 0;
}

.fade-in-up.visible {
  animation: fadeInUp 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.slide-in-right {
  animation: slideInRight 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  opacity: 0;
}

.slide-in-right.visible {
  animation: slideInRight 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent1), #00ff00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glow-text {
  animation: glow 2s ease-in-out infinite;
}

.arrow-bounce {
  animation: bounceArrow 1.5s ease-in-out infinite;
}

.button-glow:hover {
  box-shadow: 0 0 20px rgba(2, 219, 2, 0.4);
}

.floating-image {
  animation: float 4s ease-in-out infinite;
}

.card-hover-3d {
  animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  opacity: 0;
}

.card-hover-3d.visible {
  animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.card-fade-in {
  animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  opacity: 0;
}

.card-fade-in.visible {
  animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.box-shadow-glow {
  animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  opacity: 0;
}

.box-shadow-glow.visible {
  animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.banner {
  display: flex;
  position: fixed;
  background-color: #ff000099;
  width: 100%;
  height: 3rem;
  z-index: 10;
  font-size: 2rem;
  font-weight: 600;
  justify-content: center;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  align-content: center;
  padding-top: 0.4rem;
}

.headline {
  margin-top: 2rem;
  color: #fff;
  font-size: 3rem;
  text-align: center;
  font-weight: 600;
}

.desktop_navbar {
  position: fixed;
  display: flex;
  height: auto;
  min-height: 4rem;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  padding: clamp(0.75rem, 1vw, 1.2rem) clamp(0.5rem, 2vw, 2rem);
  background-color: #00000028;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  z-index: 5;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  border-bottom: 1px solid rgba(2, 219, 2, 0.2);
  transition: all 0.3s ease;
  box-sizing: border-box;
  flex-wrap: wrap;
  gap: clamp(0.5rem, 1vw, 1.5rem);
}

.desktop_navbar:hover {
  background-color: #00000044;
  border-bottom-color: rgba(2, 219, 2, 0.4);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar-logo-wrapper {
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  align-items: center;
}

.navbar-logo-wrapper:hover {
  transform: scale(1.1) rotate(5deg);
}

.desktop_navbar_logo_img {
  width: clamp(3.5rem, 8vw, 5rem);
  filter: drop-shadow(0 0 10px rgba(2, 219, 2, 0.3));
  transition: filter 0.3s ease;
}

.desktop_navbar_logo_img:hover {
  filter: drop-shadow(0 0 20px rgba(2, 219, 2, 0.6));
}

.nav-link-enhanced {
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  padding: 0.6rem 1rem;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  text-decoration: none;
  color: #fff;
  text-align: center;
  position: relative;
  border-radius: 4px;
  white-space: nowrap;
}

.nav-link-enhanced::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent1);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform: translateX(-50%);
}

.nav-link-enhanced:hover {
  color: var(--accent1);
  text-shadow: 0 0 5px rgba(2, 219, 2, 0.4);
  transform: translateY(-2px);
  background-color: rgba(2, 219, 2, 0.05);
}

.desktop_navbar_link2 {
  display: inline-block;
  position: relative;
  z-index: 2;
  color: #fff;
  text-decoration: none;
  transition: color 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  letter-spacing: 0.5px;
  font-weight: 700;
}

.nav-link-enhanced:hover::after {
  width: 100%;
}

.nav-button-enhanced {
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  padding: clamp(0.6rem, 1vw, 0.8rem) clamp(1rem, 2vw, 1.5rem);
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  font-weight: 700;
  border: solid 2px var(--accent1);
  border-radius: var(--roundness);
  text-align: center;
  background: linear-gradient(135deg, transparent, rgba(2, 219, 2, 0.1));
  position: relative;
  overflow: hidden;
  cursor: url("Join/cur2.cur"), pointer;
  display: inline-block;
  white-space: nowrap;
  margin-left: auto;
}

.nav-button-enhanced a {
  display: inline-block;
  position: relative;
  z-index: 2;
  color: inherit;
  text-decoration: none;
  transition: color 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  letter-spacing: 0.5px;
}

.nav-button-enhanced::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(2, 219, 2, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), height 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 1;
}

.nav-button-enhanced::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0), rgba(2, 219, 2, 0.1), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 1;
  border-radius: var(--roundness);
}

.nav-button-enhanced:hover::before {
  width: 300px;
  height: 300px;
}

.nav-button-enhanced:hover::after {
  opacity: 1;
}

.nav-button-enhanced:hover {
  border-color: var(--accent2);
  background: linear-gradient(135deg, rgba(2, 219, 2, 0.2), rgba(2, 219, 2, 0.08));
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 8px 30px rgba(2, 219, 2, 0.4), inset 0 0 20px rgba(2, 219, 2, 0.15), 0 0 20px rgba(2, 219, 2, 0.3);
  text-shadow: 0 0 8px rgba(2, 219, 2, 0.3);
}

/* ==================== LANGUAGE SWITCHER ====================  */
.language-switcher-desktop {
  display: flex;
  gap: 0;
  align-items: center;
  background: rgba(2, 219, 2, 0.06);
  padding: 0.4rem 0.6rem;
  border-radius: var(--roundness);
  border: 1.5px solid rgba(2, 219, 2, 0.3);
  transition: all 0.3s ease;
}

.language-switcher-desktop:hover {
  background: rgba(2, 219, 2, 0.1);
  border-color: rgba(2, 219, 2, 0.5);
  box-shadow: 0 0 12px rgba(2, 219, 2, 0.2);
}

.lang-separator {
  color: rgba(2, 219, 2, 0.4);
  margin: 0 0.3rem;
  font-weight: 300;
  user-select: none;
  font-size: 0.8rem;
}

.lang-btn {
  background: none;
  border: 1.5px solid transparent;
  color: rgba(255, 255, 255, 0.6);
  padding: 0.3rem 0.6rem;
  font-size: clamp(0.7rem, 1.5vw, 0.85rem);
  font-weight: 700;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0.5px;
  position: relative;
  white-space: nowrap;
}

.lang-btn:hover:not(.active) {
  color: rgba(255, 255, 255, 0.85);
  background: rgba(2, 219, 2, 0.08);
  border-color: rgba(2, 219, 2, 0.4);
}

.lang-btn.active {
  color: var(--accent1);
  border-color: var(--accent1);
  background: rgba(2, 219, 2, 0.15);
  box-shadow: 0 0 10px rgba(2, 219, 2, 0.3), inset 0 0 6px rgba(2, 219, 2, 0.1);
  text-shadow: 0 0 4px rgba(2, 219, 2, 0.2);
}

.mobile_navbar {
  display: none;
  overflow: visible;
  background-color: rgba(2, 25, 29, 0.65);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  position: fixed;
  width: 100%;
  z-index: 5;
  flex-direction: row;
  min-height: clamp(50px, 12vw, 65px);
  border-bottom: 2px solid rgba(2, 219, 2, 0.2);
  transition: all 0.3s ease;
  top: 0;
  left: 0;
  right: 0;
  box-sizing: border-box;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem clamp(0.5rem, 2vw, 1rem);
  gap: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.mobile_navbar_logo_img {
  display: block;
  height: clamp(35px, 10vw, 50px);
  padding: 0.25rem;
  filter: drop-shadow(0 0 10px rgba(2, 219, 2, 0.3));
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  flex-shrink: 0;
}

.mobile_navbar_logo_img:hover {
  filter: drop-shadow(0 0 20px rgba(2, 219, 2, 0.6));
  transform: scale(1.08);
}

.mobile_navbar #mobile_navbar_links {
  display: none;
  position: fixed;
  margin-top: 0;
  top: clamp(50px, 12vw, 65px);
  left: 0;
  right: 0;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  background: linear-gradient(180deg, rgba(16, 28, 34, 0.98) 0%, rgba(22, 25, 27, 0.96) 100%);
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
  animation: slideSidebarIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-height: calc(100vh - clamp(50px, 12vw, 65px));
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 4;
  border-bottom: 2px solid rgba(2, 219, 2, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

.mobile-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem 1rem;
  animation: slideSidebarIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Sidebar Header */
.sidebar-header {
  text-align: center;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(2, 219, 2, 0.2);
  margin-bottom: 1rem;
}

.sidebar-title {
  font-size: 1.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #02db02 0%, #05b305 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  animation: fadeInDown 0.5s ease 0.1s backwards;
}

.sidebar-subtitle {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0.25rem 0 0 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  animation: fadeInDown 0.5s ease 0.15s backwards;
}

/* Language Switcher */
.language-switcher-mobile {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1rem;
  animation: fadeInUp 0.5s ease 0.2s backwards;
}

.language-switcher-mobile .lang-btn {
  flex: 1;
  padding: 0.5rem;
  background-color: rgba(2, 219, 2, 0.1);
  border: 1px solid rgba(2, 219, 2, 0.3);
  color: rgba(255, 255, 255, 0.7);
  border-radius: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.language-switcher-mobile .lang-btn.active {
  background-color: var(--accent1);
  color: var(--background1);
  border-color: var(--accent1);
  box-shadow: 0 0 12px rgba(2, 219, 2, 0.4);
  font-weight: 700;
}

/* Sidebar Navigation */
.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 1rem 0;
}

.sidebar-nav-item {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: url("Join/cur2.cur"), pointer;
  border-radius: 0.6rem;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  border-left: 3px solid transparent;
  min-height: 44px;
  animation: slideInLeft 0.5s ease;
}

.sidebar-nav-item:nth-child(1) { animation-delay: 0.25s; }
.sidebar-nav-item:nth-child(2) { animation-delay: 0.3s; }
.sidebar-nav-item:nth-child(3) { animation-delay: 0.35s; }
.sidebar-nav-item:nth-child(4) { animation-delay: 0.4s; }
.sidebar-nav-item:nth-child(5) { animation-delay: 0.45s; }

.nav-icon {
  font-size: 1.3rem;
  min-width: 1.5rem;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.nav-label {
  flex: 1;
  font-size: 0.95rem;
  text-align: left;
}

.nav-indicator {
  position: absolute;
  right: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, var(--accent1), var(--accent2));
  border-radius: 3px;
  transition: height 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 0 10px rgba(2, 219, 2, 0.4);
}

.sidebar-nav-item:hover {
  background-color: rgba(2, 219, 2, 0.15);
  border-left-color: var(--accent1);
  color: var(--accent1);
  transform: translateX(4px);
  box-shadow: inset 0 0 15px rgba(2, 219, 2, 0.1);
}

.sidebar-nav-item:hover .nav-icon {
  transform: scale(1.2) rotate(5deg);
  filter: drop-shadow(0 0 8px rgba(2, 219, 2, 0.4));
}

.sidebar-nav-item:hover .nav-indicator {
  height: 24px;
}

.sidebar-nav-item:active {
  animation: tapPulse 0.2s ease;
  background-color: rgba(2, 219, 2, 0.25);
}

.sidebar-nav-item:focus {
  outline: 2px solid var(--accent1);
  outline-offset: -2px;
}

/* Secondary Links */
.sidebar-secondary {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem 0;
  border-top: 1px solid rgba(2, 219, 2, 0.15);
  border-bottom: 1px solid rgba(2, 219, 2, 0.15);
}

.sidebar-secondary-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  border-radius: 0.5rem;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: url("Join/cur2.cur"), pointer;
  animation: slideInLeft 0.5s ease 0.55s backwards;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.sidebar-secondary-link:hover {
  background-color: rgba(2, 219, 2, 0.15);
  color: var(--accent1);
  transform: translateX(3px);
}

.sidebar-secondary-link i {
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.sidebar-secondary-link:hover i {
  transform: scale(1.15);
  filter: drop-shadow(0 0 6px rgba(2, 219, 2, 0.4));
}

/* CTA Button */
.sidebar-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.2rem;
  margin-top: 1rem;
  background: linear-gradient(135deg, rgba(2, 219, 2, 0.35) 0%, rgba(5, 179, 5, 0.25) 100%);
  border: 2px solid var(--accent1);
  border-radius: 0.7rem;
  color: var(--accent1);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  min-height: 44px;
  position: relative;
  overflow: hidden;
  animation: slideInUp 0.5s ease 0.6s backwards;
  box-shadow: 0 0 15px rgba(2, 219, 2, 0.2);
}

.sidebar-cta-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(2, 219, 2, 0.3), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.sidebar-cta-btn:hover {
  background: linear-gradient(135deg, rgba(2, 219, 2, 0.5) 0%, rgba(5, 179, 5, 0.35) 100%);
  border-color: var(--accent2);
  color: white;
  box-shadow: 0 0 25px rgba(2, 219, 2, 0.5), inset 0 0 15px rgba(2, 219, 2, 0.15);
  transform: scale(1.02);
}

.sidebar-cta-btn:hover::before {
  transform: translateX(100%);
}

.btn-text {
  font-size: 0.9rem;
}

.sidebar-cta-btn:active {
  animation: tapPulse 0.2s ease;
  transform: scale(0.98);
}

/* Hamburger Menu Icon - Enhanced */
.hamburger-menu {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  background-color: rgba(2, 219, 2, 0.15);
  padding: 0.6rem;
  cursor: pointer;
  border-radius: 0.4rem;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  min-width: 44px;
  min-height: 44px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2.5px;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hamburger-menu:hover {
  background-color: rgba(2, 219, 2, 0.3);
  transform: scale(1.1);
}

.hamburger-menu:hover .hamburger-line {
  background-color: var(--accent1);
  box-shadow: 0 0 8px rgba(2, 219, 2, 0.4);
}

.hamburger-menu:active {
  animation: tapPulse 0.2s ease;
}

.hamburger-menu.active {
  background-color: rgba(2, 219, 2, 0.25);
  border: 1px solid var(--accent1);
}

.hamburger-menu.active .hamburger-line-1 {
  transform: translateY(10px) rotate(45deg);
}

.hamburger-menu.active .hamburger-line-2 {
  opacity: 0;
}

.hamburger-menu.active .hamburger-line-3 {
  transform: translateY(-10px) rotate(-45deg);
}

.mobile_navbar_logo_img_a {
  display: flex;
  background-color: transparent;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  align-items: center;
  padding: 0;
  margin: 0;
}

.mobile_navbar_logo_img_a:active {
  animation: tapPulse 0.15s ease;
}

.mainflex {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
}

/* ==================== HERO SECTION ====================  */
.main1 {
  padding-top: calc(var(--nice-padding) + 2rem);
  display: flex;
  width: 100%;
  max-width: 100%;
  align-self: center;
  flex-direction: column;
  align-items: center;
  align-content: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: none;
  min-height: 100vh;
  box-sizing: border-box;
  padding-left: clamp(0.5rem, 2vw, 2rem);
  padding-right: clamp(0.5rem, 2vw, 2rem);
}

.main1::before {
  content: "";
  position: absolute;
  inset: -60px;
  background: rgba(0, 0, 0, 0.55) url("placeblur.png");
  background-blend-mode: darken;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transform: translate3d(var(--parallax-x, 0px), var(--parallax-y, 0px), 0);
  will-change: transform;
  z-index: -1;
}

.main1::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--light-x, 50%) var(--light-y, 50%),
    rgba(2, 219, 2, 0.2),
    rgba(2, 219, 2, 0.05) 20%,
    transparent 40%
  );
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.3s ease;
}

.main1_logo_a {
  margin-bottom: var(--nice-padding);
  cursor: url("Join/cur2.cur"), pointer;
  position: relative;
  z-index: 1;
}

.main1_logo {
  display: block;
  align-self: center;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  max-width: 40rem;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  transform: translateZ(0);
  filter: drop-shadow(0 0 10px rgba(2, 219, 2, 0.2));
  opacity: 1 !important;
}

.main1_logo:hover {
  transform: scale(1.06);
  filter: drop-shadow(0 0 20px rgba(2, 219, 2, 0.4));
}

.main1_description {
  text-align: center;
  font-size: clamp(1.8rem, 5vw, 3rem);
  margin-bottom: var(--nice-padding);
  margin-left: clamp(0.5rem, 3vw, 1rem);
  margin-right: clamp(0.5rem, 3vw, 1rem);
  position: relative;
  z-index: 1;
  font-weight: 700;
  letter-spacing: 2px;
  opacity: 1 !important;
  word-break: break-word;
  line-height: 1.2;
}

.main1_actcent {
  font-weight: 800;
  color: var(--accent1);
  display: inline-block;
}

.main1_ipcopier {
  padding: clamp(0.7rem, 2vw, 1rem) clamp(1.2rem, 4vw, 2rem);
  font-size: clamp(1.2rem, 3vw, 2rem);
  background: linear-gradient(135deg, rgba(2, 219, 2, 0.2), rgba(2, 219, 2, 0.05));
  border: 2px solid var(--accent1);
  border-radius: var(--roundness);
  color: white;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: url("Join/cur2.cur"), pointer;
  position: relative;
  z-index: 2;
  font-weight: 700;
  overflow: hidden;
  max-width: 90vw;
}

.main1_ipcopier::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(2, 219, 2, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: -1;
}

.main1_ipcopier:hover::before {
  width: 400px;
  height: 400px;
}

.main1_ipcopier:hover {
  background: linear-gradient(135deg, rgba(2, 219, 2, 0.25), rgba(2, 219, 2, 0.1));
  border-color: var(--accent2);
  transform: scale(1.06);
  box-shadow: 0 0 25px rgba(2, 219, 2, 0.3), inset 0 0 15px rgba(2, 219, 2, 0.15);
}

.main1_ipcopier_text1 {
  font-size: clamp(1.1rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: 1px;
  word-break: break-word;
}

.main1_ipcopier_text2 {
  font-size: clamp(0.9rem, 2vw, 1.5rem);
  font-weight: 600;
  word-break: break-word;
}

.main1_ipcopier_div {
  position: relative;
  z-index: 2;
  opacity: 1 !important;
}

.copy-tooltip {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent1);
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: var(--roundness);
  font-weight: 700;
  font-size: 0.9rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.copy-tooltip.show {
  opacity: 1;
  animation: fadeInUp 0.4s ease forwards;
}

.main1_downarrow {
  opacity: 50%;
  height: 1.5rem;
  padding: 2rem;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 10px rgba(2, 219, 2, 0.3));
}

.main1_downarrow:hover {
  opacity: 100%;
  transform: scale(1.1);
  filter: drop-shadow(0 0 20px rgba(2, 219, 2, 0.6));
}

.main1_popup {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -0%);
  text-align: center;
  background-color: rgba(0, 175, 0, 0.1);
  border: solid rgba(0, 175, 0, 1) 1px;
  color: #fff;
  border-radius: var(--roundness);
  z-index: 9999;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-top: -10.5rem;
}

.main1_downarrow {
  opacity: 50%;
  height: 1.5rem;
  padding: 2rem;
  transition: all 0.5s;
}

.main1_downarrow:hover {
  opacity: 100%;
  transform: scale(1.05);
}

.main2 {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-content: center;
  padding-bottom: 1rem;
  background-color: var(--background2);
  width: 100%;
  max-width: 100%;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  overflow-x: hidden;
}

.headline {
  margin-top: 2rem;
  color: #fff;
  font-size: clamp(1.8rem, 5vw, 3rem);
  text-align: center;
  font-weight: 800;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
  padding: 0 clamp(0.5rem, 3vw, 1.5rem);
  word-break: break-word;
  line-height: 1.2;
}

.headline::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  transform: translateX(-50%);
  transition: width 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.headline:hover::after {
  width: 80px;
}

.main2_features_div {
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  gap: clamp(0.5rem, 2vw, 1rem);
  padding-left: clamp(0.25rem, 2vw, 1rem);
  padding-right: clamp(0.25rem, 2vw, 1rem);
}

.main2_feature {
  display: flex;
  background: linear-gradient(135deg, #2a2e35, #1a1d22);
  height: auto;
  min-height: 28rem;
  width: clamp(16rem, 90vw, 18rem);
  margin: clamp(0.5rem, 1vw, 1rem);
  border-radius: var(--roundness);
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  flex-direction: column;
  border: 1px solid rgba(2, 219, 2, 0.2);
  overflow: hidden;
  position: relative;
}

.main2_feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent, rgba(2, 219, 2, 0.1));
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
  pointer-events: none;
}

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

.main2_feature:hover {
  background: linear-gradient(135deg, #2a2e35, #1a1d22);
  transform: scale(1.05) translateY(-8px);
  border-color: var(--accent1);
  box-shadow: 0 15px 35px rgba(2, 219, 2, 0.2), inset 0 0 20px rgba(2, 219, 2, 0.08);
}

.main2_feature_img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.2 / 1;
  object-fit: contain;
  object-position: center;
  border-radius: var(--roundness);
  background: linear-gradient(135deg, rgba(0, 175, 0, 0.15), rgba(0, 175, 0, 0.08));
  padding: clamp(12px, 3vw, 16px);
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  flex-shrink: 0;
}

.main2_feature:hover .main2_feature_img {
  transform: scale(1.1);
  filter: brightness(1.2) saturate(1.2);
}

.main2_feature_headline {
  margin-top: 1rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: auto;
  color: var(--accent1);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.main2_feature:hover .main2_feature_headline {
  text-shadow: 0 0 8px rgba(2, 219, 2, 0.5);
  transform: scale(1.03);
}

.main2_feature_text {
  margin: 1rem;
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: auto;
  line-height: 1.6;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.main4 {
  min-height: 10rem;
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background-color: var(--background1);
  padding: 3rem clamp(0.5rem, 2vw, 1rem);
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  overflow-x: hidden;
}

.main4_dc_widget {
  border-radius: var(--roundness);
  border: 2px solid rgba(2, 219, 2, 0.3);
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  filter: drop-shadow(0 0 20px rgba(2, 219, 2, 0.2));
}

.main4_dc_widget:hover {
  border-color: var(--accent1);
  filter: drop-shadow(0 0 40px rgba(2, 219, 2, 0.5));
  transform: scale(1.05);
}

.main4_dc_div {
  margin: clamp(1rem, 3vw, 2rem);
  display: flex;
  flex-direction: row;
  background: linear-gradient(135deg, #2a2e35, #1a1d22);
  border-radius: var(--roundness);
  max-width: 100%;
  width: 100%;
  max-width: 50rem;
  border: 1px solid rgba(2, 219, 2, 0.2);
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow: hidden;
  box-sizing: border-box;
}

.main4_dc_div:hover {
  border-color: rgba(2, 219, 2, 0.5);
  box-shadow: 0 20px 50px rgba(2, 219, 2, 0.2);
}

.main4_dc_description_div {
  display: flex;
  flex-direction: column;
  padding: clamp(1.2rem, 3vw, 2rem);
  width: 100%;
}

.main4_dc_description_title {
  margin: 0 0 clamp(0.75rem, 2vw, 1.5rem) 0;
  text-align: center;
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 700;
  color: var(--accent1);
  transition: all 0.3s ease;
  word-break: break-word;
}

.main4_dc_description {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: clamp(0.75rem, 2vw, 1.5rem);
  font-size: clamp(0.9rem, 2.5vw, 1.2rem);
  line-height: 1.8;
  transition: all 0.3s ease;
  word-break: break-word;
}

.main4_dc_button_a {
  text-decoration: none;
  color: #fff;
  text-align: center;
  border: 2px solid var(--accent1);
  border-radius: var(--roundness);
  margin-top: auto;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, transparent, rgba(2, 219, 2, 0.1));
}

.main4_dc_button_a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(2, 219, 2, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: -1;
}

.main4_dc_button_a:hover::before {
  width: 300px;
  height: 300px;
}

.main4_dc_button_a:hover {
  border-color: var(--accent2);
  background: linear-gradient(135deg, rgba(2, 219, 2, 0.15), rgba(2, 219, 2, 0.05));
  transform: scale(1.06);
  box-shadow: 0 0 20px rgba(2, 219, 2, 0.3);
}

.main4_dc_button {
  padding: 0.7rem 2rem;
  font-weight: 700;
  font-size: 1rem;
}

.main6 {
  background-color: var(--background1);
  min-height: 10rem;
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 3rem clamp(0.5rem, 2vw, 1rem);
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  overflow-x: hidden;
}

.main6_server_div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: clamp(1rem, 3vw, 2rem);
  max-width: 100%;
  width: 100%;
  max-width: 50rem;
  gap: clamp(1rem, 2vw, 1.5rem);
  box-sizing: border-box;
}

.main6_server_card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, #2a2e35, #1a1d22);
  border-radius: var(--roundness);
  border: 2px solid rgba(2, 219, 2, 0.3);
  padding: clamp(1.2rem, 3vw, 2rem);
  max-width: 100%;
  width: 100%;
  max-width: 45rem;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-sizing: border-box;
}

.main6_server_card:hover {
  border-color: var(--accent1);
  filter: drop-shadow(0 0 40px rgba(2, 219, 2, 0.3));
  transform: translateY(-5px);
}

.main6_server_icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: float 3s ease-in-out infinite;
}

.main6_server_name {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--accent1);
  margin-bottom: 1rem;
  font-family: "Space Grotesk", sans-serif;
  word-break: break-word;
}

.main6_server_description {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(0.8rem, 2vw, 0.95rem);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-family: "Space Grotesk", sans-serif;
  word-break: break-word;
}

.main6_server_access {
  color: var(--accent1);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  background: rgba(2, 219, 2, 0.1);
  border-radius: 0.5rem;
  border: 1px solid rgba(2, 219, 2, 0.3);
  font-family: "Space Grotesk", sans-serif;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ==================== ARENA WARS SEASON 1 SECTION ==================== */

.season1_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 100%;
  padding: 3rem clamp(0.5rem, 2vw, 2rem);
  gap: 2.5rem;
  background: linear-gradient(135deg, rgba(2, 219, 2, 0.08), transparent);
  border-top: 2px solid rgba(2, 219, 2, 0.2);
  border-bottom: 2px solid rgba(2, 219, 2, 0.2);
  box-sizing: border-box;
  overflow-x: hidden;
}

.season1_container .headline {
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.season1_content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  width: 100%;
  max-width: 100%;
  max-width: 1200px;
  align-items: start;
  padding: 0 clamp(0.5rem, 2vw, 1rem);
  box-sizing: border-box;
}

.season1_video_wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 3px solid rgba(2, 219, 2, 0.3);
  background: #000;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 0 40px rgba(2, 219, 2, 0.2);
}

.season1_video_wrapper:hover {
  border-color: var(--accent1);
  box-shadow: 0 0 60px rgba(2, 219, 2, 0.4);
  transform: scale(1.02);
}

.season1_video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 1.2rem;
}

.season1_video_fallback {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(2, 219, 2, 0.1), rgba(2, 219, 2, 0.05)), #0a0a0a;
  border-radius: 1.2rem;
  overflow: hidden;
}

.season1_video_thumbnail {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
  opacity: 0.9;
}

.season1_video_thumbnail[src=""],
.season1_video_thumbnail:not([src]) {
  display: none;
}

.season1_play_button {
  position: absolute;
  width: 80px;
  height: 80px;
  background: rgba(2, 219, 2, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 40px rgba(2, 219, 2, 0.5);
}

.season1_play_button:hover {
  background: var(--accent1);
  transform: scale(1.1);
  box-shadow: 0 0 60px rgba(2, 219, 2, 0.8);
}

.season1_play_button svg {
  width: 40px;
  height: 40px;
  color: #000;
  margin-left: 4px;
}

.season1_youtube_link {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(2, 219, 2, 0.95);
  color: #000;
  padding: 0.8rem 1.5rem;
  border-radius: 0.6rem;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
  z-index: 4;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Space Grotesk", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.season1_youtube_link:hover {
  background: var(--accent1);
  transform: translateX(-50%) scale(1.05);
  box-shadow: 0 0 20px rgba(2, 219, 2, 0.6);
}

.season1_teams_container {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  width: 100%;
  max-width: 100%;
}

.season1_subtitle {
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  font-weight: 700;
  color: var(--accent1);
  text-align: center;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Space Grotesk", sans-serif;
  word-break: break-word;
}

.season1_teams_section {
  display: flex;
  flex-direction: column;
  gap: clamp(0.8rem, 2vw, 1.5rem);
  align-items: center;
  width: 100%;
  max-width: 100%;
}

.season1_team_card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, rgba(30, 35, 45, 0.9), rgba(20, 25, 35, 0.95));
  border-radius: 1.2rem;
  border: 3px solid rgba(2, 219, 2, 0.25);
  padding: clamp(1rem, 3vw, 1.5rem);
  width: 100%;
  max-width: 280px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-sizing: border-box;
}

.season1_team_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.05));
  pointer-events: none;
  border-radius: 1.2rem;
}

.season1_team_card:hover {
  transform: translateY(-6px) scale(1.05);
  border-color: var(--accent1);
  filter: drop-shadow(0 12px 30px rgba(2, 219, 2, 0.3));
  backdrop-filter: blur(15px);
}

.season1_team_card_1 {
  background: linear-gradient(135deg, rgba(255, 100, 0, 0.12), rgba(255, 69, 0, 0.06));
  border-color: rgba(255, 100, 0, 0.3);
}

.season1_team_card_1:hover {
  border-color: #ff6400;
  filter: drop-shadow(0 12px 30px rgba(255, 100, 0, 0.3));
}

.season1_team_card_2 {
  background: linear-gradient(135deg, rgba(100, 150, 255, 0.12), rgba(0, 150, 255, 0.06));
  border-color: rgba(100, 150, 255, 0.3);
}

.season1_team_card_2:hover {
  border-color: #6496ff;
  filter: drop-shadow(0 12px 30px rgba(100, 150, 255, 0.3));
}

.season1_team_logo_container {
  width: 100px;
  height: 100px;
  border-radius: 0.8rem;
  overflow: hidden;
  margin-bottom: 1rem;
  border: 2px solid rgba(2, 219, 2, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(30, 30, 30, 0.6), rgba(10, 10, 10, 0.8));
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.season1_team_card:hover .season1_team_logo_container {
  border-color: var(--accent1);
  transform: scale(1.1) rotate(-2deg);
  filter: drop-shadow(0 6px 20px rgba(2, 219, 2, 0.3));
}

.season1_team_card_1:hover .season1_team_logo_container {
  border-color: #ff6400;
  filter: drop-shadow(0 6px 20px rgba(255, 100, 0, 0.3));
}

.season1_team_card_2:hover .season1_team_logo_container {
  border-color: #6496ff;
  filter: drop-shadow(0 6px 20px rgba(100, 150, 255, 0.3));
}

.season1_team_logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.season1_team_card:hover .season1_team_logo {
  transform: scale(1.15);
}

.season1_team_name {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 800;
  color: var(--accent1);
  margin-bottom: 0.5rem;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  word-break: break-word;
}

.season1_team_members {
  font-size: clamp(0.7rem, 2vw, 0.85rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-family: "Space Grotesk", sans-serif;
  position: relative;
  z-index: 1;
  word-break: break-word;
}

.season1_vs_divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.season1_vs_text {
  font-size: clamp(0.9rem, 2.5vw, 1.2rem);
  font-weight: 900;
  color: var(--accent1);
  text-transform: uppercase;
  letter-spacing: clamp(1px, 2vw, 2px);
  font-family: "Space Grotesk", sans-serif;
  padding: 0.5rem 1rem;
  border: 2px solid var(--accent1);
  border-radius: 0.6rem;
  animation: pulse-vs 2s ease-in-out infinite;
  text-shadow: 0 0 15px rgba(2, 219, 2, 0.5);
  word-break: break-word;
}

/* ==================== COUNTDOWN & TEAMS SECTION ==================== */

.season2_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 100%;
  padding: 2rem clamp(0.5rem, 2vw, 2rem);
  gap: 2rem;
  box-sizing: border-box;
  overflow-x: hidden;
}

.countdown_section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.countdown_label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Space Grotesk", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.countdown_timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.25rem, 1vw, 0.5rem);
  flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(2, 219, 2, 0.15), rgba(2, 219, 2, 0.05));
  border: 2px solid rgba(2, 219, 2, 0.3);
  border-radius: 1rem;
  padding: clamp(1.2rem, 3vw, 2rem) clamp(1rem, 2vw, 1.5rem);
  max-width: 100%;
  width: 100%;
  max-width: 600px;
  box-sizing: border-box;
}

.countdown_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-width: 80px;
}

.countdown_number {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--accent1);
  font-family: "Space Grotesk", sans-serif;
  text-shadow: 0 0 20px rgba(2, 219, 2, 0.5);
  min-width: clamp(60px, 15%, 90px);
  text-align: center;
  animation: pulse-glow 2s ease-in-out infinite;
  word-break: break-word;
}

.countdown_unit {
  font-size: clamp(0.6rem, 1.5vw, 0.75rem);
  color: rgba(255, 255, 255, 0.6);
  font-family: "Space Grotesk", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.countdown_separator {
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: var(--accent1);
  font-weight: 800;
  margin: 0 clamp(0.1rem, 0.5vw, 0.25rem);
  opacity: 0.7;
}

@keyframes pulse-glow {
  0%, 100% {
    text-shadow: 0 0 20px rgba(2, 219, 2, 0.5);
  }
  50% {
    text-shadow: 0 0 40px rgba(2, 219, 2, 0.8);
  }
}

.countdown_number {
  animation: pulse-glow 2s ease-in-out infinite;
}

.teams_section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  max-width: 1000px;
  margin-top: 2rem;
  position: relative;
}

.team_card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, rgba(30, 35, 45, 0.8), rgba(20, 25, 35, 0.9));
  border-radius: 1.5rem;
  border: 3px solid rgba(2, 219, 2, 0.2);
  padding: clamp(1.2rem, 3vw, 2rem) clamp(1rem, 2vw, 1.5rem);
  flex: 1;
  min-width: 280px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-sizing: border-box;
}

.team_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.05));
  pointer-events: none;
  border-radius: 1.5rem;
}

.team_card:hover {
  transform: translateY(-8px) scale(1.02);
  backdrop-filter: blur(15px);
  border-color: var(--accent1);
  filter: drop-shadow(0 15px 40px rgba(2, 219, 2, 0.25));
}

.team_card_1 {
  background: linear-gradient(135deg, rgba(255, 100, 0, 0.15), rgba(255, 69, 0, 0.08));
  border-color: rgba(255, 100, 0, 0.35);
}

.team_card_1:hover {
  border-color: #ff6400;
  filter: drop-shadow(0 15px 40px rgba(255, 100, 0, 0.3));
}

.team_card_2 {
  background: linear-gradient(135deg, rgba(100, 150, 255, 0.15), rgba(0, 150, 255, 0.08));
  border-color: rgba(100, 150, 255, 0.35);
}

.team_card_2:hover {
  border-color: #6496ff;
  filter: drop-shadow(0 15px 40px rgba(100, 150, 255, 0.3));
}

.team_logo_container {
  width: 140px;
  height: 140px;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 3px solid rgba(2, 219, 2, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(30, 30, 30, 0.6), rgba(10, 10, 10, 0.8));
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.team_card:hover .team_logo_container {
  border-color: var(--accent1);
  transform: scale(1.08) rotate(2deg);
  filter: drop-shadow(0 8px 25px rgba(2, 219, 2, 0.4));
}

.team_card_1:hover .team_logo_container {
  border-color: #ff6400;
  filter: drop-shadow(0 8px 25px rgba(255, 100, 0, 0.4));
}

.team_card_2:hover .team_logo_container {
  border-color: #6496ff;
  filter: drop-shadow(0 8px 25px rgba(100, 150, 255, 0.4));
}

.team_logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.team_card:hover .team_logo {
  transform: scale(1.1);
}

.team_name {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 800;
  color: var(--accent1);
  margin-bottom: 0.75rem;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  word-break: break-word;
}

.team_members {
  font-size: clamp(0.75rem, 2vw, 0.9rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  font-family: "Space Grotesk", sans-serif;
  position: relative;
  z-index: 1;
  word-break: break-word;
}

.vs_divider {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
}

.vs_text {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 900;
  color: var(--accent1);
  text-transform: uppercase;
  letter-spacing: clamp(2px, 3vw, 3px);
  font-family: "Space Grotesk", sans-serif;
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(0.8rem, 2vw, 1.5rem);
  border: 3px solid var(--accent1);
  border-radius: 0.75rem;
  animation: pulse-vs 2s ease-in-out infinite;
  text-shadow: 0 0 20px rgba(2, 219, 2, 0.5);
  word-break: break-word;
}

@keyframes pulse-vs {
  0%, 100% {
    transform: scale(1);
    text-shadow: 0 0 20px rgba(2, 219, 2, 0.5);
  }
  50% {
    transform: scale(1.1);
    text-shadow: 0 0 40px rgba(2, 219, 2, 0.8);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

/* Mobile Responsive for Season 1 and Season 2 */
@media (max-width: 1024px) {
  .season1_content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .season1_container {
    padding: 2rem 1.5rem;
    gap: 2rem;
  }

  .season1_container .headline {
    font-size: 2rem;
  }
}

@media (max-width: 900px) {
  .season1_content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .season1_video_wrapper {
    padding-bottom: 56.25%;
  }

  .season1_teams_container {
    gap: 1.2rem;
  }

  .season1_teams_section {
    gap: 1rem;
  }

  .season1_team_card {
    max-width: 100%;
    padding: 1.5rem;
  }

  .season1_team_logo_container {
    width: 90px;
    height: 90px;
  }

  .season1_team_name {
    font-size: 1.2rem;
  }

  .season1_team_members {
    font-size: 0.8rem;
  }

  .teams_section {
    gap: 1.5rem;
    flex-direction: column;
  }

  .team_card {
    width: 100%;
    min-width: 100%;
    max-width: 320px;
    padding: 1.8rem 1.5rem;
  }

  .team_logo_container {
    width: 120px;
    height: 120px;
    margin-bottom: 1.2rem;
  }

  .team_name {
    font-size: 1.5rem;
  }

  .team_members {
    font-size: 0.85rem;
  }

  .vs_divider {
    height: auto;
    margin: 1rem 0;
  }

  .vs_text {
    font-size: 1.3rem;
    padding: 0.6rem 1.2rem;
    letter-spacing: 2px;
  }
}

@media (max-width: 600px) {
  .season1_container {
    padding: 1.5rem 1rem;
    gap: 1.5rem;
  }

  .season1_container .headline {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .season1_content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .season1_video_wrapper {
    padding-bottom: 56.25%;
  }

  .season1_subtitle {
    font-size: 1.1rem;
  }

  .season1_teams_section {
    gap: 0.8rem;
    width: 100%;
  }

  .season1_team_card {
    width: 100%;
    max-width: none;
    padding: 1.2rem;
    margin: 0 auto;
  }

  .season1_team_logo_container {
    width: 80px;
    height: 80px;
    margin-bottom: 0.8rem;
  }

  .season1_team_name {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
  }

  .season1_team_members {
    font-size: 0.75rem;
    line-height: 1.5;
  }

  .season1_vs_text {
    font-size: 1rem;
    padding: 0.4rem 0.8rem;
    letter-spacing: 1px;
  }

  .countdown_timer {
    padding: 1.5rem 1rem;
    gap: 0.25rem;
  }

  .countdown_number {
    font-size: 1.8rem;
    min-width: 70px;
  }

  .countdown_unit {
    font-size: 0.65rem;
  }

  .countdown_separator {
    font-size: 1.3rem;
  }

  .teams_section {
    gap: clamp(0.8rem, 2vw, 1.5rem);
    flex-direction: column;
    width: 91vw;
    padding: 0 clamp(0.25rem, 1vw, 0.5rem);
    box-sizing: border-box;
  }

  .team_card {
    width: 100%;
    min-width: auto !important;
    max-width: 85vw;
    padding: clamp(1rem, 2vw, 1.5rem);
  }

  .team_logo_container {
    width: 110px;
    height: 110px;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    border-width: 2px;
  }

  .team_logo {
    width: 100%;
    height: 100%;
  }

  .team_name {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
  }

  .team_members {
    font-size: 0.8rem;
    line-height: 1.6;
  }

  .vs_text {
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    letter-spacing: 1.5px;
    border-width: 2px;
  }

  .season2_container {
    padding: 1.5rem 1rem;
  }
}

.main5 {
  background-color: var(--background2);
  min-height: 10rem;
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 3rem clamp(0.5rem, 2vw, 1rem);
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  overflow-x: hidden;
}

.main5_admin_div {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 1rem 0.5rem 1rem;
}

.main5_admins_div {
  display: flex;
  background: linear-gradient(135deg, #2a2e35, #1a1d22);
  border-radius: var(--roundness);
  margin-top: 1rem;
  margin-right: clamp(0.5rem, 2vw, 1rem);
  margin-left: clamp(0.5rem, 2vw, 1rem);
  border: 1px solid rgba(2, 219, 2, 0.2);
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  min-height: auto;
  box-sizing: border-box;
}

.main5_admins_div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent, rgba(2, 219, 2, 0.1));
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
  pointer-events: none;
}

.main5_admins_div:hover {
  border-color: var(--accent1);
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 40px rgba(2, 219, 2, 0.2), inset 0 0 20px rgba(2, 219, 2, 0.08);
}

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

.main5_admins_dev_type1 {
  flex-direction: row;
  padding-right: 2rem;
}

.main5_admins_dev_type2 {
  flex-direction: row-reverse;
  padding-left: 2rem;
}

.main5_admins_img {
  border-radius: var(--roundness);
  max-width: 45%;
  max-height: 100%;
  align-self: center;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  filter: brightness(1);
}

.main5_admins_div:hover .main5_admins_img {
  transform: scale(1.08) rotate(-3deg);
  filter: brightness(1.15) saturate(1.2);
}

.main5_admins_description_div {
  display: flex;
  justify-content: center;
  justify-self: center;
  max-width: 60%;
  padding-top: 2rem;
  padding-bottom: 2rem;
  flex-direction: column;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.main5_admins_description_rank {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.main5_admins_description_rank_owner {
  color: #3498db;
}

.main5_admins_description_rank_admin {
  color: #f82f2f;
  text-shadow: 0 0 10px rgba(248, 47, 47, 0.5);
}

.main5_admins_description_title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent1);
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  margin-bottom: 0.5rem;
}

.main5_admins_div:hover .main5_admins_description_title {
  color: #fff;
  text-shadow: 0 0 8px rgba(2, 219, 2, 0.4);
  transform: scale(1.05);
}

.main5_admins_description {
  margin-bottom: auto;
  font-size: 1.2rem;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.main5_supporter_div {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1rem, 2vw, 1.2rem);
  max-width: 100%;
  width: 100%;
  margin-bottom: 2rem;
  margin-top: 2rem;
  padding: 0 clamp(0.5rem, 2vw, 2rem);
  box-sizing: border-box;
}

.main5_supporters_div {
  width: 100%;
  max-width: 100%;
  min-height: auto;
  background: linear-gradient(135deg, #2a2e35, #1a1d22);
  border-radius: var(--roundness);
  display: flex;
  border: 1px solid rgba(2, 219, 2, 0.2);
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  flex-direction: row;
  padding: clamp(0.8rem, 2vw, 1.5rem);
  gap: clamp(0.8rem, 2vw, 1rem);
  box-sizing: border-box;
}

.main5_supporters_div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent, rgba(2, 219, 2, 0.1));
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
  pointer-events: none;
}

.main5_supporters_div:hover {
  border-color: var(--accent1);
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 18px 40px rgba(2, 219, 2, 0.2), inset 0 0 20px rgba(2, 219, 2, 0.08);
}

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

.main5_supporters_img {
  border-radius: var(--roundness);
  max-width: 25%;
  max-height: 100%;
  align-self: center;
  margin: clamp(0.5rem, 1vw, 1rem);
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  filter: brightness(1);
  flex-shrink: 0;
  min-width: clamp(60px, 15%, 100px);
  aspect-ratio: 1;
  object-fit: cover;
}

.main5_supporters_div:hover .main5_supporters_img {
  transform: scale(1.12) rotate(3deg);
  filter: brightness(1.15) saturate(1.2);
}

.main5_supporters_description_div {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 1rem 1.5rem 1rem 1rem;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.main5_supporters_description_rank {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.main5_supporters_description_rank_supporter {
  color: #ff4800;
  text-shadow: 0 0 10px rgba(255, 72, 0, 0.5);
}

.main5_supporters_description_title {
  text-align: center;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 700;
  color: var(--accent1);
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  margin-bottom: 0.5rem;
  word-break: break-word;
}

.main5_supporters_div:hover .main5_supporters_description_title {
  color: #fff;
  text-shadow: 0 0 8px rgba(2, 219, 2, 0.4);
  transform: scale(1.05);
}

.main5_supporters_description {
  font-size: clamp(0.85rem, 2vw, 1.2rem);
  margin-bottom: auto;
  line-height: 1.6;
  position: relative;
  z-index: 2;
  word-break: break-word;
}
  transform: scale(1.05);
}

.main5_supporters_description {
  font-size: 1.2rem;
  margin-bottom: auto;
}

/* ==================== HOW TO JOIN Section ====================  */
.main3 {
  background: linear-gradient(135deg, var(--background1), var(--background2));
  min-height: 10rem;
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 3rem clamp(0.5rem, 2vw, 1rem);
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  overflow-x: hidden;
}

.main3_join_div_div {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap-reverse;
  margin: clamp(0.5rem, 2vw, 1rem);
  gap: clamp(1rem, 3vw, 2rem);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.main3_join_div {
  display: flex;
  flex-direction: column;
  width: clamp(15rem, 90vw, 20rem);
  height: auto;
  min-height: 8rem;
  background: linear-gradient(135deg, #2a2e35, #1a1d22);
  border-radius: var(--roundness);
  margin: 0;
  padding: clamp(0.7rem, 2vw, 1rem);
  border: 1px solid rgba(2, 219, 2, 0.2);
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.main3_join_div::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(2, 219, 2, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.5s, transform 0.5s;
  transform: translate(0, 0) rotate(0deg);
}

.main3_join_div:hover::before {
  opacity: 1;
  transform: translate(25%, 25%) rotate(45deg);
}

.main3_join_div:hover {
  border-color: var(--accent1);
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 12px 30px rgba(2, 219, 2, 0.2), inset 0 0 15px rgba(2, 219, 2, 0.08);
}

.main3_join_title {
  text-align: center;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 700;
  color: var(--accent1);
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 1px;
  word-break: break-word;
}

.main3_join_div:hover .main3_join_title {
  text-shadow: 0 0 8px rgba(2, 219, 2, 0.5);
  transform: scale(1.06);
}

.main3_join_content_div {
  display: flex;
  flex-direction: row;
  background-color: rgba(0, 0, 0, 0.3);
  height: 100%;
  border-radius: var(--roundness);
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.main3_join_div:hover .main3_join_content_div {
  background-color: rgba(2, 219, 2, 0.05);
}

.main3_join_categories {
  display: flex;
  flex-direction: column;
  text-align: right;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  line-height: 1.5;
  border-right: 3px solid rgba(2, 219, 2, 0.3);
  padding-right: clamp(0.5rem, 1vw, 0.75rem);
  font-weight: 600;
  transition: all 0.3s ease;
  word-break: break-word;
}

.main3_join_div:hover .main3_join_categories {
  border-right-color: var(--accent1);
}

.main3_join_values {
  display: flex;
  flex-direction: column;
  text-align: left;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  line-height: 1.5;
  border-left: 3px solid rgba(2, 219, 2, 0.3);
  padding-left: clamp(0.5rem, 1vw, 0.75rem);
  font-weight: 600;
  color: var(--accent1);
  transition: all 0.3s ease;
  word-break: break-word;
}

.main3_join_div:hover .main3_join_values {
  border-left-color: var(--accent1);
  text-shadow: 0 0 8px rgba(2, 219, 2, 0.4);
}

/* ==================== FOOTER ====================  */
.copyright {
  color: #ffffff99;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  font-size: clamp(0.75rem, 2vw, 0.95rem);
  word-break: break-word;
  text-align: center;
  line-height: 1.6;
}

.copyright:hover {
  color: var(--accent1);
  text-shadow: 0 0 15px rgba(2, 219, 2, 0.5);
  transform: translateY(-2px);
}

.copyright_div {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  width: 100%;
  background: linear-gradient(180deg, #0a0a0a, #1a1a1a);
  border-top: 1px solid rgba(2, 219, 2, 0.2);
  box-sizing: border-box;
  min-height: auto;
  animation: fadeInUp 0.6s ease;
  transition: all 0.3s ease;
}

.copyright_div:hover {
  background: linear-gradient(180deg, #0f0f0f, #1f1f1f);
  border-top-color: rgba(2, 219, 2, 0.35);
  box-shadow: 0 -4px 20px rgba(2, 219, 2, 0.1);
}
  border-top: 1px solid rgba(2, 219, 2, 0.2);
  position: relative;
  z-index: 1;
}

/* ==================== SMOOTH CARD HOVER EFFECTS ====================  */
.main5_admins_div,
.main5_supporters_div {
  transition:
    transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.4s ease,
    background-color 0.3s ease,
    border-color 0.3s ease;
  cursor: pointer;
  will-change: transform;
}

/* ==================== BLOODMOON FDG ENGAGEMENT SECTION ====================  */
.bloodmoon_section {
  width: 100%;
  max-width: 100%;
  padding: clamp(2rem, 5vw, 4rem) clamp(0.5rem, 3vw, 2rem);
  background: linear-gradient(135deg, rgba(2, 219, 2, 0.05), rgba(139, 0, 0, 0.08));
  border-top: 2px solid rgba(2, 219, 2, 0.15);
  border-bottom: 2px solid rgba(139, 0, 0, 0.2);
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  overflow-x: hidden;
}

.bloodmoon_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
}

.bloodmoon_title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent1), #00ff00, #ff1744);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin: 0 0 1rem 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  word-break: break-word;
  line-height: 1.2;
}

.bloodmoon_subtitle {
  font-size: clamp(0.95rem, 2.5vw, 1.3rem);
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  margin: 0 0 1.5rem 0;
  font-weight: 500;
  max-width: 90vw;
  word-break: break-word;
  line-height: 1.5;
}

.bloodmoon_divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent1), transparent);
  border-radius: 2px;
  margin-top: 1rem;
  opacity: 0.8;
  animation: slideInRight 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Mobile BloodMoon Section */
@media only screen and (max-width: 600px) {
  .bloodmoon_section {
    padding: clamp(1.5rem, 4vw, 2.5rem) clamp(0.25rem, 1vw, 0.5rem);
  }

  .bloodmoon_title {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    margin-bottom: 0.75rem;
  }

  .bloodmoon_subtitle {
    font-size: clamp(0.85rem, 2vw, 1rem);
    margin-bottom: 1rem;
  }

  .bloodmoon_divider {
    margin-top: 0.75rem;
  }
}

/* ==================== RESPONSIVE DESIGN ====================  */
@media (max-width: 1599px) {
  .main2_features_div {
    margin-left: 10rem;
    margin-right: 10rem;
  }
}

@media (max-width: 1279px) {
  .main2_features_div {
    margin-left: 0rem;
    margin-right: 0rem;
  }

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

@media only screen and (max-width: 768px) {
  .headline {
    font-size: 2.2rem;
  }

  .main3_join_div_div {
    flex-direction: column;
  }

  .main5_supporter_div {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }

  /* Improve spacing on all main sections */
  .main1,
  .main2,
  .main3,
  .main4,
  .main5,
  .main6 {
    padding: 2rem 0.5rem !important;
  }

  /* Mobile join section fix */
  .main3_join_div_div {
    gap: 1rem;
  }

  .main3_join_div {
    width: 100% !important;
    min-width: 100% !important;
    max-width: none !important;
  }

  /* Mobile features responsive */
  .main2_features_div {
    grid-template-columns: 1fr !important;
    padding: 0 1rem;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .desktop_navbar {
    display: none !important;
  }
  .mobile_navbar {
    display: flex !important;
  }
  .language-switcher-desktop {
    display: none !important;
  }
  .language-switcher-mobile {
    display: flex !important;
  }

  /* ==================== MOBILE CORE STYLES ====================  */
  /* Prevent zoom on input focus */
  input, button, select, textarea {
    font-size: 16px;
  }

  /* Smooth scrolling behavior */
  html {
    scroll-behavior: smooth;
    -webkit-user-select: none;
    user-select: none;
  }

  body {
    -webkit-touch-callout: none;
    overflow-x: hidden;
  }

  /* ==================== MOBILE FEATURES FIX ====================  */
  .main2_features_div {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem !important;
    margin: 0 !important;
  }

  .main2_feature {
    width: calc(100% - 2rem);
    max-width: 90vw;
    min-width: auto !important;
    flex: 0 0 auto;
    border-radius: 1.2rem;
    padding: 1.2rem;
    margin: 0 auto 1.5rem;
    height: auto;
    background: linear-gradient(135deg, rgba(42, 46, 53, 0.9), rgba(26, 29, 34, 0.9)) !important;
    border: 2px solid rgba(2, 219, 2, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
  }

  .main2_feature:active {
    transform: scale(0.98);
    border-color: var(--accent1);
  }

  .main2_feature_img {
    width: 100%;
    height: auto;
    min-height: 100px;
    max-height: 150px;
    object-fit: contain;
    border-radius: 0.8rem;
    margin-bottom: 0.8rem;
    padding: 8px 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .main2_feature_headline {
    font-size: 1.1rem !important;
    margin-bottom: 0.5rem !important;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .main2_feature_text {
    font-size: 0.85rem !important;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    opacity: 0.85;
  }

  /* ==================== MOBILE ANIMATIONS & UX ====================  */
  /* Elements slide up on mobile */
  .fade-in-up {
    animation: slideUpMobile 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
  }

  .main2_feature {
    animation: slideUpMobile 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
  }

  /* Reduce text overflow - make sections feel less dense */
  .main2_feature_headline,
  .main2_feature_text,
  .main3_discord_text,
  .main3_join_description,
  .season1_team_members,
  .season2_team_members {
    word-break: break-word;
    overflow-wrap: break-word;
  }

  /* Use icons/emojis more, text less */
  .feature-icon {
    font-size: 2.5rem !important;
    margin-bottom: 0.5rem;
    display: block;
  }

  .main3_join_div {
    animation: cardSlideIn 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
    max-height: 250px;
  }

  .main3_join_description {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.9rem;
  }

  /* Touch-friendly sizing */
  button, a:not([href*="//facebook"]):not([href*="discord"]) {
    min-height: 44px;
    min-width: 44px;
  }

  /* Touch-friendly sizing for all interactive elements */
  button, a, .main5_admins_div, .main5_supporters_div, .main3_join_div,
  .main2_feature, .team_card, .season1_team_card {
    min-height: 48px;
    min-width: 48px;
    transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  /* Mobile button improvements */
  .main3_join_div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: clamp(1rem, 3vw, 1.5rem);
    min-height: 80px;
  }

  /* Join CTA button styling for better mobile engagement */
  a[href="#join"], a[href*="discord"],
  .join-cta, .main3_discord_button, .main4_dc_button_a {
    background: linear-gradient(135deg, var(--accent1), #04c804) !important;
    color: #000 !important;
    padding: 1rem 1.5rem !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    border-radius: 0.6rem !important;
    box-shadow: 0 5px 15px rgba(2, 219, 2, 0.3) !important;
    transition: all 0.2s ease !important;
    display: inline-block !important;
    text-decoration: none !important;
    min-height: 48px;
    min-width: 120px;
    text-align: center;
    line-height: 1.5;
  }

  a[href="#join"]:active, a[href*="discord"]:active,
  .join-cta:active, .main3_discord_button:active, .main4_dc_button_a:active {
    transform: scale(0.95);
    box-shadow: 0 3px 10px rgba(2, 219, 2, 0.2) !important;
  }

  .lang-btn {
    padding: 0.5rem 0.85rem !important;
    font-size: 0.9rem !important;
    min-height: 40px;
    min-width: 40px;
  }

  /* Ensure buttons don't get cut off */
  .main3 a[href*="discord"],
  .main3 .main3_discord_button,
  .main4_dc_button_a {
    max-width: 90vw;
    word-break: break-word;
  }

  /* Mobile headline sizing */
  .headline {
    font-size: 1.9rem;
    margin-right: 1rem;
    margin-left: 1rem;
    animation: slideUpMobile 0.4s ease !important;
  }

  /* Mobile feature cards spacing */
  .main2_features_div {
    padding: 1.5rem 0.75rem !important;
    gap: 0.8rem !important;
  }

  /* Mobile headline styling */
  .main2 {
    padding: 2rem 0 1rem 0 !important;
  }

  .main2 .headline {
    padding: 0 1rem !important;
    margin-bottom: 1.5rem !important;
  }

  /* Mobile Discord section - make more engaging */
  .main3_discord_icon_div {
    max-height: 200px;
    overflow: hidden;
  }

  .main3_discord_text {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .main3_discord_button {
    padding: 0.8rem 1.5rem !important;
    font-size: 1rem !important;
    margin-top: 1rem !important;
    background: var(--accent1) !important;
    color: #000 !important;
    font-weight: 700 !important;
    border-radius: 0.6rem !important;
    transition: all 0.2s ease !important;
  }

  .main3_discord_button:active {
    transform: scale(0.95);
  }

  /* Mobile hero section */
  .main1_logo {
    max-width: 16rem;
    animation: scalePopIn 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
  }

  .main1_description {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    animation: slideUpMobile 0.5s ease 0.1s both !important;
    word-wrap: break-word;
  }

  .main1_ipcopier {
    display: none;
  }

  /* Mobile card interactions with proper positioning */
  .main2_feature {
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
  }

  .main2_feature:active {
    animation: tapPulse 0.2s ease;
    transform: scale(0.98);
    box-shadow: 0 4px 15px rgba(2, 219, 2, 0.25);
  }

  /* Mobile feature cards with smooth stagger */
  .main2_feature:nth-child(1) {
    animation-delay: 0.05s;
  }
  .main2_feature:nth-child(2) {
    animation-delay: 0.1s;
  }
  .main2_feature:nth-child(3) {
    animation-delay: 0.15s;
  }
  .main2_feature:nth-child(4) {
    animation-delay: 0.2s;
  }
  .main2_feature:nth-child(5) {
    animation-delay: 0.25s;
  }

  /* Mobile admin images */
  .main5_admins_img {
    align-self: center;
    padding-top: 1rem;
    animation: scalePopIn 0.5s ease !important;
  }

  .main5_admins_div {
    flex-direction: column;
    min-height: 0;
    animation: slideUpMobile 0.5s ease !important;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .main5_admins_div:active,
  .main5_supporters_div:active {
    animation: tapPulse 0.2s ease;
    transform: scale(0.98);
    box-shadow: 0 4px 15px rgba(2, 219, 2, 0.2);
  }

  .main5_admins_description_div {
    max-width: 100%;
    padding: 2rem;
  }

  /* Mobile Discord section */
  .main4_dc_div {
    flex-direction: column;
    margin: clamp(0.5rem, 2vw, 1.5rem) auto;
    gap: 1rem;
    max-width: 95vw;
    padding: 0;
  }

  .main4_dc_widget {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 250px;
    margin: 0 auto;
  }

  .main4_dc_description_div {
    padding: clamp(1rem, 3vw, 1.5rem);
    width: 100%;
  }

  .main4_dc_description_title {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    margin-bottom: clamp(0.5rem, 1.5vw, 1rem);
  }

  .main4_dc_description {
    font-size: clamp(0.85rem, 2vw, 1rem);
    margin-bottom: clamp(0.5rem, 1.5vw, 1rem);
  }

  .main4_dc_button_a {
    min-height: 45px;
    padding: 0.75rem 1.5rem;
    font-size: clamp(0.9rem, 2vw, 1rem);
  }

  .main4_dc_button {
    transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .main4_dc_button:active {
    animation: tapPulse 0.15s ease;
    transform: scale(0.96);
  }

  /* Mobile join section */
  .main3_join_div {
    min-width: auto;
    max-width: 90vw;
    margin-left: auto;
    margin-right: auto;
    min-height: 9rem;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
  }

  .main3_join_div:active {
    animation: tapPulse 0.2s ease;
    transform: scale(0.96);
    box-shadow: 0 8px 20px rgba(2, 219, 2, 0.3);
  }

  .main3_join_content_div {
    padding: 1rem;
  }

  .main5_admins_dev_type1 {
    padding-right: 0;
  }

  .main5_admins_dev_type2 {
    padding-left: 0;
  }

  /* Mobile link items with smooth interactions */
  .mobile-link-item {
    transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
    animation: slideUpMobile 0.3s ease backwards;
  }

  .mobile-link-item:nth-child(2) {
    animation-delay: 0.05s;
  }
  .mobile-link-item:nth-child(3) {
    animation-delay: 0.1s;
  }
  .mobile-link-item:nth-child(4) {
    animation-delay: 0.15s;
  }
  .mobile-link-item:nth-child(5) {
    animation-delay: 0.2s;
  }

  .mobile-link-item:active {
    animation: tapPulse 0.15s ease;
    background-color: rgba(2, 219, 2, 0.15);
  }

  /* Mobile menu entrance animation */
  #mobile_navbar_links {
    animation: swipeInFromBottom 0.3s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
  }

  /* Mobile admin section improvements */
  .main5_supporters_div {
    width: 100% !important;
    max-width: none !important;
    flex-direction: column !important;
    padding: 1rem 0.5rem !important;
    gap: 1.2rem !important;
  }

  .main5_supporter_card {
    flex: 1 !important;
    padding: 1rem !important;
    border-radius: 0.8rem !important;
  }

  .main5_supporter_img {
    width: 70px !important;
    height: 70px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
  }

  .main5_supporter_info {
    flex: 1;
  }

  .main5_supporter_name {
    font-size: 1rem !important;
    font-weight: 700 !important;
    margin-bottom: 0.2rem !important;
  }

  .main5_supporter_role {
    font-size: 0.8rem !important;
    opacity: 0.8 !important;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .main5_supporters_img {
    max-width: 80px;
    height: 80px;
    object-fit: cover;
  }

  .main5_supporters_description_div {
    flex: 1;
  }

  /* ==================== MOBILE OVERFLOW PREVENTION ====================  */
  /* Ensure no horizontal scroll */
  html, body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden !important;
  }

  * {
    max-width: 100%;
  }

  /* Fix section padding to prevent overflow */
  .mainflex, .main1, .main2, .main3, .main4, .main5, .main6,
  .season1_container, .season2_container {
    width: 100vw;
    padding-left: clamp(0.25rem, 1vw, 0.5rem) !important;
    padding-right: clamp(0.25rem, 1vw, 0.5rem) !important;
    box-sizing: border-box;
  }

  .countdown_label {
    font-size: clamp(0.85rem, 2vw, 1.1rem);
    overflow-wrap: break-word;
  }

  /* ==================== END MOBILE ANIMATIONS & UX ====================  */
}

@media only screen and (max-width: 360px) {
  .main3_join_categories {
    font-size: 1rem;
  }
  .main3_join_values {
    font-size: 1rem;
  }
  .main3_join_div {
    min-width: 10rem;
    padding: 0.5rem;
  }
  .main3_join_div_div {
    margin: 0.25rem;
  }
}

/* ============================= */
/*         CUSTOM CURSOR         */
/* ============================= */

@media (min-width: 769px) {
  body {
    cursor: url("Join/cur1.cur"), auto;
  }
  .language-switcher-mobile {
    display: none !important;
  }
  a,
  button,
  .main5_admins_div,
  .main5_supporters_div,
  .desktop_navbar_link,
  .desktop_navbar_link2_div,
  .main2_feature,
  .main3_join_div,
  .main4_dc_button_a {
    cursor: url("Join/cur2.cur"), pointer;
  }
}

