* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: linear-gradient(135deg, #f0f9ff 0%, #e6f7ff 100%);
  color: #333;
  min-height: 100vh;
  line-height: 1.6;
}
/* Стили для секции Ресурсы и Валюта */
.resources-section {
  background: white;
  border-radius: 18px;
  padding: 30px;
  margin-top: 40px;
  border: 1px solid rgba(0, 114, 206, 0.1);
  box-shadow: 0 4px 15px rgba(0, 114, 206, 0.08);
}

.resources-section h2 {
  font-size: 26px;
  margin-bottom: 25px;
  color: #1a365d;
  border-left: 4px solid #0072ce;
  padding-left: 15px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

/* Для сетки прайсинга в ресурсах */
.resources-section .pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* Стили для карточек в секции ресурсов */
.resources-section .pricing-card {
  background: white;
  border-radius: 16px;
  padding: 25px;
  border: 2px solid #e6f7ff;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.resources-section .pricing-card:hover {
  border-color: #0096c7;
  box-shadow: 0 8px 25px rgba(0, 150, 199, 0.15);
}

.resources-section .pricing-header {
  margin-bottom: 15px;
}

.resources-section .pricing-header h3 {
  font-size: 18px;
  color: #1a365d;
  margin-bottom: 10px;
}

.resources-section .pricing-price {
  font-size: 24px;
  color: #0096c7;
  font-weight: 700;
  background: linear-gradient(to right, #0096c7, #48cae4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.resources-section .pricing-desc {
  color: #4a5568;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Адаптивность для новой секции */
@media (max-width: 600px) {
  .resources-section {
    padding: 20px;
  }

  .resources-section .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* Баннер */
.banner {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 114, 206, 0.2);
}

.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(
    135deg,
    rgba(0, 114, 206, 0.7) 0%,
    rgba(0, 180, 216, 0.7) 100%
  ); */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 20px;
}

.banner-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
}

.banner-subtitle {
  font-size: 20px;
  font-weight: 300;
  max-width: 600px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

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

/* Шапка */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  border-bottom: 2px solid rgba(0, 114, 206, 0.1);
  margin-bottom: 35px;
  background: white;
  border-radius: 15px;
  padding: 20px 30px;
  box-shadow: 0 4px 15px rgba(0, 114, 206, 0.1);
  margin-top: 30px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo h1 {
  font-size: 28px;
  background: linear-gradient(to right, #0072ce 0%, #00b4d8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  letter-spacing: -0.5px;
}

/* Поиск */
.search-container {
  position: relative;
  width: 320px;
}

#search {
  width: 100%;
  padding: 14px 45px 14px 20px;
  border-radius: 30px;
  border: 2px solid #e0f2ff;
  background: white;
  color: #333;
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 114, 206, 0.08);
}

#search:focus {
  border-color: #0072ce;
  box-shadow: 0 0 0 3px rgba(0, 114, 206, 0.15);
}

.search-btn {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #0072ce;
  font-size: 18px;
  cursor: pointer;
  transition: color 0.3s;
}

.search-btn:hover {
  color: #00b4d8;
}

/* Главный контент */
.main-content {
  display: flex;
  gap: 35px;
  margin-bottom: 50px;
}

.services-section {
  flex: 3;
}

.sidebar {
  flex: 1;
  background: white;
  border-radius: 18px;
  padding: 25px;
  border: 1px solid rgba(0, 114, 206, 0.1);
  box-shadow: 0 4px 15px rgba(0, 114, 206, 0.08);
  height: fit-content;
  position: sticky;
  top: 20px;
}

/* Заголовки */
h2 {
  font-size: 26px;
  margin-bottom: 25px;
  color: #1a365d;
  border-left: 4px solid #0072ce;
  padding-left: 15px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 20px;
  margin-bottom: 18px;
  color: #2d3748;
  font-weight: 600;
}

/* Кнопки заказа */
.order-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(to right, #0072ce 0%, #00b4d8 100%);
  color: white;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 114, 206, 0.25);
}

.order-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 114, 206, 0.35);
  color: white;
}

