/*!****************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./src/app/(frontend)/globals.css ***!
  \****************************************************************************************************************************************************************************************************************************************************************************/
body {
  margin: 0;
  font-family:
    -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

h1 {
  font-size: 2.8rem;
}

h2 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 48px;
  color: #ffffff;
  text-align: center;
}

h3 {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 12px;
  color: #ffffff;
}

main {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.payment-method-logo {
  filter: grayscale(1) opacity(0.6);
  transition: all 0.3s ease;
}

.payment-method-logo:hover {
  filter: grayscale(0) opacity(1);
}

/*!******************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./src/components/CookieBanner/CookieBanner.css ***!
  \******************************************************************************************************************************************************************************************************************************************************************************************/
.cookie-banner-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.cookie-banner-overlay--visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cookie-banner {
  position: fixed;
  z-index: 9999;
  max-width: 600px;
  width: calc(100% - 2rem);
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  padding: 1.5rem;
  animation: slideIn 0.3s ease-out;
}

/* Position variants */
.cookie-banner--bottom {
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
}

.cookie-banner--top {
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
}

.cookie-banner--bottom-left {
  bottom: 1rem;
  left: 1rem;
}

.cookie-banner--bottom-right {
  bottom: 1rem;
  right: 1rem;
}

/* Theme variants */
.cookie-banner--dark {
  background: #1a1a1a;
  color: #ffffff;
}

.cookie-banner--dark .cookie-banner__title {
  color: #ffffff;
}

.cookie-banner--dark .cookie-banner__description {
  color: #e0e0e0;
}

.cookie-banner--dark .cookie-banner__link {
  color: #64b5f6;
}

.cookie-banner--dark .cookie-banner__link:hover {
  color: #90caf9;
}

.cookie-banner--dark .cookie-category {
  background: #2a2a2a;
}

.cookie-banner--dark .cookie-banner__button--secondary {
  background: #424242;
  color: #ffffff;
}

.cookie-banner--dark .cookie-banner__button--secondary:hover {
  background: #535353;
}

.cookie-banner--dark .cookie-banner__button--tertiary {
  color: #ffffff;
}

.cookie-banner--dark .cookie-banner__close {
  color: #ffffff;
}

.cookie-banner--dark .cookie-banner__button--danger {
  color: #ef5350;
  border-color: #ef5350;
}

.cookie-banner--dark .cookie-banner__button--danger:hover {
  background: rgba(239, 83, 80, 0.15);
  border-color: #f44336;
  color: #f44336;
}

.cookie-banner--dark .cookie-banner__cache-actions {
  border-top-color: #424242;
}

/* Close button */
.cookie-banner__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: #666;
  cursor: pointer;
  padding: 0.25rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.cookie-banner__close:hover {
  background-color: rgba(0, 0, 0, 0.05);
  color: #333;
}

/* Content */
.cookie-banner__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-banner__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  color: #1a1a1a;
  padding-right: 2rem;
}

.cookie-banner__description {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #4a4a4a;
  margin: 0;
}

.cookie-banner__link {
  color: #1976d2;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.cookie-banner__link:hover {
  color: #1565c0;
}

/* Cookie categories */
.cookie-banner__categories {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
  max-height: 300px;
  overflow-y: auto;
  padding: 0.5rem 0;
}

.cookie-category {
  background: #f5f5f5;
  padding: 1rem;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.cookie-category:hover {
  background: #ebebeb;
}

.cookie-category__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-category__label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  flex: 1 1;
}

.cookie-category__checkbox {
  width: 1.25rem;
  height: 1.25rem;
  cursor: pointer;
  accent-color: #1976d2;
}

.cookie-category__checkbox:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.cookie-category__name {
  font-weight: 500;
  font-size: 0.95rem;
  color: #1a1a1a;
}

.cookie-category__required {
  font-weight: 400;
  font-size: 0.85rem;
  color: #666;
  font-style: italic;
}

.cookie-category__description {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.4;
  margin: 0.5rem 0 0 2rem;
}

/* Actions */
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.cookie-banner__cache-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid #e0e0e0;
}

