/* ===== CSS变量定义 ===== */
:root {
  /* 主色调 */
  --primary-blue: #cbaff6;
  --hover-blue: #b185f2;
  --light-purple: #e3d7f6;

  /* 背景色 */
  --bg-grey: #f9fafb;
  --bg-white: #ffffff;

  /* 文字颜色 */
  --text-color: #333;
  --text-light: #666;
  --text-dark: #374456;

  /* 边框和分割线 */
  --border-color: #eee;
  --divider-color: #ddd;

  /* 功能色 */
  --scrollbar-track: #f1f1f1;
  --scrollbar-thumb: #888;
  --scrollbar-hover: #555;

  /* 渐变颜色 */
  --gradient-1: #ea6044;
  --gradient-2: #dc5083;
  --gradient-3: #b699f1;
  --gradient-4: #76b4ff;
}

/* ===== 重置样式 ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== 基础样式 ===== */
body {
  font-family: "Segoe UI", "微软雅黑", sans-serif;
  background: var(--bg-grey);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  color: var(--text-color);
}

h1 {
  font-size: 4rem;
  color: var(--text-color);
  margin-bottom: 20px;
  text-align: center;
}

h2 {
  font-size: 1.5rem;
  color: var(--text-color);
  margin-bottom: 15px;
}

p,
li {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 15px;
}

ul {
  padding-left: 20px;
}

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

/* ===== 布局样式 ===== */
.container {
  max-width: 1200px;
  width: 100%;
  background: var(--bg-white);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  padding: 40px;
  margin-top: 30px;
}

.main-content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.left-panel {
  flex: 1;
  border-right: 1px solid var(--border-color);
  padding-right: 60px;
}

.right-panel {
  flex: 1;
  padding-left: 60px;
}

.page-content {
  margin-top: 80px;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

/* ===== 导航栏样式 ===== */
.navbar {
  background: var(--bg-white);
  color: var(--primary-blue);
  padding: 10px 18px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

.navbar-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-logo {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--primary-blue);
  text-decoration: none;
}

.navbar-menu {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.navbar-link {
  color: var(--primary-blue);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.navbar-link:hover {
  color: var(--hover-blue);
}

/* ===== 应用图标和版本信息 ===== */
.version-info {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 15px;
}

.mengbie-logo {
  width: 120px;
  height: auto;
  vertical-align: middle;
}

/* ===== 更新日志样式 ===== */
.update-list {
  list-style: none;
  max-height: 400px;
  overflow-y: auto;
  padding-right: 10px;
}

.update-list::-webkit-scrollbar {
  width: 8px;
}

.update-list::-webkit-scrollbar-track {
  background: var(--scrollbar-track);
  border-radius: 4px;
}

.update-list::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb);
  border-radius: 4px;
}

.update-list::-webkit-scrollbar-thumb:hover {
  background: var(--scrollbar-hover);
}

.update-item {
  margin-bottom: 25px;
  padding-left: 30px;
  border-left: 3px solid var(--border-color);
  position: relative;
}

.update-item::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 5px;
  width: 12px;
  height: 12px;
  background: var(--primary-blue);
  border-radius: 50%;
}

