/* =========================================================
   WarOfSpace - Public Lobby UI (clean base)
   ========================================================= */

body {
  padding-top: 72px;
}

/* Background + page shell */
.wos_lobby {
  min-height: 100vh;
  padding: 28px 0 40px 0;
  position: relative;
  overflow: hidden;
}

.wos_lobby .container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
}

/* Generic cards */
.wos_card {
  border-radius: 18px !important;
  overflow: hidden;
  background: rgba(10,18,30,.55) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(140,200,255,.12) !important;
  box-shadow: 0 14px 35px rgba(0,0,0,.35) !important;
}

.wos_card .card-body,
.wos_body {
  padding: 18px;
}

.wos_header {
  padding: 18px 22px;
  border-bottom: 1px solid rgba(140,200,255,.10);
  background: rgba(5,12,20,.35);
}

.wos_title {
  margin: 0;
  font-weight: 900;
  letter-spacing: .3px;
  color: #eaf4ff;
  font-size: 18px;
}

.wos_subtitle,
.wos_muted,
.wos_note {
  color: rgba(234,244,255,.65);
  font-size: 12px;
}

.wos_section_title {
  margin: 0 0 10px 0;
  font-weight: 800;
  color: #eaf4ff;
  font-size: 15px;
  letter-spacing: .2px;
}

/* Hero */
.wos_hero {
  border-radius: 18px;
  padding: 22px;
  margin-bottom: 16px;
  background: rgba(10,18,30,.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(140,200,255,.14);
  box-shadow: 0 14px 35px rgba(0,0,0,.35);
}

.wos_hero h1,
.wos_hero h2 {
  margin: 0 0 6px 0;
  font-weight: 800;
  letter-spacing: .2px;
  font-size: 28px;
  color: #eaf4ff;
}

.wos_hero p,
.wos_hero p.lead {
  margin: 0;
  color: rgba(234,244,255,.75);
  font-size: 15px;
  line-height: 1.35;
}

/* Grid */
.wos_grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 16px;
}

@media (max-width: 991px) {
  .wos_grid {
    grid-template-columns: 1fr;
  }
}

/* Forms */
.wos_form label {
  color: rgba(234,244,255,.70);
  font-size: 12px;
  margin-bottom: 6px;
}

.wos_form .form-group {
  margin-bottom: 12px;
}

.wos_form .form-control,
.wos_form .form-select {
  background: rgba(5,12,20,.55);
  border: 1px solid rgba(140,200,255,.14);
  color: #eaf4ff;
  border-radius: 12px;
  height: 44px;
}

.wos_form .form-control:focus,
.wos_form .form-select:focus {
  background: rgba(5,12,20,.62);
  border-color: rgba(140,200,255,.32);
  box-shadow: 0 0 0 .2rem rgba(80,180,255,.12);
  color: #ffffff;
}

.wos_uni_hint,
.wos_desc {
  color: rgba(234,244,255,.55);
  font-size: 11px;
  margin-top: 6px;
}

/* Buttons */
.wos_btn,
.wos_btn_primary,
.wos_btn_ghost {
  border-radius: 14px;
  height: 44px;
  padding: 0 16px;
  font-weight: 900;
  letter-spacing: .2px;
}

