:root {
  --vip-bg: #050505;
  --vip-bg-soft: #0d0d0d;
  --vip-card: #111111;
  --vip-card-2: #171717;
  --vip-border: rgba(212, 175, 55, 0.65);
  --vip-gold: #d4af37;
  --vip-gold-soft: rgba(212, 175, 55, 0.14);
  --vip-text: #f3f3f3;
  --vip-muted: #b7b7b7;
  --vip-line: rgba(255, 255, 255, 0.08);
  --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background:
    radial-gradient(circle at top center, rgba(212, 175, 55, 0.08), transparent 24%),
    linear-gradient(180deg, #050505 0%, #090909 28%, #050505 100%);
  color: var(--vip-text);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.btn-vip,
.btn-vip-outline {
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 13px 22px;
  transition: 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-vip {
  background: linear-gradient(180deg, #e4c457 0%, #cda11d 100%);
  color: #111;
  border: 1px solid rgba(255, 222, 120, 0.6);
  box-shadow: var(--shadow-gold);
}

.btn-vip:hover {
  transform: translateY(-2px);
  color: #111;
  box-shadow: 0 16px 34px rgba(212, 175, 55, 0.25);
}

.btn-vip-outline {
  background: transparent;
  color: var(--vip-gold);
  border: 1px solid var(--vip-border);
}

.btn-vip-outline:hover {
  background: var(--vip-gold);
  color: #111;
  transform: translateY(-2px);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  backdrop-filter: blur(8px);
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.58) 0%, rgba(5, 5, 5, 0.42) 58%, rgba(5, 5, 5, 0.22) 100%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.14);
  box-shadow: none;
}

.site-topbar {
  background: rgba(0, 0, 0, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.site-topbar-left,
.site-topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.site-topbar-link,
.site-topbar-text,
.site-topbar-tursab {
  font-size: 12px;
  line-height: 1.4;
}

.site-topbar-link {
  color: #f1f1f1;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  opacity: 0.92;
  transition: opacity .2s ease;
}

.site-topbar-link:hover {
  color: #fff;
  opacity: 1;
}

.site-topbar-link i,
.site-topbar-text i {
  color: var(--vip-gold);
}

.site-topbar-text {
  color: #d6d6d6;
}

.site-topbar-tursab {
  color: #dc3545;
  font-weight: 700;
}

.navbar {
  padding: 12px 0;
  min-height: 92px;
}

.navbar-brand,
.footer-brand {
  font-size: 24px;
  font-weight: 800;
  color: var(--vip-gold) !important;
  letter-spacing: 0.4px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-badge {
  overflow: hidden;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #3b3111 0%, #111 72%);
  border: 1px solid var(--vip-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--vip-gold);
  box-shadow: inset 0 0 12px rgba(212, 175, 55, 0.12);
}

.navbar-nav .nav-link {
  color: #fff !important;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  padding: 11px 15px !important;
  border-radius: 8px;
  transition: 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #111 !important;
  background: var(--vip-gold);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.22);
}

.language-switcher .dropdown-toggle {
  min-width: 126px;
  border-radius: 10px;
  padding: 11px 16px;
  border: 1px solid rgba(212, 175, 55, 0.26);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  box-shadow: none !important;
}

.language-switcher .dropdown-toggle:hover,
.language-switcher .dropdown-toggle.show {
  background: var(--vip-gold);
  color: #111;
  border-color: rgba(255, 222, 120, 0.6);
}

.language-switcher .dropdown-menu {
  min-width: 180px;
  padding: 8px;
  border-radius: 14px;
  background: rgba(10, 10, 10, 0.98);
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.language-switcher .dropdown-item {
  border-radius: 10px;
  color: #f0f0f0;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 12px;
  transition: 0.25s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switcher .flag {
  font-size: 16px;
  line-height: 1;
}

.language-switcher .dropdown-item:hover,
.language-switcher .dropdown-item.active {
  background: var(--vip-gold);
  color: #111;
}

.site-footer {
  position: relative;
  padding: 70px 0 0;
  background: linear-gradient(180deg, #060606 0%, #020202 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-text,
.footer-links a,
.footer-contact li {
  color: #cfcfcf;
  font-size: 14px;
  line-height: 1.9;
}

.footer-title {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
}

.footer-links a:hover {
  color: var(--vip-gold);
  padding-left: 4px;
}

.footer-contact li i {
  color: var(--vip-gold);
  margin-right: 10px;
  width: 18px;
  text-align: center;
}

.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.footer-tursab {
  margin-top: 18px;
}

.footer-tursab a {
  display: inline-block;
}

.footer-tursab img {
  max-width: 220px;
  width: 100%;
  height: auto;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: rgba(255, 255, 255, 0.02);
  color: var(--vip-gold);
  transition: 0.3s ease;
}

.footer-social a:hover {
  background: var(--vip-gold);
  color: #111;
  transform: translateY(-3px);
}

.copyright {
  margin-top: 42px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #989898;
  font-size: 13px;
}

.footer-bottom-block {
  padding: 6px 0;
}

.footer-bottom-left {
  text-align: left;
}

.footer-bottom-center {
  text-align: center;
}

.footer-bottom-right {
  text-align: right;
}

.footer-tursab-no {
  color: #dc3545;
  font-weight: 700;
}

.vip-wa-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.vip-wa-bubble-wrap,
.vip-wa-button-wrap {
  position: relative;
}

.vip-wa-bubble-wrap {
  display: none;
}

.vip-wa-widget.is-bubble-visible .vip-wa-bubble-wrap {
  display: block;
}

.vip-wa-widget.is-bubble-visible .vip-wa-bubble-wrap.is-hidden,
.vip-wa-widget .vip-wa-button-wrap.is-hidden {
  display: none;
}

.vip-wa-close {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.78);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  position: absolute;
  z-index: 2;
}

.vip-wa-bubble-close {
  top: -10px;
  right: -10px;
}

.vip-wa-button-close {
  top: -8px;
  right: -6px;
}

.vip-wa-bubble {
  max-width: 320px;
  padding: 16px 18px;
  border-radius: 18px;
  background: #fff;
  color: #151515;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: .3s ease;
  display: block;
}

.vip-wa-widget.is-bubble-visible .vip-wa-bubble {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.vip-wa-bubble-title {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 800;
  color: #0f8f45;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.vip-wa-bubble-text {
  display: block;
  font-size: 14px;
  line-height: 1.6;
  color: #222;
}

.vip-wa-button {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(180deg, #27d366 0%, #17b554 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 18px 34px rgba(39, 211, 102, 0.32);
  transition: transform .25s ease, box-shadow .25s ease;
}

.vip-wa-button:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 22px 38px rgba(39, 211, 102, 0.4);
}

@media (max-width: 991.98px) {
  .site-topbar-inner {
    padding: 8px 0;
    align-items: flex-start;
  }

  .site-topbar-left,
  .site-topbar-right {
    gap: 10px 14px;
  }

  .navbar-collapse {
    background: rgba(7, 7, 7, 0.96);
    padding: 14px;
    border-radius: 16px;
    margin-top: 14px;
    border: 1px solid rgba(212, 175, 55, 0.18);
  }

  .language-switcher {
    margin-top: 12px;
  }
}

@media (max-width: 767.98px) {
  .site-topbar {
    display: none;
  }

  .navbar-brand,
  .footer-brand {
    font-size: 20px;
  }

  .footer-bottom-left,
  .footer-bottom-center,
  .footer-bottom-right {
    text-align: center;
  }

  .vip-wa-widget {
    right: 16px;
    bottom: 16px;
  }

  .vip-wa-bubble {
    max-width: calc(100vw - 42px);
  }
}