.update-date {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.update-content {
  color: var(--text-color);
  line-height: 1.6;
}

.update-tag {
  display: inline-block;
  background-color: var(--hover-blue);
  color: var(--bg-white);
  font-size: 0.6rem;
  padding: 1px 4px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: middle;
}

.version {
  font-weight: bold;
}

.date {
  color: var(--text-light);
}

/* ===== 下载区域样式 ===== */
.download-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.download-sectionn {
  display: flex;
  margin-top: -50px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.download-btn {
  background: var(--primary-blue);
  color: var(--bg-white);
  padding: 14px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: background 0.3s ease;
}

.download-btn:hover {
  background: var(--hover-blue);
}

.custom-icon {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.download-btn svg {
  width: 26px;
  height: 26px;
  pointer-events: none;
}

/* ===== 按钮组样式 ===== */
.button-group {
  display: inline-flex;
  border-radius: 0.375rem;
  overflow: hidden;
  border: 2px solid var(--primary-blue);
  transition: border-color 0.2s ease-in-out;
}

.button-group:hover {
  border-color: var(--primary-blue);
}

.button-group button {
  border: none;
  outline: none;
  cursor: pointer;
}

.button-group button:first-child {
  border-right: 1px solid var(--hover-blue);
}

.button-group button:last-child {
  border-left: 1px solid var(--primary-blue);
}

/* ===== 下拉菜单样式 ===== */
#dropdown-container {
  position: relative;
  display: inline-block;
}

#dropdown-menu {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  background-color: var(--bg-white);
  border: 1px solid #f5f5f5;
  border-radius: 0.375rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
  z-index: 10;
  margin-top: 0.5rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
  width: 100%;
}

#dropdown-menu.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

#dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 0.75rem 1.25rem;
  color: var(--text-color);
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s;
}

#dropdown-menu a:hover {
  background-color: #f9f9f9;
}

.menu-icon {
  margin-right: 10px;
  width: 18px;
  height: 18px;
  color: var(--text-light);
}

.menu-divider {
  height: 1px;
  background-color: var(--border-color);
  margin: 4px 0;
}

.platform-tag {
  font-size: 0.75rem;
  padding: 2px 6px;
  border-radius: 4px;
  background-color: #f0f0f0;
  color: var(--text-light);
  margin-left: 8px;
}

/* ===== 功能展示区域 ===== */
.feature-section {
  width: 100%;
  margin: 0 auto;
  padding: 2rem 0;
}

.feature-container {
  background-color: var(--bg-white);
  border-radius: 1rem;
  box-shadow: 0 8px 32px -12px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  backdrop-filter: blur(4px);
  border: none;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1rem;
  padding: 1rem;
}

.image-container {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  width: 100%;
  padding-bottom: calc(400 / 720 * 100%);
}

.image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s;
}

.image-container img.hidden {
  opacity: 0;
}

.button-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.button-container button {
  color: #444444;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.2s;
}

.button-container button.active {
  background-color: var(--light-purple);
}

.button-container button.active .text-title {
  color: var(--hover-blue);
}

.button-container button.active .text-description {
  color: var(--primary-blue);
}

.button-container button:hover {
  background-color: var(--light-purple);
}

.button-container button:hover .text-title {
  color: var(--hover-blue);
}

.button-container button:hover .text-description {
  color: var(--primary-blue);
}

.text-title {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  transition: color 0.2s;
}

.text-description {
  font-size: 0.875rem;
  color: var(--text-dark);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  transition: color 0.2s;
}

/* ===== 轮播图样式 ===== */
.carousel {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 20px auto;
  overflow: hidden;
  border-radius: 12px;
}

.carousel-inner {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-item {
  min-width: 100%;
  box-sizing: border-box;
}

.carousel-item img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.7);
  color: var(--bg-white);
  border: none;
  padding: 12px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, opacity 0.3s ease;
  opacity: 0.8;
}

.carousel-control:hover {
  background-color: rgba(0, 0, 0, 0.9);
  opacity: 1;
}

.carousel-control.prev {
  left: 20px;
}

.carousel-control.next {
  right: 20px;
}