.wos_btn_row {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.wos_btn_ghost {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(140,200,255,.14);
  color: rgba(234,244,255,.85);
}

.wos_btn_ghost:hover {
  color: #fff;
  background: rgba(255,255,255,.06);
}

/* Pills / badges */
.wos_badge_line,
.wos_news_top {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.wos_badge,
.wos_news_chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(140,200,255,.12);
  background: rgba(255,255,255,.04);
  color: rgba(234,244,255,.82);
  font-weight: 700;
  font-size: 12px;
  text-decoration: none;
}

.wos_news_chip:hover,
.wos_badge:hover {
  color: #fff;
  background: rgba(255,255,255,.06);
  border-color: rgba(140,200,255,.24);
}

/* Lists */
.wos_list {
  border-radius: 14px;
  border: 1px solid rgba(140,200,255,.10);
  background: rgba(5,12,20,.35);
  padding: 10px;
}

.wos_divider {
  height: 1px;
  background: rgba(140,200,255,.10);
  margin: 10px 0;
}

/* Carousel */
.wos_carousel_wrap {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(140,200,255,.12);
  background: rgba(5,12,20,.35);
}

/* Navbar */
.wos_navbar {
  background: rgba(10,18,30,.55) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(140,200,255,.10);
  box-shadow: 0 10px 30px rgba(0,0,0,.28);
}

.wos_navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 1000;
  letter-spacing: .2px;
  color: #eaf4ff !important;
}

.wos_navbar .navbar-brand img {
  border-radius: 8px;
  border: 1px solid rgba(140,200,255,.14);
  box-shadow: 0 8px 18px rgba(0,0,0,.25);
}

.wos_navbar .nav-link {
  color: rgba(234,244,255,.80) !important;
  font-weight: 900;
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 999px;
  margin: 2px 3px;
  transition: background .12s ease, border-color .12s ease, color .12s ease, transform .12s ease;
  border: 1px solid transparent;
}

.wos_navbar .nav-link:hover {
  color: #fff !important;
  background: rgba(255,255,255,.06);
  border-color: rgba(140,200,255,.18);
  transform: translateY(-1px);
}

.wos_navbar .nav-link.active {
  color: #0b1220 !important;
  background: rgba(120,210,255,.95);
  border-color: rgba(120,210,255,.95);
}

.wos_navbar .dropdown-menu {
  border-radius: 14px;
  background: rgba(10,18,30,.90);
  border: 1px solid rgba(140,200,255,.12);
  box-shadow: 0 14px 35px rgba(0,0,0,.35);
}

.wos_navbar .dropdown-item {
  color: rgba(234,244,255,.80);
  font-weight: 900;
}

.wos_navbar .dropdown-item:hover {
  background: rgba(255,255,255,.06);
  color: #fff;
}

@media (max-width: 767px) {
  .wos_navbar .navbar-collapse {
    margin-top: 10px;
    padding: 10px;
    background: rgba(10,18,30,.55);
    border: 1px solid rgba(140,200,255,.10);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
  }
}

/* Footer */
.wos_public_footer {
  padding: 14px 0;
  position: relative;
  z-index: 2;
}

.wos_public_footer .container {
  border-radius: 16px;
  padding: 12px 16px;
  background: rgba(10,18,30,.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(140,200,255,.10);
  color: rgba(234,244,255,.70);
}

.wos_public_footer a {
  color: rgba(120,210,255,.95);
  font-weight: 900;
  text-decoration: none;
}

.wos_public_footer a:hover {
  color: #fff;
}

.wos_public_footer p {
  margin: 0;
}

/* Gallery */
.wos_gallery_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 576px) {
  .wos_gallery_grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 768px) {
  .wos_gallery_grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 992px) {
  .wos_gallery_grid { grid-template-columns: repeat(6, 1fr); }
}

.wos_shot {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(140,200,255,.12);
  background: rgba(5,12,20,.35);
  box-shadow: 0 10px 26px rgba(0,0,0,.25);
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
  text-decoration: none;
}

.wos_shot:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(0,0,0,.35);
  border-color: rgba(140,200,255,.26);
}

.wos_shot img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

@media (max-width: 575px) {
  .wos_shot img { height: 130px; }
}

.wos_shot_cap {
  padding: 8px 10px;
  color: rgba(234,244,255,.75);
  font-size: 12px;
  border-top: 1px solid rgba(140,200,255,.08);
}

/* News cards */
.wos_news_grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 768px) {
  .wos_news_grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1200px) {
  .wos_news_grid { grid-template-columns: 1fr 1fr 1fr; }
}

