/* WPS Office Official Original - Minimalist Platinum Style */
:root {
  --wps-cre-bg: #ffffff;
  --wps-cre-red: #ff4d4f; /* 现代活力红 */
  --wps-cre-platinum: #f5f5f7;
  --wps-cre-text: #1d1d1f;
  --wps-cre-text-soft: #86868b;
  --wps-cre-border: #d2d2d7;
  --wps-cre-shadow: 0 20px 40px rgba(0,0,0,0.04);
  --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-font-smoothing: antialiased; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Myriad Set Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: var(--wps-cre-bg);
  color: var(--wps-cre-text);
  line-height: 1.47059;
  letter-spacing: -0.022em;
}

.container { max-width: 1060px; margin: 0 auto; padding: 0 20px; }

/* Platinum Navbar */
.nav-cre {
  height: 52px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: saturate(180%) blur(20px);
  position: sticky;
  top: 0;
  z-index: 9999;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.nav-cre-content { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.nav-cre-logo { font-size: 20px; font-weight: 600; text-decoration: none; color: var(--wps-cre-text); }
.nav-cre-links { display: flex; gap: 32px; }
.nav-cre-link { font-size: 12px; text-decoration: none; color: var(--wps-cre-text-soft); transition: color 0.3s; }
.nav-cre-link:hover { color: var(--wps-cre-text); }

/* Hero */
.hero-cre {
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
}
.hero-cre h1 { font-size: 80px; font-weight: 700; margin-bottom: 20px; letter-spacing: -0.015em; }
.hero-cre p { font-size: 24px; color: var(--wps-cre-text-soft); max-width: 600px; margin: 0 auto 40px; }

/* Creative Cards */
.card-cre {
  background: var(--wps-cre-platinum);
  border-radius: 24px;
  padding: 60px;
  margin-bottom: 30px;
  transition: var(--transition);
  border: 1px solid transparent;
}
.card-cre:hover {
  background: #fff;
  border-color: var(--wps-cre-border);
  box-shadow: var(--wps-cre-shadow);
  transform: scale(1.01);
}

/* Buttons */
.btn-cre {
  display: inline-block;
  padding: 12px 28px;
  background: var(--wps-cre-red);
  color: #fff;
  text-decoration: none;
  border-radius: 100px;
  font-weight: 500;
  font-size: 17px;
  transition: var(--transition);
}
.btn-cre:hover { opacity: 0.8; transform: translateY(-2px); }

.btn-cre-link {
  color: #0066cc;
  text-decoration: none;
  font-size: 19px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-cre-link:hover { text-decoration: underline; }

/* Sections */
.section-cre { padding: 100px 0; }
.section-cre-title { font-size: 48px; font-weight: 700; text-align: center; margin-bottom: 60px; }

/* Footer */
.footer-cre {
  background: #f5f5f7;
  padding: 60px 0;
  font-size: 12px;
  color: var(--wps-cre-text-soft);
}
.footer-cre-content { border-top: 1px solid var(--wps-cre-border); padding-top: 20px; }
