/* ===== BASE & VARIABLES ===== */
:root {
  --primary: #00cc66;
  --secondary: #1a1a1a;
  --accent: #ffcc00;
  --light: #f8f9fa;
  --dark: #121212;
  --glow: 0 0 15px rgba(0, 204, 102, 0.7);
  --red-corner: #ff3333;
  --blue-corner: #007bff;
  --glow-blue: 0 0 15px rgba(0, 123, 255, 0.7);
  --glow-red: 0 0 15px rgba(255, 51, 51, 0.7);
  --transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

body {
  font-family: "Roboto", sans-serif;
  background: linear-gradient(135deg, #0a0a0a 0%, #121212 100%);
  color: var(--light);
  overflow-x: hidden;
}

.auth-body {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== COMPONENTS ===== */
.btn-primary,
.btn-outline-primary {
  padding: 12px 30px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  box-shadow: var(--glow);
}

.btn-primary:hover {
  background-color: #00b359;
  border-color: #00b359;
  box-shadow: 0 0 25px rgba(0, 204, 102, 0.9);
  transform: translateY(-3px);
}

.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary:hover {
  background-color: var(--primary);
  color: white;
  box-shadow: var(--glow);
  transform: translateY(-3px);
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: var(--primary);
  box-shadow: var(--glow);
  border-radius: 5px;
}

.section-title h2 {
  font-size: 3.5rem;
  text-shadow: var(--glow);
}

/* ===== HEADER & NAVBAR ===== */
.navbar {
  background-color: rgba(18, 18, 18, 0.98);
  padding: 15px 0;
  border-bottom: 2px solid var(--primary);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
  font-family: "Oswald", sans-serif;
  font-size: 32px;
  color: var(--primary) !important;
  letter-spacing: 2px;
  text-shadow: var(--glow);
}

.navbar-brand span {
  color: var(--accent);
}

.nav-link {
  color: var(--light) !important;
  font-weight: 500;
  margin: 0 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary);
  transition: width 0.3s ease;
  box-shadow: var(--glow);
}

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

.nav-link:hover {
  color: var(--primary) !important;
}

.navbar-toggler {
  border-color: var(--primary);
  box-shadow: var(--glow);
}

/* ===== HERO SECTION ===== */
.hero {
  height: 100vh;
  background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0.9) 100%
    ),
    url("images/back-img.png") no-repeat center center/cover;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    transparent 0%,
    rgba(0, 204, 102, 0.1) 100%
  );
  pointer-events: none;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 5rem;
  margin-bottom: 25px;
  text-shadow: 0 0 20px rgba(0, 204, 102, 0.8);
  animation: pulse 2s infinite;
  line-height: 1.1;
}

@keyframes pulse {
  0% {
    text-shadow: 0 0 15px rgba(0, 204, 102, 0.7);
  }
  50% {
    text-shadow: 0 0 25px rgba(0, 204, 102, 0.9);
  }
  100% {
    text-shadow: 0 0 15px rgba(0, 204, 102, 0.7);
  }
}

.hero p {
  font-size: 1.4rem;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons .btn {
  margin: 0 15px;
  min-width: 180px;
}

/* ===== ABOUT SECTION ===== */
.section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: var(--primary);
  box-shadow: var(--glow);
  border-radius: 5px;
}

.section-title h2 {
  font-size: 3.5rem;
  text-shadow: var(--glow);
}

.about {
  padding: 120px 0;
  background: linear-gradient(to bottom, #121212 0%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}

.about:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(
    to right,
    transparent,
    var(--primary),
    transparent
  );
  box-shadow: var(--glow);
}

.about-img {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), var(--glow);
  transition: transform 0.5s ease;
}

.about-img:hover {
  transform: scale(1.02);
}

.about-content {
  padding-left: 40px;
}

.feature-box {
  background: rgba(26, 26, 26, 0.7);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  border-left: 4px solid var(--primary);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), var(--glow);
}

/* Fighters VS Section */

.fighter-navbar .btn {
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: 0.3s ease;
  border: 2px solid #00cc66;
  color: #00cc66;
  background: transparent;
}

.fighter-navbar .btn:hover,
.fighter-navbar .btn.active-tab {
  background-color: #00cc66;
  color: #fff;
}

.active {
  color: #fff;
  box-shadow: 0 0 15px rgba(0, 204, 102, 0.7);
}

.nav-link.active {
  position: relative;
  color: #00cc66 !important;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  height: 3px;
  width: 100%;
  border-radius: 2px;
}

.nav-link.active {
  color: #fff !important;

  border-radius: 5px;
}

.fighter-card {
  background: #111;
  color: #fff;
  padding: 15px;
  margin-bottom: 10px;
  border-left: 4px solid #00cc66;
  border-radius: 5px;
}

.fighters-vs {
  padding: 120px 0;
  background: linear-gradient(to bottom, #0a0a0a 0%, #121212 100%);
  position: relative;
  overflow: hidden;
}

.fighters-vs:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(
    to right,
    transparent,
    var(--primary),
    transparent
  );
  box-shadow: var(--glow);
}

.vs-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 0;
}

.social-contact {
  display: flex;
  gap: 15px;
  margin-top: 40px;
}

.social-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--light);
  font-size: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

.social-contact a:hover {
  background: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--glow);
}



.vs-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--dark);
  border: 5px solid var(--primary);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: var(--glow);
  animation: pulse 2s infinite;
}

.vs-title span {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary);
  text-shadow: var(--glow);
}