.wos_news_card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(140,200,255,.12);
  background: rgba(10,18,30,.45);
  box-shadow: 0 14px 35px rgba(0,0,0,.30);
}

.wos_news_img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(140,200,255,.10);
}

.wos_news_body {
  padding: 14px;
}

.wos_news_title {
  margin: 0 0 8px 0;
  color: #eaf4ff;
  font-weight: 1000;
  font-size: 14px;
  letter-spacing: .2px;
}

.wos_news_text {
  color: rgba(234,244,255,.72);
  font-size: 13px;
  line-height: 1.55;
  max-height: 170px;
  overflow: auto;
  padding-right: 6px;
}

.wos_news_meta {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  color: rgba(234,244,255,.55);
  font-size: 12px;
  border-top: 1px solid rgba(140,200,255,.08);
  padding-top: 10px;
}

.wos_news_anchor,
.wos_mail {
  color: rgba(120,210,255,.95);
  font-weight: 900;
  text-decoration: none;
}

.wos_news_anchor:hover,
.wos_mail:hover {
  color: #fff;
}

/* Tables */
.wos_table_wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(140,200,255,.12);
  background: rgba(5,12,20,.35);
}

.wos_table_wrap .table {
  margin-bottom: 0;
}

.wos_table_wrap .table thead th {
  border-bottom: 1px solid rgba(140,200,255,.12);
  color: rgba(234,244,255,.90);
  font-weight: 1000;
  font-size: 12px;
  letter-spacing: .2px;
}

.wos_table_wrap .table td {
  border-top: 1px solid rgba(140,200,255,.08);
  color: rgba(234,244,255,.78);
  font-size: 13px;
  vertical-align: middle;
}

.wos_table_wrap .table-hover tbody tr:hover {
  background: rgba(255,255,255,.04);
}

.wos_uni_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(140,200,255,.12);
  background: rgba(5,12,20,.35);
}

.wos_uni_row label {
  margin: 0;
  font-weight: 1000;
  color: rgba(234,244,255,.85);
  font-size: 12px;
  letter-spacing: .2px;
}

.wos_uni_row select {
  min-width: 240px;
}

