/* === Общий фон и типографика === */
body {
  background-color: #0029D9;
  color: #FFFFFF;
  font-family: 'Geologica', sans-serif;
  margin: 0;
  padding: 0;
}

/* === Хэдер === */
.header {
  background-color: #001f9e;
  padding: 16px 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo img {
  height: 40px;
}

.header-nav {
  display: flex;
  gap: 24px;
}

.header-nav-item {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease-in-out;
}

.header-nav-item:hover {
  color: #00A3FF;
}

.header-buttons {
  display: flex;
  gap: 12px;
}

.header-button {
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.header-enter-button {
  background: transparent;
  border: 1px solid #00A3FF;
  color: #00A3FF;
}

.header-enter-button:hover {
  background-color: #00A3FF;
  color: #0029D9;
}

.header-register-button {
  background: linear-gradient(135deg, #00A3FF, #5BC0EB);
  color: #002244;
  border: none;
}

.header-register-button:hover {
  filter: brightness(1.1);
}

/* === Основной блок промо === */
.promo-block {
  padding: 48px 24px;
  background: linear-gradient(to right, #0029d9 0%, #0029d9 10%, #001f9e 50%, #0029d9 90%, #0029d9 100%);
  text-align: center;
}

.banner-title-wrapper {
  margin-bottom: 24px;
}

.banner-title {
  font-size: 32px;
  color: #FFFFFF;
}

/* === Баннер === */
.banner-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.banner-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 163, 255, 0.4);
  display: block;
}

/* === Промокод на баннере с блюром === */
.promo-code-frosted {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 24px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.promo-code-frosted:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.promo-code-blur {
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 1px;
  filter: blur(8px);
  transition: filter 0.3s ease;
}

.promo-code-frosted:hover .promo-code-blur {
  filter: blur(0);
}

.copy-icon {
  font-size: 18px;
  color: #fff;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.copy-icon:hover {
  opacity: 1;
}

/* === Текстовый блок === */
.text-block {
  padding: 64px 24px;
}

/* === Футер === */
.footer {
  background-color: #001a80;
  padding: 40px 24px;
  color: #FFFFFF;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo img {
  height: 36px;
  margin-bottom: 16px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.footer-nav-item {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 14px;
}

.footer-nav-item:hover {
  color: #00A3FF;
}

.footer-content-second-part {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
}

.footer-second-part-item-text {
  color: #AAAAAA;
  text-decoration: none;
}

.footer-second-part-item-text:hover {
  color: #00A3FF;
}
.header-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  color: #FFFFFF;
  font-weight: 500;
  padding: 8px 12px;
  cursor: pointer;
  transition: color 0.2s ease-in-out;
}

.dropdown-toggle:hover {
  color: #00A3FF;
}

.dropdown-menu {
  position: absolute;
  top: 100%; /* прямо под кнопкой */
  left: 0;
  min-width: 180px;
  background-color: #001f9e;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  padding: 8px 0;
  display: none;
  z-index: 999;
}

.header-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-item {
  display: block;
  padding: 10px 16px;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 15px;
  transition: background-color 0.2s ease;
}

.dropdown-item:hover {
  background-color: #00A3FF;
  color: #002244;
}
.visit-1win-button-wrapper {
  margin-top: 32px;
  text-align: center;
}

.visit-1win-button {
  display: inline-block;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #00A3FF, #5BC0EB);
  border: 2px solid #00A3FF;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 0 12px rgba(0, 163, 255, 0.6);
  transition: all 0.3s ease-in-out;
}

.visit-1win-button:hover {
  background: linear-gradient(135deg, #5BC0EB, #00A3FF);
  color: #002244;
  box-shadow: 0 0 20px rgba(0, 163, 255, 0.8);
}
/* Кнопка при нажатии (эффект клика) */
.visit-1win-button:active {
  transform: scale(0.97);
}

/* Dropdown – для мобильных и ручного открытия */
.dropdown-menu.show {
  display: block !important;
}
.promo-image-wrapper {
  display: flex;
  justify-content: center;
  margin: 32px 0;
}

.promo-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}