.fighter-card {
  background: var(--secondary);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.5s ease;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.fighter-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), var(--glow);
}

.fighter-header {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.fighter-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.fighter-card:hover .fighter-header img {
  transform: scale(1.1);
}

.fighter-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  padding: 20px;
}

.fighter-name {
  color: white;
  font-size: 2rem;
  margin-bottom: 5px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
}

.fighter-record {
  color: var(--primary);
  font-weight: bold;
  font-size: 1.2rem;
  text-shadow: var(--glow);
}

/* .fighter-info {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
} */

.fighter-bio {
  margin-bottom: 20px;
  flex-grow: 1;
}

.fighter-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.stat-item {
  text-align: center;
  padding: 10px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
}

.stat-value {
  color: var(--primary);
  font-size: 1.8rem;
  font-weight: bold;
  text-shadow: var(--glow);
}

.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
/* ===== TRAINERS SECTION ===== */
.trainers {
  padding: 120px 0;
  background: linear-gradient(to bottom, #121212 0%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}

.trainers:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(
    to right,
    transparent,
    var(--primary),
    transparent
  );
  box-shadow: var(--glow);
}

.trainer-card {
  background: var(--secondary);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.5s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  margin-bottom: 30px;
  height: 100%;
}

.trainer-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), var(--glow);
}

.trainer-img {
  height: 300px;
  overflow: hidden;
}

.trainer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}


input {
  color: white !important;
}


.trainer-card:hover .trainer-img img {
  transform: scale(1.1);
}

.trainer-info {
  padding: 25px;
  text-align: center;
}

.trainer-social {
  margin-top: 20px;
}

.trainer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--light);
  margin: 0 8px;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.trainer-social a:hover {
  background: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--glow);
}
/* ===== FOOTER ===== */
.footer {
  background: #0a0a0a;
  padding: 60px 0 30px;
  border-top: 3px solid #00cc66;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
}

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

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h4 {
  font-family: "Oswald", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #00cc66;
  position: relative;
  padding-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column h4:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #00cc66;
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(0, 204, 102, 0.7);
}

.footer-links {
  list-style: none;
}

.footer-link {
  margin-bottom: 15px;
}

.footer-link a {
  color: #aaa;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-link a:hover {
  color: #00cc66;
  transform: translateX(5px);
}

.footer-link a i {
  color: #00cc66;
  width: 20px;
  font-size: 1.1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-logo .logo-icon {
  font-size: 2.5rem;
  color: #00cc66;
  text-shadow: 0 0 15px rgba(0, 204, 102, 0.7);
}

.footer-logo .logo-text {
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  color: #00cc66;
  letter-spacing: 2px;
  text-shadow: 0 0 15px rgba(0, 204, 102, 0.7);
}

.footer-logo .logo-text span {
  color: #ffcc00;
}

.footer-about {
  color: #aaa;
  line-height: 1.7;
  margin-bottom: 25px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 40px;
  border-radius: 50%;
  background: #1a1a1a;
  color: #f8f9fa;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  border: 1px solid rgba(0, 204, 102, 0.3);
}

.social-link:hover {
  background: #00cc66;
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0, 204, 102, 0.7);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}


.newsletter-form input {
  padding: 14px 20px;
  border-radius: 5px;
  border: 2px solid #00cc66;
  background: rgba(0, 0, 0, 0.3);
  color: white;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}

.newsletter-form input:focus {
  border-color: #ffcc00;
  box-shadow: 0 0 15px rgba(255, 204, 0, 0.7);
}

.newsletter-form button {
  padding: 14px 20px;
  background: #00cc66;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 204, 102, 0.5);
}

.newsletter-form button:hover {
  background: #00b359;
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 204, 102, 0.8);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #777;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-links-bottom {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links-bottom a {
  color: #aaa;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links-bottom a:hover {
  color: #00cc66;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: var(--glow);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.scroll-top.active {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--primary-dark);
  transform: translateY(-5px);
}

/* ===== ANIMATIONS ===== */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

.fighter-animation {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--glow);
  animation: float 6s ease-in-out infinite;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1199px) {
  .hero h1 {
    font-size: 4rem;
  }
}

@media (max-width: 991px) {
  .hero h1 {
    font-size: 3.5rem;
  }
  .about-content {
    padding-left: 0;
    margin-top: 40px;
  }
  /* .vs-title { position: relative; margin: -30px auto 40px; transform: none; } */
  .auth-box {
    flex-direction: column;
  }
  .auth-left,
  .auth-right {
    padding: 40px;
  }
  .auth-left h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 767px) {
  a .admin-btn {
    padding: 5px 10px;
    width: 100px;
    margin-top: 12px !important;
  }
  a .staff-btn {
    padding: 5px 10px;
    font-size: 10px !important;
    width: 100px !important;
  }
  .hero h1 {
    font-size: 2.8rem;
  }
  .section-title h2 {
    font-size: 2.8rem;
  }
  .hero-buttons .btn {
    display: block;
    margin: 15px auto;
    max-width: 250px;
  }
  .auth-left h1 {
    font-size: 2.3rem;
  }
  .auth-right {
    padding: 30px 20px;
  }
  .logo h2 {
    font-size: 2rem;
  }
  .form-title h3 {
    font-size: 1.8rem;
  }
}

textarea {
  color: white !important;
}

@media (max-width: 575px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .section-title h2 {
    font-size: 2.2rem;
  }
  .remember-forgot {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .vs-text {
    display: flex;

    margin-left: 25%;
  }
  .right-content {
    font-size: 13px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .fa-trophy-none {
    display: none;
  }
}

