body {
  background: linear-gradient(135deg, #d94c00, #ffc800);
  height: 100vh;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  padding: 20px;
}

#app {
  max-width: 800px;
  margin: auto;
}

.tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.tab-button {
  padding: 10px 24px;
  border: none;
  border-radius: 999px;
  background: rgba(243, 245, 248, 0.68);
  border: 1px solid #fff;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 16px;
}

.tab-button.active {
  background: white;
  color: #ff6600;
}

.tab-content {
  background: rgba(243, 245, 248, 0.68);
  border: 1px solid #fff;
  border-radius: 32px;
  padding: 24px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
  padding-bottom: 4px;
}
.item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-radius: 26px;
  background: rgba(243, 245, 248, 0.68);
  border: 1px solid #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  gap: 20px;
}

.logo {
  width: 48px;
  height: 48px;
  background: #ddd;
  border-radius: 12px;
  flex-shrink: 0;
  overflow: hidden;
}
.logo img {
  width: 100%;
  height: 100%;
}

.info-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.info {
  display: flex;
  flex-direction: column;
}

.info h3 {
  margin: 0;
  font-size: 16px;
  color: #333;
}

.info p {
  margin: 6px 0 0;
  color: #777;
  font-size: 13px;
}

.enter-btn {
  padding: 8px 18px;
  background: #ff6600;
  color: white;
  border: none;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s;
}
.enter-btn:hover {
  background: #e65c00;
}
.site-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  margin-bottom: 24px;
  background: rgba(243, 245, 248, 0.68);
  border: 1px solid #fff;
  border-radius: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.logo-large {
  width: 56px;
  height: 56px;
  border-radius: 24px;
  flex-shrink: 0;
  overflow: hidden;
}
.logo-large img {
  width: 100%;
  height: 100%;
}

.site-meta {
  display: flex;
  flex-direction: column;
}

.site-title {
  margin: 0;
  font-size: 20px;
  color: #333;
  font-weight: bold;
}

.site-desc {
  margin: 6px 0 0;
  font-size: 14px;
  color: #777;
}
.footer {
  border-radius: 16px;
  padding: 24px;
  margin-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #000;
}
.footer .lte {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .lte p {
  margin-right: 12px;
  display: flex;
  align-items: center;
}
.footer a {
  color: #000;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
  color: #666;
}
.footer p {
  margin: 8px 0;
}
.lte-icon {
  width: 20px;
}