.order-btn.secondary {
  background: linear-gradient(to right, #0096c7 0%, #48cae4 100%);
  box-shadow: 0 4px 15px rgba(0, 150, 199, 0.25);
}

.order-btn.secondary:hover {
  box-shadow: 0 8px 25px rgba(0, 150, 199, 0.35);
}

.order-btn.large {
  padding: 16px 32px;
  font-size: 17px;
}

/* Кнопки заказа в услугах */
.service-order-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(to right, #0072ce 0%, #00b4d8 100%);
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  margin-top: 15px;
  width: 100%;
  box-shadow: 0 4px 10px rgba(0, 114, 206, 0.25);
}

.service-order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 114, 206, 0.35);
  color: white;
}

.service-order-btn.small {
  padding: 8px 16px;
  font-size: 13px;
  margin-top: 10px;
}

/* Кнопка заказа круток */
.wish-order-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(to right, #0072ce 0%, #00b4d8 100%);
  color: white;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  margin-top: 20px;
  box-shadow: 0 4px 15px rgba(0, 114, 206, 0.25);
}

.wish-order-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 114, 206, 0.35);
  color: white;
}

.sidebar-order-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 25px;
}

.sidebar-order-buttons .order-btn {
  text-align: center;
  justify-content: center;
  width: 100%;
}

.bottom-order-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin: 40px 0;
  flex-wrap: wrap;
}

/* Секция с услугами */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
}

.service-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 114, 206, 0.1);
  box-shadow: 0 4px 12px rgba(0, 114, 206, 0.05);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 114, 206, 0.15);
  border-color: rgba(0, 114, 206, 0.3);
}

.region-image {
  height: 180px;
  width: 100%;
  object-fit: cover;
  border-bottom: 2px solid rgba(0, 114, 206, 0.1);
  transition: transform 0.5s ease;
}

.service-card:hover .region-image {
  transform: scale(1.03);
}

.region-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.region-name {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a365d;
  display: flex;
  align-items: center;
  gap: 8px;
}

.region-name::before {
  content: '✦';
  color: #0072ce;
  font-size: 16px;
}

