/* 云游集 - 海南旅游官网 样式 */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #0284c7;
  --primary-dark: #0369a1;
  --primary-light: #0ea5e9;
  --accent: #f97316;
  --accent-light: #fb923c;
  --ocean: #0c4a6e;
  --sand: #fef3c7;
  --coral: #f43f5e;
  --green: #059669;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-500: #64748b;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --white: #ffffff;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --radius: 12px;
  --radius-lg: 20px;
}

body {
  font-family: 'Source Sans 3', 'Microsoft YaHei', sans-serif;
  color: var(--gray-900);
  line-height: 1.6;
  overflow-x: hidden;
}

/* From Uiverse.io by narmesh_sah - 加载动画 */
.preloader-wrap {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: linear-gradient(135deg, #0284c7 0%, #0c4a6e 50%, #059669 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader-wrap.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 2px #fff);
}

.preloader .crack {
  position: absolute;
  width: 10%;
  aspect-ratio: 1;
  background-color: #fef3fc;
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
  animation: preloader-rotate 6s infinite;
}

.preloader .crack2 {
  width: 12%;
  animation-delay: 1s;
}

.preloader .crack3 {
  width: 14%;
  animation-delay: 1.5s;
}

.preloader .crack4 {
  width: 16%;
  animation-delay: 2s;
}

.preloader .crack5 {
  width: 18%;
  animation-delay: 2.5s;
}

@keyframes preloader-rotate {
  to {
    rotate: 360deg;
  }
}

h1, h2, h3 {
  font-family: 'Noto Serif SC', 'Source Sans 3', serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== 导航栏 ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.04);
  transition: background 0.3s;
}

.navbar-transparent {
  background: transparent;
  border-bottom: none;
}

.navbar-transparent .nav-links a,
.navbar-transparent .logo {
  color: white;
}

.navbar-transparent .back-home {
  color: rgba(255, 255, 255, 0.9);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 48px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 42px;
  width: auto;
  display: block;
}

/* 登录页透明导航栏上的 logo（深色背景） */
.logo-img-light {
  filter: brightness(1.1);
}

.nav-links {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 80px;
  align-items: center;
}

.nav-links li {
  display: inline-block;
  flex-shrink: 0;
  padding: 0 40px;
}

.nav-links a {
  text-decoration: none;
  color: var(--gray-700);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.user-link {
  display: flex;
  align-items: center;
  gap: 8px;
}

.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gray-700);
}

/* ========== 主视觉区 ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.hero-carousel {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background-color: #0c4a6e;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-carousel::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(2, 132, 199, 0.45) 0%, rgba(12, 74, 110, 0.5) 50%, rgba(5, 150, 105, 0.45) 100%);
  pointer-events: none;
}

.hero-carousel-dots {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}

.hero-carousel-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s;
}

.hero-carousel-dots .dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.hero-carousel-dots .dot.active {
  background: white;
  transform: scale(1.2);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-tag {
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(42px, 8vw, 80px);
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 24px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  letter-spacing: 2px;
}

.hero-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-hero {
  background: white;
  color: var(--primary);
  padding: 16px 40px;
  font-size: 17px;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 14px;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid rgba(255, 255, 255, 0.8);
  border-bottom: 2px solid rgba(255, 255, 255, 0.8);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(8px); }
}

/* ========== 数据展示 ========== */
.stats {
  padding: 48px 0;
  background: var(--white);
  margin-top: -1px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {
  padding: 24px;
}

.stat-num {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  color: var(--gray-500);
}

/* ========== 区块通用 ========== */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 36px;
  margin-bottom: 12px;
  color: var(--gray-900);
}

.section-header p {
  font-size: 18px;
  color: var(--gray-500);
}

/* ========== 热门景点 ========== */
.destinations {
  background: var(--gray-50);
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.dest-card {
  display: block;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.dest-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.dest-img {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.dest-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dest-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.95);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
}

.dest-info {
  padding: 24px;
}

.dest-info h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--gray-900);
}

.dest-info p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ========== 精品路线 ========== */
.routes {
  background: white;
}

.route-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.route-card {
  display: block;
  padding: 32px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
}

.route-card:hover {
  border-color: var(--primary);
  background: white;
  box-shadow: var(--shadow);
}

.route-days {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

.route-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--gray-900);
}

.route-card p {
  font-size: 14px;
  color: var(--gray-500);
}

/* ========== 子页面通用 ========== */
.page-main {
  padding-top: 80px;
  min-height: 100vh;
}

.page-hero {
  background: linear-gradient(135deg, #0284c7 0%, #0c4a6e 50%, #059669 100%);
  color: white;
  padding: 60px 24px;
  text-align: center;
}

.page-hero h1 {
  font-size: 42px;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 18px;
  opacity: 0.9;
}

/* 景点详情页 */
.dest-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--gray-200);
}