.wos_vs { font-weight: 1000; color: rgba(234,244,255,.75); }
.wos_win { color: #68ffb7; font-weight: 1000; }
.wos_lose { color: #ff6b6b; font-weight: 1000; }

.wos_pager .btn {
  border-radius: 12px;
  font-weight: 900;
  height: 40px;
  padding: 0 12px;
}

/* Contact / disclaimer */
.wos_contact_grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 768px) {
  .wos_contact_grid { grid-template-columns: 1fr 1fr; }
}

.wos_contact_card {
  border-radius: 16px;
  border: 1px solid rgba(140,200,255,.12);
  background: rgba(5,12,20,.35);
  padding: 16px;
}

.wos_contact_title {
  font-weight: 1000;
  color: #eaf4ff;
  font-size: 14px;
  margin-bottom: 6px;
}

.wos_contact_text {
  color: rgba(234,244,255,.75);
  font-size: 13px;
  line-height: 1.6;
  word-break: break-word;
}

.wos_contact_text a {
  color: rgba(120,210,255,.95);
  font-weight: 900;
  text-decoration: none;
}

.wos_contact_text a:hover {
  color: #fff;
}

/* Error / redirect */
.wos_error_box,
.wos_redirect_box {
  border-radius: 16px;
  border: 1px solid rgba(140,200,255,.12);
  background: rgba(5,12,20,.35);
}

.wos_error_box { padding: 14px; }
.wos_redirect_box { padding: 18px; text-align: center; }

.wos_error_msg,
.wos_redirect_msg {
  color: rgba(234,244,255,.85);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.wos_redirect_msg { font-weight: 900; }

.wos_error_actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.wos_error_actions a {
  text-decoration: none;
}

.wos_redirect_loader {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(120,210,255,.95);
  letter-spacing: 2px;
  animation: wosBlink 1.2s infinite;
}

@keyframes wosBlink {
  0% { opacity: .3; }
  50% { opacity: 1; }
  100% { opacity: .3; }
}
.wos_btn_primary {
  border-radius: 14px !important;
  min-height: 44px;
  padding: 10px 16px !important;
  font-weight: 800 !important;
  letter-spacing: .2px;
}

.wos_carousel_wrap .carousel-item img {
  width: 100%;
  min-height: 460px;
  max-height: 460px;
  object-fit: cover;
  display: block;
}

@media (max-width: 991px) {
  .wos_carousel_wrap .carousel-item img {
    min-height: 280px;
    max-height: 280px;
  }
}

.wos_links {
  margin-top: 10px;
  text-align: center;
}

.wos_links a {
  color: rgba(120,210,255,.95);
  font-weight: 700;
}

.wos_links a:hover {
  color: #fff;
  text-decoration: none;
}

.g-recaptcha {
  transform-origin: left top;
}

@media (max-width: 420px) {
  .g-recaptcha {
    transform: scale(.92);
  }
}
/* =========================
   PREMIUM DEPTH UPGRADE
========================= */

.wos_card {
    backdrop-filter: blur(18px);
    background: linear-gradient(180deg, rgba(10,15,25,0.85), rgba(10,15,25,0.65));
    border: 1px solid rgba(90,140,255,0.15);
    box-shadow: 
        0 10px 40px rgba(0,0,0,0.6),
        inset 0 0 20px rgba(0,140,255,0.05);
    transition: all 0.3s ease;
}

.wos_card:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 20px 60px rgba(0,0,0,0.8),
        0 0 20px rgba(0,140,255,0.2);
}


/* =========================
   HERO IMPROVEMENT
========================= */

.wos_hero {
    background: linear-gradient(135deg, rgba(10,20,40,0.9), rgba(5,10,20,0.7));
    border: 1px solid rgba(120,180,255,0.15);
    box-shadow: 0 0 40px rgba(0,120,255,0.15);
}


/* =========================
   BUTTON PREMIUM
========================= */

.wos_btn_primary {
    background: linear-gradient(135deg, #3a8dff, #1e5eff);
    border: none;
    box-shadow: 0 0 12px rgba(58,141,255,0.6);
    transition: all 0.2s ease;
}

.wos_btn_primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 20px rgba(58,141,255,0.9);
}


/* =========================
   INPUT GLOW
========================= */

.form-control {
    background: rgba(10,20,40,0.6);
    border: 1px solid rgba(100,150,255,0.2);
    color: #fff;
}

.form-control:focus {
    border-color: #4da3ff;
    box-shadow: 0 0 10px rgba(77,163,255,0.5);
    background: rgba(10,20,40,0.8);
}


/* =========================
   RIGHT SLIDER FIX
========================= */

.carousel-inner img {
    opacity: 0.85;
    filter: blur(2px);
    transition: all 0.5s ease;
}

.carousel-item.active img {
    filter: blur(0px);
    opacity: 1;
}


/* =========================
   BADGE GLOW
========================= */

.wos_badge {
    background: rgba(0,120,255,0.1);
    border: 1px solid rgba(0,140,255,0.3);
    box-shadow: 0 0 10px rgba(0,140,255,0.3);
}
/* =========================================
   HEADER / NAVBAR CENTER + PREMIUM
========================================= */

.wos_navbar .container {
  max-width: 1280px;
  display: flex;
  align-items: center;
}

.wos_navbar .navbar-brand {
  min-width: 190px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.wos_navbar .navbar-collapse {
  justify-content: center;
}

.wos_navbar .navbar-nav.me-auto {
  margin-right: 0 !important;
  gap: 4px;
}

.wos_navbar .nav-item {
  display: flex;
  align-items: center;
}

.wos_navbar .nav-link {
  position: relative;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 13px;
  line-height: 1;
}

.wos_navbar .nav-link:hover {
  box-shadow: 0 0 14px rgba(120, 210, 255, 0.18);
}

.wos_navbar .nav-link.active {
  box-shadow: 0 0 16px rgba(120, 210, 255, 0.35);
}

.wos_navbar .dropdown {
  margin-left: auto;
}

.wos_navbar .dropdown-toggle {
  min-width: 74px;
  text-align: center;
}

@media (max-width: 991px) {
  .wos_navbar .navbar-brand {
    min-width: auto;
  }

  .wos_navbar .navbar-collapse {
    justify-content: flex-start;
  }

  .wos_navbar .navbar-nav.me-auto {
    gap: 0;
  }

  .wos_navbar .dropdown {
    margin-left: 0;
  }
}

/* =========================================
   HERO ALIGNMENT
========================================= */

.wos_hero {
  padding: 20px 22px;
}

.wos_hero > .d-flex {
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px;
}

.wos_hero h1,
.wos_hero h2 {
  font-size: 25px;
  line-height: 1.15;
}

.wos_hero p,
.wos_hero p.lead {
  max-width: auto;
  margin-top: 4px;
}

.wos_badge_line {
  margin-top: 0;
  justify-content: flex-end;
}

@media (max-width: 991px) {
  .wos_badge_line {
    justify-content: flex-start;
    margin-top: 10px;
  }
}

/* =========================================
   LOGIN PANEL - DARK PREMIUM
========================================= */

.wos_form .form-control,
.wos_form .form-select {
  background: linear-gradient(180deg, rgba(6, 14, 24, 0.92), rgba(7, 18, 32, 0.82)) !important;
  border: 1px solid rgba(120, 170, 255, 0.16) !important;
  color: #eef6ff !important;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.02),
    0 0 0 rgba(0,0,0,0);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease, transform .2s ease;
}

.wos_form .form-control::placeholder {
  color: rgba(214, 229, 255, 0.34) !important;
}

.wos_form .form-control:focus,
.wos_form .form-select:focus {
  background: linear-gradient(180deg, rgba(9, 18, 32, 0.96), rgba(8, 20, 38, 0.9)) !important;
  border-color: rgba(96, 178, 255, 0.48) !important;
  box-shadow:
    0 0 0 0.18rem rgba(80,180,255,.12) !important,
    0 0 18px rgba(65, 145, 255, 0.16) !important;
  transform: translateY(-1px);
}

.wos_form label {
  color: rgba(235, 244, 255, 0.82);
  font-weight: 700;
  letter-spacing: .15px;
}

.wos_form .form-group {
  margin-bottom: 13px;
}

/* remember me */
.wos_form input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #4f9cff;
}

/* buttons row */
.wos_btn_row {
  margin-top: 10px;
}

.wos_btn_primary,
.wos_btn_ghost {
  min-width: 118px;
}

/* main primary button */
.wos_btn_primary {
  background: linear-gradient(135deg, #3b9dff 0%, #256dff 55%, #1f55d9 100%) !important;
  border: 1px solid rgba(132, 190, 255, 0.26) !important;
  color: #fff !important;
  box-shadow:
    0 10px 22px rgba(20, 80, 180, 0.34),
    0 0 16px rgba(59, 157, 255, 0.25);
}

.wos_btn_primary:hover {
  transform: translateY(-1px);
  box-shadow:
    0 14px 28px rgba(20, 80, 180, 0.42),
    0 0 22px rgba(59, 157, 255, 0.4);
}

/* ghost button */
.wos_btn_ghost {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03)) !important;
  border: 1px solid rgba(120, 170, 255, 0.14) !important;
  color: rgba(235,244,255,.92) !important;
  box-shadow: inset 0 0 12px rgba(255,255,255,0.02);
}

