:root {
  --web_color_primary: #06070c;
  --web_color_secondary: #0c0d15;
  --web_color_secondary_hover: #171825;
  --web_color_secondary_border: #141623;
  --border-dark: #1a1c2b;
  --main-color: rgba(155, 127, 212, 1);
  --main-color-dark: rgb(123, 104, 165);
  --text_primary: #ffffff;
  --text_secondary: #afafaf;
  --top_nav_height: 40px;
}

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

body {
  background-color: var(--web_color_primary);
  color: var(--text_primary);
  font-family: "Oswald", sans-serif;
  overflow-x: hidden;
}

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

.hidden {
  display: none !important;
}

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

/* ---------- NAVBAR ---------- */
.top_nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(12, 13, 21, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--web_color_secondary_border);
  border-radius: 12px;
  padding: 0 20px;
  height: var(--top_nav_height);
  width: calc(100% - 48px);
  max-width: 1200px;
  z-index: 1000;
}

.top_nav_left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top_nav_buttons {
  display: flex;
  align-items: center;
  height: calc(var(--top_nav_height) - 2px); /* calc - (border * 2) */
}

.top_nav_right {
  display: flex;
  align-items: center;
  gap: 12px;
}

#auth_area {
  display: flex;
  align-items: center;
  height: calc(var(--top_nav_height) - 2px); /* calc - (border * 2) */
}

.top_nav_logo {
  height: 44px;
  width: auto;
  cursor: pointer;
  filter: drop-shadow(0 0px 2px var(--main-color));
}

/* Auth */
.top_nav_user {
  display: flex;
  align-items: center;
  cursor: pointer;
  border: 2px solid transparent;
  border-left: 2px solid var(--web_color_secondary_border);
  transform: skew(-15deg);
  padding: 6px;
  gap: 4px;
  height: calc(var(--top_nav_height) - 2px);
  transition: border-color 0.2s, background-color 0.2s;
  background-color: var(--web_color_secondary);
}

.top_nav_user:hover {
  background-color: var(--web_color_primary);
  border: 2px solid var(--main-color);
}

.top_nav_user a {
  color: var(--text_primary);
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}

.top_nav_user svg {
  width: 18px;
  height: 18px;
}

.top_nav_button,
.top_nav_button_secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: skew(-15deg);
  padding: 6px 14px;
  transition: border-color 0.2s, background-color 0.2s;
  border: 2px solid transparent;  
  height: 100%;
  margin-right: 1px;
}

.top_nav_button {
  background-color: var(--web_color_primary);
}

.top_nav_button_secondary {
  background-color: var(--web_color_secondary);
}

.top_nav_button_start {
  border-left: 2px solid var(--border-dark);
}

.top_nav_button_end {
  border-right: 2px solid var(--border-dark);
}

.top_nav_button:hover {
  background-color: var(--web_color_secondary);
  border: 2px solid var(--main-color);
}

.top_nav_button_secondary:hover {
  background-color: var(--web_color_primary);
  border: 2px solid var(--main-color);
}

.top_nav_button span {
  display: block;
  color: var(--text_primary);
  font-size: 16px;
  font-weight: 400;
}

.top_nav_user_avatar {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  object-fit: cover;
}

#user_name {
  color: var(--text_primary);
  font-size: 16px;
  font-weight: 400;
}

/* Mobile menu */
.mobile_menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.mobile_menu span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text_primary);
  border-radius: 2px;
  transition: 0.3s;
}
/* ---------- NAVBAR ---------- */

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
  overflow: hidden;
}

.hero_bg {
  position: absolute;
  inset: 0;
  background-color: var(--web_color_primary);
}

.hero_content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.hero_text {
  flex: 1;
  max-width: 600px;
}

.hero_title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0;
}

.hero_accent {
  background: linear-gradient(135deg, var(--main-color), var(--main-color-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero_desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text_secondary);
  margin-bottom: 2em;
  line-height: 1.6;
}

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

.hero_logo img {
  width: 600px;
  filter: drop-shadow(0 0px 20px var(--main-color));
  flex-shrink: 0;
}

.server_status_div {
  position: absolute;
  bottom: 2.5%;
  width: 100%;
  left: 0px;
  display: flex;
  justify-content: center;
}

.server_status {
  margin-left: 15px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border: 1px solid var(--web_color_secondary_border);
  border-radius: 12px;
  backdrop-filter: blur(8px);
}

.server_status_indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #00ff00;
  border: 2px solid rgb(40, 95, 36);
}