.dest-detail:last-of-type {
  border-bottom: none;
}

.dest-detail-reverse {
  direction: rtl;
}

.dest-detail-reverse > * {
  direction: ltr;
}

.dest-detail-img {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.dest-detail-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.dest-detail-content .dest-badge {
  position: static;
  margin-bottom: 12px;
}

.dest-detail-content h2 {
  font-size: 32px;
  margin-bottom: 16px;
  color: var(--gray-900);
}

.dest-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 20px;
}

.dest-spots {
  list-style: none;
}

.dest-spots li {
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 15px;
  color: var(--gray-700);
}

.dest-spots li:last-child {
  border-bottom: none;
}

/* 路线详情页 */
.route-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding: 64px 0;
  border-bottom: 1px solid var(--gray-200);
}

.route-detail:last-of-type {
  border-bottom: none;
}

.route-detail-reverse {
  direction: rtl;
}

.route-detail-reverse > * {
  direction: ltr;
}

.route-detail-img {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.route-detail-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.route-detail-content .route-days {
  margin-bottom: 12px;
}

.route-detail-content h2 {
  font-size: 28px;
  margin-bottom: 12px;
  color: var(--gray-900);
}

.route-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 20px;
}

.route-schedule h4 {
  font-size: 16px;
  margin-bottom: 12px;
  color: var(--gray-800);
}

.route-schedule ul {
  list-style: none;
}

.route-schedule li {
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.6;
}

.route-tip {
  margin-top: 20px;
  padding: 12px 16px;
  background: var(--gray-50);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--gray-600);
}

@media (max-width: 768px) {
  .dest-detail,
  .route-detail {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 24px;
  }

  .dest-detail-reverse,
  .route-detail-reverse {
    direction: ltr;
  }
}

/* ========== 关于海南 ========== */
.about {
  background: linear-gradient(135deg, var(--ocean) 0%, var(--primary) 100%);
  color: white;
}

.about .section-tag {
  color: rgba(255, 255, 255, 0.8);
}

.about .section-header h2,
.about h2 {
  color: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-content p {
  font-size: 16px;
  line-height: 1.8;
  opacity: 0.95;
  margin-bottom: 24px;
}

.about-features {
  list-style: none;
}

.about-features li {
  padding: 12px 0;
  font-size: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.about-visual {
  display: flex;
  justify-content: center;
}

.about-card {
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 8px;
}

.about-card-inner {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
}

/* ========== 页脚 ========== */
.footer {
  background: var(--gray-900);
  color: white;
  padding: 64px 0 24px;
}

.footer-compact {
  padding: 32px 0;
}

.footer-compact .container {
  text-align: center;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.logo-container {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(100, 181, 246, 0.1);
  border-radius: 8px;
  margin-bottom: 12px;
}

.footer-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(100, 181, 246, 0.6));
  transition: all 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 12px rgba(100, 181, 246, 0.8));
}

.footer-brand p {
  font-size: 14px;
  opacity: 0.7;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 14px;
  margin-bottom: 16px;
  opacity: 0.9;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-links a:hover {
  color: white;
}

.footer-contact p {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 8px;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  opacity: 0.6;
}

/* ========== 登录/注册页 ========== */
.auth-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.auth-bg {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #0284c7 0%, #0c4a6e 50%, #059669 100%);
  z-index: -2;
}

.particle-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.auth-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 48px;
}

.auth-card {
  width: 100%;
  max-width: 420px;
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.auth-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 28px;
  border-bottom: 2px solid var(--gray-200);
}

.auth-tab {
  flex: 1;
  padding: 12px;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-500);
  cursor: pointer;
  transition: color 0.2s;
}

.auth-tab.active {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
  margin-bottom: -2px;
}

/* From Uiverse.io by Yaya12085 - 适配中文 */
.auth-form.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 100%;
  background-color: #fff;
  padding: 0;
  border-radius: 20px;
  position: relative;
}

.form-title {
  font-size: 26px;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: -0.5px;
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 30px;
  margin-bottom: 4px;
}

.form-title::before,
.form-title::after {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  border-radius: 50%;
  left: 0;
  background-color: var(--primary);
}

.form-title::before {
  width: 18px;
  height: 18px;
  background-color: var(--primary);
}

.form-title::after {
  width: 18px;
  height: 18px;
  animation: form-pulse 1s linear infinite;
}

.form-message {
  color: rgba(88, 87, 87, 0.82);
  font-size: 14px;
  margin-bottom: 4px;
}

.auth-form.form label {
  position: relative;
  display: block;
}