.cookie-banner__button {
  flex: 1 1;
  min-width: -moz-fit-content;
  min-width: fit-content;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.cookie-banner__button--primary {
  background: #1976d2;
  color: white;
}

.cookie-banner__button--primary:hover {
  background: #1565c0;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
}

.cookie-banner__button--secondary {
  background: #e0e0e0;
  color: #333;
}

.cookie-banner__button--secondary:hover {
  background: #d5d5d5;
}

.cookie-banner__button--tertiary {
  background: transparent;
  color: #1976d2;
  border: 1px solid #1976d2;
}

.cookie-banner__button--tertiary:hover {
  background: rgba(25, 118, 210, 0.08);
}

.cookie-banner__button--danger {
  background: transparent;
  color: #d32f2f;
  border: 1px solid #d32f2f;
  font-size: 0.85rem;
}

.cookie-banner__button--danger:hover {
  background: rgba(211, 47, 47, 0.08);
  border-color: #c62828;
  color: #c62828;
}

/* Animations */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.cookie-banner--bottom-left {
  animation: slideInBottomLeft 0.3s ease-out;
}

.cookie-banner--bottom-right {
  animation: slideInBottomRight 0.3s ease-out;
}

.cookie-banner--top {
  animation: slideInTop 0.3s ease-out;
}

@keyframes slideInBottomLeft {
  from {
    opacity: 0;
    transform: translateX(-20px) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}

@keyframes slideInBottomRight {
  from {
    opacity: 0;
    transform: translateX(20px) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}

@keyframes slideInTop {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* Responsive design */
@media (max-width: 768px) {
  .cookie-banner {
    max-width: none;
    width: calc(100% - 2rem);
    padding: 1.25rem;
  }

  .cookie-banner--bottom,
  .cookie-banner--top {
    left: 1rem;
    right: 1rem;
    transform: none;
  }

  .cookie-banner--bottom-left,
  .cookie-banner--bottom-right {
    left: 1rem;
    right: 1rem;
  }

  .cookie-banner__title {
    font-size: 1.1rem;
  }

  .cookie-banner__description {
    font-size: 0.9rem;
  }

  .cookie-banner__actions {
    flex-direction: column;
  }

  .cookie-banner__button {
    width: 100%;
  }

  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .cookie-banner-overlay,
  .cookie-banner,
  .cookie-banner__button,
  .cookie-category {
    animation: none;
    transition: none;
  }
}

/* Print styles */
@media print {
  .cookie-banner-overlay,
  .cookie-banner {
    display: none !important;
  }
}

/*!**********************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./src/components/CookieSettings/CookieSettings.css ***!
  \**********************************************************************************************************************************************************************************************************************************************************************************************/
.cookie-settings-button {
  background: none;
  border: none;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.2s ease;
}

.cookie-settings-button:hover {
  opacity: 0.7;
}

.cookie-settings-button:focus {
  outline: 2px solid currentColor;
  outline-offset: 2px;
  border-radius: 2px;
}

.cookie-settings-button:active {
  opacity: 0.5;
}

/*!******************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./src/components/Footer/footer.css ***!
  \******************************************************************************************************************************************************************************************************************************************************************************/
.footer {
  background-color: #ffffff;
  color: #0b1029;
  padding-top: 4rem;
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  grid-gap: 3rem;
  gap: 3rem;
  margin-bottom: 4rem;
  position: relative;
}

.footer-grid::before {
  content: '';
  position: absolute;
  left: calc(25% - 1.5rem);
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    #e0e0e0 20%,
    #e0e0e0 80%,
    transparent 100%
  );
}

.footer-brand-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-menu-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 3rem;
  gap: 3rem;
}

.footer-section {
  display: flex;
  flex-direction: column;
  padding: 0 15px;
}

.footer-divider {
  height: 2px;
  background: linear-gradient(
    to right,
    transparent 7.56%,
    #e0e0e0 29.83%,
    #e0e0e0 61.76%,
    transparent 82.77%
  );
  margin: 0.5rem 0;
}

.footer-logo-wrapper {
  margin-bottom: 1.5rem;
}

.footer-logo-img {
  height: 40px;
  width: auto;
}

.footer-logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: #0b1029;
}

.footer-description {
  color: #545869;
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-column-title {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  text-transform: none;
  letter-spacing: 0;
  font-size: 1rem;
  color: #0b1029;
  font-weight: 400;
  position: relative;
}

.footer-column-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  /* transform: translateX(-50%); */
  width: 60%;
  height: 1px;
  background-color: #0b102917;
  /* background: linear-gradient(to right, transparent 0%, #e0e0e0 20%, #e0e0e0 80%, transparent 100%); */
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-item {
  margin-bottom: 0.8rem;
}

.footer-nav-link {
  color: #545869;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-nav-link:hover {
  color: #0b1029;
}

.footer-company-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.footer-h4-info {
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.footer-info-text {
  color: #545869;
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
  white-space: pre-line;
}

.inline-link {
  display: inline;
  text-decoration: underline;
}

.footer-bottom {
  background-color: #f9f9f9;
  padding: 2rem 0;
  margin-top: 2rem;
}

.footer-bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  /* padding: 0 2rem; */
  display: flex;
  /* justify-content: space-between; */

  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  color: #545869;
  font-size: 0.85rem;
  margin-right: auto;
}

.footer-payment-methods {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding-right: 15px;
}

.footer-payment-logo {
  height: 20px;
  width: auto;
  margin-right: 15px;
}

.footer-cookie-settings {
  display: flex;
  align-items: center;
  padding-right: 15px;
  border-right: 1px solid #e0e0e0;
}

.footer-cookie-settings-button {
  color: #545869;
  font-size: 0.85rem;
  text-decoration: none;
  white-space: nowrap;
}

.footer-cookie-settings-button:hover {
  color: #0b1029;
  text-decoration: underline;
}

.footer-social-region {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.footer-social-link {
  color: #545869;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}

.footer-social-link:hover {
  color: #0b1029;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-menu-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
}

/*!**********************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./src/components/Footer/RegionLink.css ***!
  \**********************************************************************************************************************************************************************************************************************************************************************************/
.footer-region-link {
  display: flex;
  align-items: center;
}

.region-link {
  color: #545869;
  text-decoration: none;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.region-link:hover {
  color: #0b1029;
}

.region-link .region-icon {
  font-size: 18px;
  opacity: 0.8;
}

/*!******************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./src/components/Header/header.css ***!
  \******************************************************************************************************************************************************************************************************************************************************************************/
/* Glass Header Styles - Inspired by test.html */

.glass-nav {
  position: fixed;
  top: calc(24px + var(--banner-height, 0px));
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  max-width: 95%;
  background: rgba(15, 16, 20, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 48px; /* Отступ между логотипом и всем остальным */
  z-index: 1000;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
}

.nav-main-menu {
  display: flex;
  align-items: center;
  gap: 40px; /* Отступ между меню и контактами */
}

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

.nav-contact {
  display: none;
  align-items: center;
  gap: 16px;
}

@media (min-width: 1100px) {
  .nav-contact {
    display: flex;
  }
}

.contact-link {
  color: #94A3B8;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

.contact-link:not(:last-child)::after {
  content: '';
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.15);
  margin-left: 16px;
  display: inline-block;
}

.contact-link:hover {
  color: #FFFFFF;
}

.nav-logo {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}

.logo-img {
  height: 32px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 12px rgba(22, 129, 255, 0.4));
}

.logo-text {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.nav-links {
  display: none;
  gap: 24px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #94A3B8;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

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

.nav-link {
  text-decoration: none;
  color: #94A3B8;
  transition: color 0.3s ease;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link:hover {
  color: #FFFFFF;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #1681FF;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.dropdown-arrow {
  font-size: 0.7rem;
  margin-left: 4px;
  transition: transform 0.3s ease;
}

.nav-item:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  background: rgba(15, 16, 20, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  padding: 12px;
  min-width: 220px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 1001;
  animation: dropdown-appear 0.2s ease;
}

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

.dropdown-item {
  display: block;
  padding: 10px 14px;
  text-decoration: none;
  color: #94A3B8;
  border-radius: 8px;
  transition: all 0.2s ease;
  margin-bottom: 4px;
}

.dropdown-item:hover {
  background: rgba(22, 129, 255, 0.1);
  color: #FFFFFF;
}

.dropdown-item-title {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.dropdown-item-desc {
  font-size: 0.75rem;
  color: #64748B;
  line-height: 1.3;
}

.nav-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.locale-switcher-select {
  position: relative;
}

.lang-select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #FFFFFF;
  padding: 6px 10px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  padding-right: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%2394A3B8' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
}

.lang-select option {
  background: #0F1014;
  color: #FFFFFF;
}

.login-link {
  color: #94A3B8;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.login-link:hover {
  color: #FFFFFF;
}

.trial-btn {
  background: #1681FF;
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(22, 129, 255, 0.3);
}

.trial-btn:hover {
  background: #1D8EFF;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(22, 129, 255, 0.4);
}


/*!******************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./src/components/RegionBanner/RegionBanner.css ***!
  \******************************************************************************************************************************************************************************************************************************************************************************************/
.region-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 48px;
  background: rgba(15, 16, 20, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.region-banner-container {
  width: 92%;
  max-width: 1100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.region-banner-content {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1 1;
}

.region-banner-text {
  margin: 0;
  font-size: 0.85rem;
  color: #94A3B8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.region-banner-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.region-select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: #FFFFFF;
  font-size: 0.8rem;
  padding: 4px 8px;
  outline: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.region-select:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.region-select option {
  background: #0F1014;
  color: #FFFFFF;
}

.region-confirm-btn {
  background: #1681FF;
  color: #FFFFFF;
  border: none;
  border-radius: 6px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.region-confirm-btn:hover {
  background: #1D8EFF;
  box-shadow: 0 4px 12px rgba(22, 129, 255, 0.3);
}

.region-close-btn {
  background: none;
  border: none;
  color: #64748B;
  cursor: pointer;
  font-size: 1rem;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.region-close-btn:hover {
  color: #FFFFFF;
}

@media (max-width: 768px) {
  .region-banner {
    height: auto;
    padding: 12px 0;
  }
  
  .region-banner-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .region-banner-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
  }
  
  .region-banner-text {
    white-space: normal;
  }
  
  .region-banner-actions {
    width: 100%;
    justify-content: space-between;
  }
  
  .region-select {
    flex: 1 1;
  }
  
  .region-close-btn {
    position: absolute;
    top: 8px;
    right: 12px;
  }
}