/* ===== 特殊文本效果 ===== */
.highlight {
  display: block;
  background-image: linear-gradient(
    241deg,
    var(--gradient-1) 39%,
    var(--gradient-2) 50%,
    var(--gradient-3) 67%,
    var(--gradient-4) 81%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 1.8rem;
  text-align: center;
}

.main [data-module-template="heroes"] [data-unit-id="mengbie-fz"] .highlight {
  background-image: -webkit-linear-gradient(
    241deg,
    var(--gradient-1) 39%,
    var(--gradient-2) 50%,
    #9a6df7 67%,
    #3f8def 81%
  );
  background-image: linear-gradient(
    209deg,
    var(--gradient-1) 39%,
    var(--gradient-2) 50%,
    #9a6df7 67%,
    #3f8def 81%
  );
  -webkit-background-clip: text;
  background-clip: text;
  position: relative;
  color: transparent;
}

/* ===== 洛克王国样式 ===== */
.luoke-mengbie-container {
  display: inline-block;
  vertical-align: middle;
}
.mengbie-logo1 {
  width: 200px;
  height: auto;
  vertical-align: middle;
}

.luoke-title {
  display: block;
  background-color: var(--light-purple);
  padding: 3px 8px;
  border-radius: 8px;
  font-size: 0.8rem;
  text-align: center;
  color: var(--hover-blue);
}

/* ===== 分割线样式 ===== */
.content-kuaheng {
  border: 0;
  height: 2px;
  background-color: var(--divider-color);
  margin: 10px 0;
  width: 80%;
}

.content-divider {
  border: 0;
  height: 2px;
  background-color: var(--primary-blue);
  margin: 0.2px 0;
  margin-left: 20px;
  width: 8%;
}

/* ===== 页脚链接 ===== */
.footer-links {
  margin-top: 40px;
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  display: flex;
  gap: 25px;
  justify-content: center;
}

.footer-link {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--primary-blue);
}

/* QQ频道图标悬停效果 */
.qrcode-hover-container .footer-link:hover img[src*="qq-channel-icon.svg"] {
  filter: brightness(0) saturate(100%) invert(81%) sepia(15%) saturate(1081%)
    hue-rotate(203deg) brightness(101%) contrast(97%);
}

/* ===== 二维码悬浮样式 ===== */
.qrcode-hover-container {
  position: relative;
  display: inline-block;
}

.qrcode-hover-box {
  display: none;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-white);
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 100;
}

.qrcode-hover-container:hover .qrcode-hover-box {
  display: block;
}

.qrcode-hover-box img {
  width: 150px;
  height: 150px;
}

.qrcode-hover-box p {
  margin: 5px 0 0;
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
}

/* ===== 消息提示样式 ===== */
.message-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px;
  background: var(--bg-white);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  text-align: center;
  font-family: "Segoe UI", "微软雅黑", sans-serif;
  color: var(--text-color);
}

.message-container p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--text-color);
}

#mobile-message,
#ipad-message {
  display: none;
}

/* ===== 新闻iframe样式 ===== */
#news-iframe {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 300px;
  height: 375px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0);
  opacity: 1;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

#news-iframe.hidden {
  opacity: 0;
  transform: translateY(20px);
}

/* ===== 响应式设计 ===== */
@media (max-width: 768px) {
  .main-content {
    flex-direction: column;
    gap: 40px;
  }

  .left-panel {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 40px;
  }

  .right-panel {
    padding-left: 0;
  }

  .container {
    padding: 30px 20px;
  }

  .navbar-menu {
    display: none;
  }

  .navbar-logo {
    font-size: 1rem;
  }

  .feature-item {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .feature-item {
    flex: 1 1 100%;
  }
}

/* 手机设备 */
@media only screen and (max-width: 767px) {
  .page-content {
    display: none;
  }
  #mobile-message {
    display: block;
  }
}

/* iPad 设备 */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .page-content {
    display: none;
  }
  #ipad-message {
    display: block;
  }
}

/* ===== 功能卡片样式 ===== */
.p-item-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.p-item {
  position: relative;
  width: 320px;
  height: 280px;
  padding: 30px;
  text-align: center;
  background: linear-gradient(135deg, var(--light-purple) 0%, #ece5f7 100%);
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(255, 255, 255, 0.8);
  transition: all 0.4s ease;
  cursor: pointer;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.p-item::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.p-item:hover::before {
  animation: shine 1.5s;
}

@keyframes shine {
  0% {
    left: -50%;
    opacity: 0;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    left: 150%;
    opacity: 0;
  }
}

.p-item img {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 6px rgba(255, 255, 255, 0.8));
  transition: transform 0.3s ease;
}

.p-item:hover img {
  transform: scale(1.1);
}

.p-item > div:nth-of-type(1) {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--hover-blue);
  text-shadow: 0 2px 4px rgba(253, 253, 253, 0.8);
}