.auth-form.form label .input {
  width: 100%;
  padding: 16px 14px 12px 14px;
  outline: 0;
  border: 1px solid rgba(105, 105, 105, 0.4);
  border-radius: 10px;
  font-size: 16px;
  font-family: inherit;
}

.auth-form.form label .input:focus {
  border-color: var(--primary);
}

.auth-form.form label .input + span {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 15px;
  cursor: text;
  transition: 0.3s ease;
  pointer-events: none;
}

.auth-form.form label .input:placeholder-shown + span {
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
}

.auth-form.form label .input:focus + span,
.auth-form.form label .input:not(:placeholder-shown) + span {
  top: 0;
  transform: translateY(-50%);
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  background: #fff;
  padding: 0 6px;
}

.auth-form.form label .input:valid:not(:placeholder-shown) + span {
  color: var(--green);
}

.auth-form.form .submit {
  border: none;
  outline: none;
  background-color: var(--primary);
  padding: 14px;
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
  margin-top: 8px;
}

.auth-form.form .submit:hover {
  background-color: var(--primary-dark);
}

@keyframes form-pulse {
  from {
    transform: scale(0.9);
    opacity: 1;
  }
  to {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* 验证码 */
.captcha-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.captcha-box {
  width: 100px;
  height: 44px;
  min-height: 44px;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  border: 1px solid rgba(105, 105, 105, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--primary);
  user-select: none;
  font-family: 'Consolas', 'Monaco', 'Microsoft YaHei', monospace;
}

.captcha-box.captcha-loading {
  font-size: 12px;
  letter-spacing: 0;
  color: var(--gray-500);
}

.captcha-refresh {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(105, 105, 105, 0.3);
  border-radius: 10px;
  background: #f8fafc;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}

.captcha-refresh:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.captcha-input-wrap {
  flex: 1;
  min-width: 0;
}

.captcha-input {
  text-transform: uppercase;
}

.form-error {
  color: var(--coral);
  font-size: 14px;
  margin: -4px 0 0;
  min-height: 20px;
}

.back-home {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

/* ========== 个人中心 ========== */
.personal-main {
  padding: 120px 0 64px;
  min-height: 100vh;
  background: var(--gray-50);
}

.guest-block {
  background: white;
  border-radius: var(--radius-lg);
  padding: 80px 48px;
  text-align: center;
  box-shadow: var(--shadow);
}

.guest-content {
  max-width: 400px;
  margin: 0 auto;
}

.guest-icon {
  font-size: 64px;
  margin-bottom: 24px;
}

.guest-content h2 {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--gray-900);
}

.guest-content p {
  color: var(--gray-500);
  margin-bottom: 24px;
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 32px;
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
  box-shadow: var(--shadow);
}

.profile-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  flex-shrink: 0;
}

.profile-info {
  flex: 1;
}

.profile-info h1 {
  font-size: 28px;
  margin-bottom: 8px;
  color: var(--gray-900);
}

.profile-meta {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 4px;
}

.profile-info .btn {
  margin-top: 16px;
}

.personal-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 24px;
}

.personal-tab {
  padding: 12px 24px;
  background: white;
  border: none;
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-500);
  cursor: pointer;
  border-radius: var(--radius);
  margin-right: 8px;
  transition: all 0.2s;
}

.personal-tab.active {
  background: var(--primary);
  color: white;
}

.tab-panel {
  display: none;
  background: white;
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.tab-panel.active {
  display: block;
}

.empty-state {
  text-align: center;
  padding: 48px;
  color: var(--gray-500);
}

.empty-state a {
  color: var(--primary);
  text-decoration: none;
  margin-top: 16px;
  display: inline-block;
}

.empty-state a:hover {
  text-decoration: underline;
}

/* ========== 响应式 ========== */
@media (max-width: 1024px) {
  .dest-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .route-list {
    grid-template-columns: 1fr;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== 3D游海南 ========== */
.3d-hainan-section {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.3d-hainan-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.3d-hainan-image {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.3d-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.3d-hainan-image:hover .3d-image {
  transform: scale(1.05);
}

.3d-hainan-info h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--gray-900);
}

.3d-hainan-info p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 24px;
}

.3d-features {
  list-style: none;
  margin-bottom: 32px;
}

.3d-features li {
  padding: 12px 0;
  font-size: 16px;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-200);
}

.3d-features li:last-child {
  border-bottom: none;
}

@media (max-width: 1024px) {
  .3d-hainan-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .3d-image {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 56px;
    overflow-x: auto;
    padding: 8px 0;
    -webkit-overflow-scrolling: touch;
  }
  
  .nav-toggle {
    display: none;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .dest-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .profile-header {
    flex-direction: column;
    text-align: center;
  }
  
  .3d-image {
    height: 150px;
  }
}
