:root {
  --primary: #bb2525;
  --primary-light: #d84a4a;
  --dark: #070707;
  --card: #121212;
  --text: #f3f3f3;
  --muted: #a9a9a9;
  --border: rgba(255,255,255,0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  transition: 0.35s ease;
}

.header-scrolled {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.navbar {
  max-width: 1450px;
  margin: auto;
  padding: 24px 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-left,
.nav-right {
  flex: 1;
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-right {
  justify-content: flex-end;
}

.logo {
  flex: 0.5;
  display: flex;
  justify-content: center;
}

.logo img {
  width: 105px;
  transition: 0.4s ease;
}

.logo img:hover {
  transform: scale(1.08);
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: 0.3s ease;
}

nav a:hover {
  color: var(--primary-light);
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--primary-light);
  transition: 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(0,0,0,0.92),
      rgba(0,0,0,0.45)
    ),
    url("../images/landing.jpg");
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.hero-content {
  max-width: 1450px;
  width: 100%;
  margin: auto;
  padding: 0 45px;
}

.hero-text {
  max-width: 720px;
}

.hero-text h1 {
  font-size: 5.5rem;
  margin-bottom: 25px;
  line-height: 0.95;
}

.hero-text p {
  color: #d0d0d0;
  line-height: 1.9;
  margin-bottom: 35px;
}

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

.button {
  padding: 15px 30px;
  border-radius: 12px;
  text-decoration: none;
  color: white;
  background: var(--primary);
  transition: 0.35s ease;
  font-weight: 600;
}

.button:hover {
  background: var(--primary-light);
  transform: translateY(-4px);
}

.button-secondary {
  background: rgba(255,255,255,0.08);
}

.section {
  max-width: 1450px;
  margin: auto;
  padding: 120px 45px;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 70px;
}

.operations-wrapper {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.operation-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  transition: 0.4s ease;
}

.operation-card:hover {
  transform: translateY(-8px);
  border-color: rgba(216,74,74,0.35);
}

.operation-row {
  display: flex;
  align-items: center;
  gap: 60px;
}

.operation-row.reverse {
  flex-direction: row-reverse;
}

.operation-image {
  flex: 1;
}

.operation-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.operation-text {
  flex: 1;
  padding: 40px;
}

.operation-tag {
  display: inline-block;
  margin-bottom: 18px;
  background: rgba(187,37,37,0.15);
  color: #ff6b6b;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 700;
}

.operation-text h3 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.operation-text p {
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 20px;
}

.operation-stats {
  display: flex;
  gap: 20px;
  margin-top: 35px;
  flex-wrap: wrap;
}

.stat-box {
  min-width: 120px;
  padding: 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
}

.stat-box h4 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.stat-box span {
  color: var(--muted);
}

.extended-footer {
  background: linear-gradient(to top, #050505, #0f0f0f);
  padding: 90px 45px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
  max-width: 1450px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer-logo img {
  width: 95px;
  margin-bottom: 25px;
}

.footer-logo p {
  color: var(--muted);
  line-height: 1.9;
}

.footer-socials {
  display: flex;
  gap: 18px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.footer-socials a {
  text-decoration: none;
  color: white;
  background: rgba(255,255,255,0.06);
  padding: 12px 18px;
  border-radius: 12px;
}

.footer-column h4 {
  margin-bottom: 25px;
}

.footer-column a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 14px;
  transition: 0.3s ease;
}

.footer-column a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-bottom {
  background: #050505;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 24px 45px;
}

.footer-bottom-inner {
  max-width: 1450px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  color: #9d9d9d;
}

.status-online {
  color: #57ff89;
  font-weight: 700;
}

.discord-link {
  color: #7289da;
  text-decoration: none;
  font-weight: 700;
}

.fade-in {
  animation: fadeUp 1s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(45px);
  }

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

@media(max-width: 1100px) {

  .operation-row,
  .operation-row.reverse {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 4rem;
  }
}

@media(max-width: 900px) {

  .navbar {
    flex-direction: column;
    gap: 20px;
  }

  .nav-left,
  .nav-right {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-text h1 {
    font-size: 3rem;
  }

  .section {
    padding: 100px 25px;
  }

  .hero-content {
    padding: 0 25px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

.button.secondary {
  background: #2a2a2a;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.1);
}

.button.secondary:hover {
  background: #3a3a3a;
}

.feature-table {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.feature-icon {
  width: 28px;
  text-align: center;
  font-size: 16px;
}

.feature-icon.yes {
  color: #3ddc97;
}

.feature-icon.no {
  color: #ff5c5c;
}

.button-group {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.button.secondary {
  background: #2a2a2a;
  color: #fff;
  border: none;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 6px;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #1c1c1c;
  padding: 20px;
  width: 500px;
  border-radius: 10px;
  color: #fff;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close {
  cursor: pointer;
  font-size: 22px;
}

.requirements-table {
  width: 100%;
  margin-top: 15px;
  border-collapse: collapse;
}

.requirements-table td,
.requirements-table th {
  padding: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}