* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #96e5ff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.3s;
}

.loading.hide {
  opacity: 0;
  pointer-events: none;
}

.loading-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.loading-text {
  color: #fff;
  font-size: 14px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #e5e7eb;
  min-height: 100vh;
  /*padding: 20px 16px;*/
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
}

.top-actions {
  display: flex;
  gap: 8px;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,0.3);
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  max-width: 500px;
  margin: 0 auto;
  background: linear-gradient(180deg, #0277b8 0%, #42bcff 100%);
  border-radius: 24px;
  padding: 32px 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.header {
  text-align: center;
  margin-bottom: 20px;
}

.avatar {
  width: 100px;
  height: 100px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.avatar-text {
  color: #7c2d12;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
}

.title {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

.subtitle {
  color: rgba(255,255,255,0.95);
  font-size: 14px;
  line-height: 1.5;
}

.content {
  padding: 0;
}

.description {
  color: #fff;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: left;
}

.link-badge {
  background: rgba(255,255,255,0.25);
  color: #fff;
  padding: 10px 20px;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  margin-bottom: 24px;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.link-card {
  display: flex;
  align-items: center;
  padding: 18px 16px;
  background: #fff;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.2s;
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

.link-card:active {
  transform: scale(0.98);
}

.link-icon {
  width: 44px;
  height: 44px;
  margin-right: 14px;
  flex-shrink: 0;
}

.link-icon img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.link-text {
  flex: 1;
}

.link-title {
  color: #1f2937;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
}

.arrow {
  color: #d1d5db;
  font-size: 20px;
  margin-left: 8px;
  font-weight: 300;
}

.guide-image {
  border-radius: 16px;
  overflow: hidden;
  background: #1f2937;
}

.guide-image img {
  width: 100%;
  display: block;
}