.wos_btn_ghost:hover {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.05)) !important;
  border-color: rgba(120, 170, 255, 0.28) !important;
}

/* auth buttons */
.wos_card .btn.btn-light {
  min-height: 44px;
  border-radius: 14px !important;
  border: 1px solid rgba(120, 170, 255, 0.12) !important;
  box-shadow:
    0 8px 20px rgba(0,0,0,0.16),
    inset 0 0 0 1px rgba(255,255,255,0.25);
  font-weight: 800 !important;
  transition: transform .2s ease, box-shadow .2s ease;
}

.wos_card .btn.btn-light:hover {
  transform: translateY(-1px);
  box-shadow:
    0 12px 26px rgba(0,0,0,0.22),
    inset 0 0 0 1px rgba(255,255,255,0.32);
}

/* login card title */
.wos_section_title {
  font-size: 16px;
}

/* card body spacing a touch more premium */
.wos_card .card-body {
  padding: 20px;
}

/* =========================================
   RIGHT PANEL / SLIDER PREMIUM
========================================= */

.wos_carousel_wrap {
  box-shadow:
    inset 0 0 32px rgba(0, 140, 255, 0.06),
    0 10px 32px rgba(0,0,0,0.28);
}

.wos_carousel_wrap .carousel-item img {
  filter: saturate(1.02) contrast(1.02);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.35));
}