.server_status_wrapper {
  position: relative;
  min-width: 140px;
  text-align: center;
}

.server_status .title {
  color: var(--text_primary);
  font-size: 14px;
  transition: opacity 0.3s;
  white-space: nowrap;
}

.server_status .label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  color: var(--text_primary);
  font-size: 14px;
  transition: opacity 0.3s;
  white-space: nowrap;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.server_status:hover .title {
  opacity: 0;
}

.server_status:hover .label {
  opacity: 1;
}

.server_status .players {
  color: var(--text_secondary);
  font-size: 14px;
}
/* ---------- HERO ---------- */

.btn_primary,
.btn_secondary {
  padding: 14px 32px;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.btn_primary {
  background: var(--main-color);
  color: var(--text_primary);
  box-shadow: 0 0px 12px var(--main-color);
}

.btn_primary:hover {
  box-shadow: 0 0px 18px var(--main-color);
}

.btn_secondary {
  background: var(--web_color_secondary);
  color: var(--text_primary);
  border: 1px solid var(--border-dark);
}

.btn_secondary:hover {
  background: var(--web_color_secondary_hover);
  border: 1px solid var(--main-color);
}

/* ---------- SECTIONS ---------- */
.footer {
  padding: 50px 0;
}

.section {
  padding: 100px 0;
}

.section_dark {
  background-color: var(--web_color_primary);
}

.section_light {
  background-color: var(--web_color_secondary);
}
/* ---------- SECTIONS ---------- */

/* ---------- ABOUTUS ---------- */
.about_us_container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  aspect-ratio: 2 / 1;
  gap: 15px;
  padding: 15px;
  position: relative;
  border-radius: 12px;
}

.about_us_overlay {
  position: absolute;
  top: 14px;
  left: 14px;
  color: var(--text_secondary);
  width: 36%;
  height: 80%;
  clip-path: polygon(0 0, 55% 0, 95% 61.5%, 0 80%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  background-color: var(--web_color_secondary);
  font-weight: 400;
}

.about_us_overlay .big {
  font-size: 48px;
  color: var(--main-color);
  text-shadow: 2px 2px 6px var(--main-color);
}

.about_us_overlay p span {
  color: var(--main-color);
  font-weight: 600;
}

.about_us_overlay p {
  font-size: 20px;
}

.about_us_container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.about_us_left_top {
  grid-column: 1;
  grid-row: 1;
}

.about_us_left_bottom {
  grid-column: 1;
  grid-row: 2;
}

.about_us_right {
  grid-column: 2;
  grid-row: 1 / span 2;
}
/* ---------- ABOUTUS ---------- */

/* ---------- VIP ---------- */
.vip {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vip_text_big {
  font-size: 48px;
  color: var(--text_primary);
  margin-bottom: 50px;
}

.vip_options {
  display: flex;
  gap: 24px;
  justify-content: center;
  width: 100%;
  align-items: stretch;
}

.vip_option {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 350px;
  height: 500px;
  padding: 24px;
  border-radius: 12px;
  background-color: var(--web_color_secondary);
  border: 3px solid var(--web_color_secondary_border);
  transition: box-shadow 0.3s;
}

.vip_option_basic {
  border: 3px solid transparent;
  background-image: linear-gradient(var(--web_color_secondary), var(--web_color_secondary)), linear-gradient(135deg, rgb(170, 170, 170), rgb(220, 220, 220), rgb(180, 180, 180), rgb(210, 210, 210), rgb(160, 160, 160));
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.vip_option_basic:hover {
  box-shadow: 0 0 30px rgba(192, 192, 192, 0.2);
}

.vip_option_basic .vip_option_logo {
  filter: drop-shadow(0 0 8px rgba(192, 192, 192, 0.6));
}

.vip_option_basic .big {
  color: rgb(192, 192, 192);
}

.vip_option_basic .vip_option_button {
  background: linear-gradient(180deg, rgb(210, 210, 210), rgb(170, 170, 170));
  box-shadow: 0 0px 12px rgba(192, 192, 192, 0.5);
}

.vip_option_basic .vip_option_button:hover {
  box-shadow: 0 0px 18px rgba(192, 192, 192, 0.7);
}

.vip_option_plus {
  border: 3px solid rgb(255, 215, 0);
}

.vip_option_plus:hover {
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
}

.vip_option_plus .vip_option_logo {
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.vip_option_plus .big {
  color: rgb(255, 215, 0);
}

.vip_option_plus .vip_option_button {
  background: rgb(255, 215, 0);
  color: #000000;
  box-shadow: 0 0px 12px rgba(255, 215, 0, 0.5);
}

.vip_option_plus .vip_option_button:hover {
  box-shadow: 0 0px 18px rgba(255, 215, 0, 0.7);
}

.vip_option_ultimate {
  border: 3px solid transparent;
  background-image: linear-gradient(var(--web_color_secondary), var(--web_color_secondary)), linear-gradient(135deg, rgb(100, 80, 200), rgb(140, 110, 240), rgb(120, 95, 225), rgb(160, 130, 255), rgb(90, 70, 185));
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.vip_option_ultimate:hover {
  box-shadow: 0 0 30px rgba(130, 100, 240, 0.2);
}

.vip_option_ultimate .vip_option_logo {
  filter: drop-shadow(0 0 8px rgba(130, 100, 240, 0.6));
}

.vip_option_ultimate .big {
  color: rgb(140, 110, 240);
}

.vip_option_ultimate .vip_option_button {
  background: rgb(140, 110, 240);
  box-shadow: 0 0px 12px rgba(140, 110, 240, 0.5);
}

.vip_option_ultimate .vip_option_button:hover {
  box-shadow: 0 0px 18px rgba(140, 110, 240, 0.7);
}

.vip_option_header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 25px;
}

.vip_option_logo {
  height: 80px;
  width: auto;
  transition: transform 0.3s;
}

.vip_option:hover .vip_option_logo {
  transform: scale(1.25);
}

.vip_option .big {
  font-size: 40px;
  font-weight: 700;
  margin: 0;
}

.vip_option .small {
  color: var(--text_secondary);
  font-size: 14px;
}

.vip_option_price {
  display: flex;
  align-items: flex-end;
  gap: 2px;
}

.vip_option_price .big {
  font-size: 32px;
  font-weight: 700;
  color: var(--text_primary);
}

.vip_option_features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vip_option_features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text_secondary);
  font-size: 14px;
}


.vip_option_footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
}

.vip_option_button {
  padding: 14px 32px;
  flex-shrink: 0;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text_primary);
  background: var(--main-color);
  box-shadow: 0 0px 12px var(--main-color);
  cursor: pointer;
  transition: box-shadow 0.2s;
}

