* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a {
  color: #08c;
  text-decoration: none;
}
a:hover {
  color: #006fa0;
}
img {
  max-width: 100%;
}
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
}
.section-sub {
  text-align: center;
  font-size: 16px;
  color: #666;
  margin-bottom: 36px;
}
.btn {
  display: inline-block;
  padding: 10px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
}
.btn-primary {
  background: #08c;
  color: #fff;
  border-color: #08c;
}
.btn-primary:hover {
  background: #006fa0;
  border-color: #006fa0;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,136,204,0.3);
}
.btn-outline {
  background: transparent;
  color: #08c;
  border-color: #08c;
}
.btn-outline:hover {
  background: #08c;
  color: #fff;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  height: 56px;
  display: flex;
  align-items: center;
}
.header-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 800;
  color: #1a1a2e;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.logo img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.logo-text sup {
  font-size: 11px;
  font-weight: 700;
  color: #08c;
  margin-left: 1px;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.header-nav a {
  color: #555;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}
.header-nav a:hover {
  color: #08c;
}
.locale-switch {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #666;
  border: 1px solid #ddd;
  background: transparent;
  white-space: nowrap;
  text-decoration: none;
}
.locale-switch:hover {
  color: #08c;
  border-color: #08c;
}
.btn-login {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #08c;
  border: 1.5px solid #08c;
  background: transparent;
  white-space: nowrap;
}
.header-nav .btn-login:hover {
  background: #08c;
  color: #fff;
}
.hero {
  text-align: center;
  padding: 80px 20px 60px;
  background: linear-gradient(180deg, #f0f7ff 0%, #fff 100%);
}
.hero-badge {
  display: inline-block;
  padding: 4px 14px;
  background: #e0f2fe;
  color: #0369a1;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}
.hero-banner-wrap {
  display: inline-flex;
  align-items: flex-start;
  margin-bottom: 20px;
}
.hero-banner {
  width: 200px;
  filter: drop-shadow(0 4px 12px rgba(0,136,204,0.15));
}
.hero-online {
  font-size: 18px;
  font-weight: 700;
  color: #08c;
  margin-left: 2px;
}
.hero h1 {
  font-size: 44px;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.2;
  margin-bottom: 12px;
}
.hero p {
  font-size: 18px;
  color: #555;
  max-width: 520px;
  margin: 0 auto 28px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.features {
  padding: 60px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  padding: 24px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  border-color: #08c;
  box-shadow: 0 4px 16px rgba(0,136,204,0.08);
}
.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 6px;
}
.feature-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}
.how-it-works {
  padding: 60px 0;
  background: #f8fafc;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 24px;
  text-align: center;
  justify-content: center;
}
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #08c;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.step h3 {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 4px;
}
.step p {
  font-size: 13px;
  color: #666;
}
.faq {
  padding: 60px 0;
}
.faq details {
  border-bottom: 1px solid #e5e5e5;
  padding: 16px 0;
}
.faq summary {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a2e;
  cursor: pointer;
  list-style: none;
}
.faq summary::after {
  content: '+';
  float: right;
  font-size: 20px;
  color: #999;
}
.faq details[open] summary::after {
  content: '\2212';
  color: #08c;
}
.faq details p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-top: 8px;
}
.cta {
  padding: 60px 20px;
  background: #1a1a2e;
  text-align: center;
}
.cta h2 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.cta p {
  font-size: 16px;
  color: #bbb;
  margin-bottom: 24px;
}
.cta .btn-primary {
  background: #08c;
  border-color: #08c;
  padding: 12px 32px;
  font-size: 16px;
}
.cta .btn-primary:hover {
  background: #00a0e0;
  border-color: #00a0e0;
}
.footer-sections {
  background: #f8f9fa;
  padding: 40px 20px;
  border-top: 1px solid #e5e5e5;
}
.footer-sections-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1080px;
  margin: 0 auto;
}
.footer-section-title {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 12px;
}
.footer-section-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-section-links li {
  margin-bottom: 8px;
}
.footer-section-links a {
  color: #666;
  font-size: 13px;
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
}
.footer-section-links a:hover {
  color: #08c;
}
.footer-link-desc {
  font-size: 11px;
  color: #999;
  margin-top: 2px;
}
.site-footer {
  border-top: 1px solid #e5e5e5;
  padding: 24px 20px;
  text-align: center;
}
.footer-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 8px;
}
.footer-links a {
  color: #666;
  font-size: 13px;
}
.footer-links a:hover {
  color: #08c;
}
.site-footer small {
  color: #999;
  font-size: 12px;
}
.page-content {
  padding-top: 40px;
  padding-bottom: 60px;
}
.section-title-left {
  text-align: left;
}
.section-sub-left {
  text-align: left;
}
.about-section {
  margin-bottom: 40px;
}
.about-section h2 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
}
.about-content {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
}
.about-content ul {
  margin: 12px 0;
  padding-left: 24px;
}
.about-content li {
  margin-bottom: 6px;
}
.about-content a {
  color: #08c;
}
.about-content a:hover {
  text-decoration: underline;
}
.blog-list {
  margin-top: 20px;
}
.blog-card {
  padding: 24px 0;
}
.blog-date {
  font-size: 13px;
  color: #999;
  margin-bottom: 8px;
}
.blog-card h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.blog-card h2 a {
  color: #1a1a2e;
  text-decoration: none;
}
.blog-card h2 a:hover {
  color: #08c;
}
.blog-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}
.blog-back {
  display: inline-block;
  font-size: 14px;
  color: #08c;
  margin-bottom: 20px;
}
.blog-back:hover {
  color: #006fa0;
}
.blog-article {
  margin-bottom: 40px;
}
.blog-content {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
}
.blog-content h1 {
  font-size: 30px;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.3;
  margin-bottom: 16px;
}
.blog-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a2e;
  margin-top: 28px;
  margin-bottom: 12px;
}
.blog-content p {
  margin-bottom: 14px;
}
.blog-content ul,
.blog-content ol {
  margin-bottom: 14px;
  padding-left: 24px;
}
.blog-content li {
  margin-bottom: 6px;
}
.blog-content strong {
  color: #1a1a2e;
}
.blog-content a {
  color: #08c;
  text-decoration: underline;
  text-decoration-color: rgba(0,136,204,0.3);
  text-underline-offset: 2px;
}
.blog-content a:hover {
  text-decoration-color: #08c;
}
.blog-nav {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid #e5e5e5;
}
.blog-nav a {
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
  .header-inner {
    padding: 0 12px;
  }
  .hero {
    padding: 60px 16px 40px;
  }
  .hero h1 {
    font-size: 28px;
  }
  .hero p {
    font-size: 15px;
  }
  .hero-banner {
    width: 150px;
  }
  .hero-online {
    font-size: 14px;
  }
  .features-grid,
  .steps-grid,
  .footer-sections-grid {
    grid-template-columns: 1fr;
  }
  .features,
  .how-it-works,
  .faq,
  .cta {
    padding: 40px 0;
  }
  .section-title,
  .cta h2 {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .login-page {
    padding: 32px 16px;
  }
  .login-card h1 {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .user-page {
    padding: 12px;
  }
  .user-info-row {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .user-danger-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