.carousel-indicators [data-bs-target] {
  width: 26px;
  height: 3px;
  border-radius: 99px;
  opacity: .72;
}

.carousel-indicators .active {
  opacity: 1;
  box-shadow: 0 0 10px rgba(255,255,255,0.35);
}
body {
  background: url("../../images/login/background.jpg") center center / cover no-repeat !important;
}
/* =========================================
   GLOBAL PAGE ALIGN FIX
========================================= */

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

/* Haber sayfası tam ortada olsun */
.wos_news_grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

/* kartlar ortalı */
.wos_news_card {
    width: 100%;
}

/* boş state ortala */
.wos_error_box {
    text-align: center;
    padding: 30px;
    border-radius: 16px;
    background: rgba(10,20,40,0.6);
    border: 1px solid rgba(120,170,255,0.1);
}
body {
    overflow-x: hidden;
}
/* =========================================
   OLD LAYOUT CLEAN
========================================= */

#content,
#page,
.wrapper,
.content,
#main {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

/* eski siyah blok */
#content {
    padding: 0 !important;
}

/* eski üst header boşluğu fix */
#page {
    margin: 0 !important;
    padding: 0 !important;
}
/* =========================================
   FORCE FULL WIDTH + CENTER FIX
========================================= */


/* ana alan */
.wos_lobby {
  width: 100vw !important;
  max-width: 100vw !important;
  margin: 0 auto !important;
  padding: 30px 0 !important;
}

/* container zorla ortala */
.wos_lobby .container {
  width: 100% !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
  padding: 0 16px !important;
}

/* her şeyi ortala */
.wos_lobby * {
  box-sizing: border-box;
}
/* GLOBAL SAYFA TITLE KAPAT */
h1 {
  display: none !important;
}
td {
  text-align: none !important;
  background: none !important;
  background: none !important;
  border: none !important;
}
/* RULES STYLE */

.wos_rules {
  line-height: 1.7;
  font-size: 15px;
  color: #cfd8e3;
}

.wos_rules h1,
.wos_rules h2,
.wos_rules h3 {
  color: #ffffff;
  margin-top: 20px;
}

.wos_rules p {
  margin-bottom: 10px;
}

.wos_rules ul {
  padding-left: 18px;
}

.wos_rules li {
  margin-bottom: 6px;
}
.wos_form .wos_note {
  margin-top: 6px;
  color: rgba(234,244,255,.58);
  font-size: 12px;
  line-height: 1.45;
}
.wos_pager .btn-primary {
  border-radius: 12px;
  font-weight: 900;
  height: 40px;
  padding: 0 12px;
}