.vip_option_button:hover {
  box-shadow: 0 0px 18px var(--main-color);
}
/* ---------- VIP ---------- */

/* ---------- JOBS ---------- */
.jobs {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.jobs_text {
  text-align: center;
  margin-bottom: 50px;
  max-width: 600px;
}

.jobs_text .title {
  font-size: 48px;
  font-weight: bold;
}

.jobs_options {
  display: flex;
  gap: 24px;
  justify-content: center;
  width: 100%;
  align-items: stretch;
}

.jobs_option {
  display: flex;
  position: relative;
  width: 100%;
  max-width: 350px;
  height: 500px;
  border-radius: 16px;
  background-color: var(--web_color_primary);
  background-size: cover;
  background-position: center;
  border: 3px solid var(--main-color);
  transition: box-shadow 0.3s;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
}

.jobs_option:hover {
  box-shadow: 0 0 30px rgba(155, 127, 212, 0.3);
}

.jobs_option .title {
  font-size: 40px;
  font-weight: bold;
  color: var(--text_primary);
  text-shadow: 2px 2px 6px #000000;
}

.jobs_option .description {
  font-size: 16px;
  font-weight: 400;
  color: var(--text_secondary);
  text-shadow: 2px 2px 6px #000000;
}
/* ---------- JOBS ---------- */

/* ---------- FOOTER ---------- */
.footer_content {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.footer_left {
  flex: 1;
  min-width: 280px;
}

.footer_desc {
  color: var(--text_secondary);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 320px;
}

.footer_socials {
  display: flex;
  gap: 12px;
}

.footer_social_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--web_color_secondary);
  border: 1px solid var(--web_color_secondary_border);
  color: var(--text_secondary);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background-color 0.2s;
  border-radius: 4px;
}

.footer_social_btn:hover {
  background-color: var(--web_color_secondary);
  border: 1px solid var(--main-color);
}

.footer_social_btn svg {
  display: block;
  margin: 0 auto;
  width: 24px;
  height: 24px;
}

.footer_copyright {
  color: var(--text_secondary);
  font-size: 14px;
  margin-top: 16px;
}

.footer_right {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.footer_column {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer_column_title {
  color: var(--text_primary);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.footer_column a {
  color: var(--text_secondary);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer_column a:hover {
  color: var(--text_primary);
}
/* ---------- FOOTER ---------- */