.p-item > div:nth-of-type(2) {
  font-size: 15px;
  color: var(--primary-blue);
  line-height: 1.6;
}

.p-item-hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--hover-blue) 100%
  );
  padding: 25px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  color: var(--bg-white);
  border-radius: 12px;
}

.p-item-hover > div {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--bg-white);
}

.p-item-hover ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.p-item-hover > div,
.p-item-hover ul,
.p-item-hover li,
.p-item-hover li:before {
  color: #f6f0ff !important;
}

.p-item-hover li {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.p-item-hover li:before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: bold;
  color: var(--hover-blue);
}

.p-item:hover {
  box-shadow: 0 12px 25px rgba(255, 255, 255, 0.8);
  transform: translateY(-8px);
}

.p-item:hover .p-item-hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ===== 横幅广告样式 ===== */
.banner-container {
  width: 100%;
  max-width: 728px;
  margin: 0 auto;
}

.banner-ad {
  position: relative;
  width: 100%;
  height: 90px;
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  padding: 0 25px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banner-ad:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.banner-content {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

.banner-text {
  color: var(--bg-white);
  flex: 1;
}

.banner-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 5px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.banner-description {
  font-size: 14px;
  opacity: 0.9;
  max-width: 400px;
}

.banner-cta {
  background-color: #ffcc00;
  color: #333;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
  white-space: nowrap;
}

.banner-cta:hover {
  background-color: #ffdd44;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 204, 0, 0.6);
}

.banner-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--hover-blue);
  color: var(--bg-white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  transform: rotate(5deg);
  box-shadow: 0 3px 10px rgba(255, 71, 87, 0.4);
}

.banner-close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--bg-white);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.banner-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.banner-icon {
  margin-right: 15px;
  font-size: 36px;
  color: var(--bg-white);
  opacity: 0.9;
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* ===== 横幅广告响应式设计 ===== */
@media (max-width: 768px) {
  .banner-ad {
    height: 120px;
    padding: 15px;
  }

  .banner-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

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

  .banner-description {
    font-size: 13px;
  }

  .banner-cta {
    padding: 8px 20px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .banner-ad {
    height: 140px;
  }

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

  .banner-description {
    font-size: 12px;
  }
}

/* ===== 工具类样式 ===== */
.mt-12 {
  margin-top: 3rem;
}
.inline-flex {
  display: inline-flex;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.whitespace-nowrap {
  white-space: nowrap;
}
.font-medium {
  font-weight: 500;
}
.ring-offset-background {
  --tw-ring-offset-background: #fff;
}
.transition-all {
  transition: all 0.2s ease-in-out;
}
.focus-visible:outline-none {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.focus-visible:ring-2 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0
    var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0
    calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow),
    var(--tw-shadow, 0 0 #0000);
}
.focus-visible:ring-ring {
  --tw-ring-color: rgba(59, 130, 246, 0.5);
}
.focus-visible:ring-offset-2 {
  --tw-ring-offset-width: 2px;
}
.disabled:pointer-events-none {
  pointer-events: none;
}
.disabled:opacity-50 {
  opacity: 0.5;
}
.rounded-md {
  border-radius: 0.375rem;
}
.bg-\[\#3388ff\] {
  background-color: var(--primary-blue);
}
.hover\:bg-\[\#2670db\]:hover {
  background-color: var(--hover-blue);
}
.text-white {
  color: var(--bg-white);
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.h-16 {
  height: 4rem;
}
.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}
.rounded-r-none {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.rounded-l-none {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.border-l {
  border-left-width: 1px;
}
.border-\[\#2670db\] {
  border-color: var(--hover-blue);
}
.focus\:ring-0:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0
    var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0
    calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow),
    var(--tw-shadow, 0 0 #0000);
}
.focus\:ring-offset-0:focus {
  --tw-ring-offset-width: 0px;
}
.h-5 {
  height: 1.25rem;
}
.w-5 {
  width: 1.25rem;
}
.lucide {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