.region-price {
  font-size: 22px;
  color: #0072ce;
  font-weight: 700;
  margin-bottom: 12px;
  background: linear-gradient(to right, #0072ce, #00b4d8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.region-desc {
  font-size: 15px;
  color: #4a5568;
  line-height: 1.5;
  padding: 12px;
  background: #f0f9ff;
  border-radius: 8px;
  border-left: 3px solid #90e0ef;
  margin-bottom: 15px;
  flex-grow: 1;
}

/* Секция круток */
.wish-section {
  background: white;
  border-radius: 18px;
  padding: 30px;
  margin-top: 50px;
  border: 1px solid rgba(0, 114, 206, 0.1);
  box-shadow: 0 4px 15px rgba(0, 114, 206, 0.08);
}

.wish-container {
  display: flex;
  align-items: center;
  gap: 35px;
  flex-wrap: wrap;
}

.wish-image {
  width: 220px;
  height: 220px;
  border-radius: 16px;
  object-fit: cover;
  border: 3px solid transparent;
  background:
    linear-gradient(white, white) padding-box,
    linear-gradient(45deg, #0072ce, #00b4d8) border-box;
  box-shadow: 0 8px 25px rgba(0, 114, 206, 0.2);
}

.wish-info {
  flex: 1;
  min-width: 300px;
}

.wish-price {
  font-size: 30px;
  background: linear-gradient(45deg, #0072ce, #00b4d8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  margin: 20px 0;
  display: inline-block;
}

/* Секции прокачки */
.ascension-section,
.talents-section,
.weapon-section,
.quests-section {
  background: white;
  border-radius: 18px;
  padding: 30px;
  margin-top: 40px;
  border: 1px solid rgba(0, 114, 206, 0.1);
  box-shadow: 0 4px 15px rgba(0, 114, 206, 0.08);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.pricing-card {
  background: white;
  border-radius: 16px;
  padding: 25px;
  border: 2px solid #e6f7ff;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card:hover {
  border-color: #0072ce;
  box-shadow: 0 8px 25px rgba(0, 114, 206, 0.15);
}

.pricing-header {
  margin-bottom: 15px;
}

.pricing-header h3 {
  font-size: 18px;
  color: #1a365d;
  margin-bottom: 10px;
}

.pricing-price {
  font-size: 24px;
  color: #0072ce;
  font-weight: 700;
  background: linear-gradient(to right, #0072ce, #00b4d8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing-desc {
  color: #4a5568;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Секция заданий */
.quests-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.quest-card {
  background: white;
  border-radius: 16px;
  padding: 25px;
  border: 2px solid #e6f7ff;
  text-align: center;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.quest-card:hover {
  border-color: #0096c7;
  box-shadow: 0 8px 25px rgba(0, 150, 199, 0.15);
}

.quest-card h3 {
  color: #1a365d;
  margin-bottom: 15px;
}

.quest-price {
  font-size: 22px;
  color: #0096c7;
  font-weight: 700;
  margin-bottom: 15px;
}

.quest-desc {
  color: #4a5568;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Сайдбар с Ягодой */
.character-info {
  text-align: center;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(0, 114, 206, 0.1);
  margin-bottom: 25px;
}

.character-image {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid transparent;
  background:
    linear-gradient(white, white) padding-box,
    linear-gradient(45deg, #0072ce, #00b4d8) border-box;
  margin-bottom: 20px;
  box-shadow: 0 8px 25px rgba(0, 114, 206, 0.2);
}

.character-name {
  font-size: 24px;
  color: #0072ce;
  margin-bottom: 8px;
  font-weight: 700;
}

.character-title {
  font-size: 15px;
  color: #4a5568;
  margin-bottom: 18px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.character-desc {
  font-size: 15px;
  color: #2d3748;
  line-height: 1.6;
  padding: 15px;
  background: #f0f9ff;
  border-radius: 10px;
  border-left: 3px solid #0072ce;
}

/* Подвал */
footer {
  text-align: center;
  padding: 30px;
  border-top: 2px solid rgba(0, 114, 206, 0.1);
  margin-top: 50px;
  color: #4a5568;
  font-size: 14px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 114, 206, 0.08);
}

footer p {
  margin-bottom: 10px;
  line-height: 1.5;
}

/* Адаптивность */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }

  .banner-title {
    font-size: 40px;
  }

  .main-content {
    gap: 25px;
  }
}

@media (max-width: 900px) {
  .main-content {
    flex-direction: column;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }

  .sidebar {
    position: static;
  }

  .wish-container {
    flex-direction: column;
    text-align: center;
  }

  .wish-image {
    width: 200px;
    height: 200px;
  }

  .pricing-grid,
  .quests-grid {
    grid-template-columns: 1fr;
  }

  .banner {
    height: 250px;
  }

  .banner-title {
    font-size: 36px;
  }

  .banner-subtitle {
    font-size: 18px;
  }
}

@media (max-width: 700px) {
  header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .search-container {
    width: 100%;
    max-width: 400px;
  }

  .logo {
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .bottom-order-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .banner {
    height: 200px;
  }

  .banner-title {
    font-size: 32px;
  }

  .banner-subtitle {
    font-size: 16px;
  }
}

/* Скрываем кнопки внизу на мобильных устройствах */
@media (max-width: 768px) {
  .bottom-order-buttons {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 15px;
  }

  .service-card,
  .sidebar,
  .wish-section,
  .ascension-section,
  .talents-section,
  .weapon-section,
  .quests-section {
    padding: 15px;
  }

  h2 {
    font-size: 22px;
  }

  h3 {
    font-size: 18px;
  }

  .order-btn.large {
    padding: 12px 24px;
    font-size: 16px;
  }

  .banner {
    height: 180px;
  }

  .banner-title {
    font-size: 28px;
  }

  .banner-subtitle {
    font-size: 14px;
  }
}

/* Кастомный скроллбар */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #e6f7ff;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #0072ce, #00b4d8);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, #00b4d8, #0072ce);
}

/* Состояния элементов */
.service-card.hidden {
  display: none;
}

/* Плавные переходы */
.service-card,
.sidebar,
.wish-section,
.order-btn,
.service-order-btn,
.wish-order-btn {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Добавьте эти стили в конец вашего файла style.css */

/* Стили для сетки прайсинга круток */
.wish-pricing-grid {
  margin: 20px 0;
  padding: 15px;
  background: #f0f9ff;
  border-radius: 12px;
  border-left: 4px solid #0072ce;
}

.wish-pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 114, 206, 0.1);
}

.wish-pricing-item:last-child {
  border-bottom: none;
}

.wish-level {
  font-weight: 600;
  color: #1a365d;
}

.wish-note {
  font-size: 14px;
  color: #718096;
  font-style: italic;
  margin-top: 10px;
}

/* Стили для новых секций */
.legend-section,
.achievements-section,
.world-quests-section,
.curiosities-section,
.abyss-section,
.chenyu-section {
  background: white;
  border-radius: 18px;
  padding: 30px;
  margin-top: 40px;
  border: 1px solid rgba(0, 114, 206, 0.1);
  box-shadow: 0 4px 15px rgba(0, 114, 206, 0.08);
}

/* Стили для сетки прайсинга с одной колонкой */
.pricing-grid.single {
  grid-template-columns: 1fr;
  max-width: 400px;
  margin: 0 auto;
}

/* Адаптивность для новых секций */
@media (max-width: 900px) {
  .pricing-grid.single {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .wish-pricing-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .wish-pricing-grid {
    padding: 12px;
  }
}

/* Секция Рыба */
.fish-section {
  background: white;
  border-radius: 18px;
  padding: 30px;
  margin-top: 40px;
  border: 1px solid rgba(0, 114, 206, 0.1);
  box-shadow: 0 4px 15px rgba(0, 114, 206, 0.08);
}

.fish-section h2 {
  font-size: 26px;
  margin-bottom: 25px;
  color: #1a365d;
  border-left: 4px solid #0072ce;
  padding-left: 15px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.fish-section .pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.fish-section .pricing-grid.single {
  grid-template-columns: 1fr;
  max-width: 400px;
  margin: 0 auto;
}

.fish-section .pricing-card {
  background: white;
  border-radius: 16px;
  padding: 25px;
  border: 2px solid #e6f7ff;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.fish-section .pricing-card:hover {
  border-color: #0096c7;
  box-shadow: 0 8px 25px rgba(0, 150, 199, 0.15);
}

.fish-section .pricing-header {
  margin-bottom: 15px;
}

.fish-section .pricing-header h3 {
  font-size: 18px;
  color: #1a365d;
  margin-bottom: 10px;
}

.fish-section .pricing-price {
  font-size: 24px;
  color: #0096c7;
  font-weight: 700;
  background: linear-gradient(to right, #0096c7, #48cae4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fish-section .pricing-desc {
  color: #4a5568;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

@media (max-width: 600px) {
  .fish-section {
    padding: 20px;
  }

  .fish-section .pricing-grid.single {
    max-width: 100%;
  }
}

/* Секция Сюжет */
.story-section {
  background: white;
  border-radius: 18px;
  padding: 30px;
  margin-top: 40px;
  border: 1px solid rgba(0, 114, 206, 0.1);
  box-shadow: 0 4px 15px rgba(0, 114, 206, 0.08);
}

.story-section h2 {
  font-size: 26px;
  margin-bottom: 25px;
  color: #1a365d;
  border-left: 4px solid #0072ce;
  padding-left: 15px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.story-section .pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.story-section .pricing-card {
  background: white;
  border-radius: 16px;
  padding: 25px;
  border: 2px solid #e6f7ff;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.story-section .pricing-card:hover {
  border-color: #0096c7;
  box-shadow: 0 8px 25px rgba(0, 150, 199, 0.15);
}

.story-section .pricing-header {
  margin-bottom: 15px;
}

.story-section .pricing-header h3 {
  font-size: 18px;
  color: #1a365d;
  margin-bottom: 10px;
}

.story-section .pricing-price {
  font-size: 24px;
  color: #0096c7;
  font-weight: 700;
  background: linear-gradient(to right, #0096c7, #48cae4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.story-section .pricing-desc {
  color: #4a5568;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

@media (max-width: 600px) {
  .story-section {
    padding: 20px;
  }

  .story-section .pricing-grid {
    grid-template-columns: 1fr;
  }
}
