html {
  scroll-behavior: smooth;
}

body,
html {
  margin: 0;
  padding: 0;
  font-family: 'Kanit', sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

* {
  box-sizing: border-box;
}

.d-grid {
  display: grid;
}

.d-flex {
  display: flex;
  display: -webkit-flex;
}

button,
input,
select {
  -webkit-appearance: none;
  outline: none;
}

button,
.btn,
select {
  cursor: pointer;
}

a {
  text-decoration: none;
}

iframe {
  border: none;
}

ul {
  margin: 0;
  padding: 0
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0
}

.btn,
button,
.actionbg {
  transition: 0.5s ease;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  -ms-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
}

.btn:hover,
button:hover {
  transition: 0.5s ease;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  -ms-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
}

/*--/wrapper--*/
.wrapper {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .wrapper {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .wrapper {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .wrapper {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .wrapper {
    max-width: 1140px;
  }
}

.wrapper-full {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

/*--//wrapper--*/

.w3l-coming-soon-page {
  background: url(../images/banner.jpg) no-repeat center;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
  min-height: 100vh;
  position: relative;
  z-index: 0;
  display: grid;
  align-items: center;
  padding: 3em 0 1em;
}

.w3l-coming-soon-page:before {
  content: "";
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

.coming-page-info .logo-center {
  text-align: center;
}

.coming-page-info a.logo {
  margin: 0;
  padding: 0;
  font-size: 32px;
  font-weight: 600;
  text-transform: capitalize;
  color: #fff;
  letter-spacing: .5px;
}

.coming-page-info a.logo span.fa {
  color: #c0aa83;
}

.coming-page-info a.btn {
  border: 2px solid #eee;
  padding: 12px 35px;
  color: #eee;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: .5px;
  border-radius: 6px;
  transition: .3s ease;
  -webkit-transition: .3s ease;
}

.coming-page-info a.btn:hover {
  border: 2px solid rgba(255, 255, 255, 0.16);
  color: #ddd;
  background: rgba(255, 255, 255, 0.16);
}

.coming-page-info .contact-button {
  text-align: center;
  margin-top: 1em;
}

.coming-page-info a.brand-logo {
  color: #fff;
  font-weight: bold;
  font-size: 40px;
  text-transform: uppercase;
  position: relative;
}

.coming-page-info .coming-block {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 3em 2em;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 爱情标题区域 */
.love-header {
  margin-bottom: 2em;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.main-title {
  font-family: 'Dancing Script', cursive;
  font-size: 3.5em;
  font-weight: 700;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 0.5em;
}

.heart-icon {
  font-size: 2em;
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

/* 爱情信息区域 */
.love-info {
  margin-bottom: 2em;
}

.subtitle {
  font-size: 1.5em;
  color: #fff;
  font-weight: 300;
  margin-bottom: 0.5em;
}

.date {
  font-size: 1.8em;
  color: #fff;
  font-weight: 400;
  margin-bottom: 1em;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.description {
  font-size: 1.2em;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
}

/* 时间轴设计 */
.timeline-container {
  margin: 2em 0;
  position: relative;
  padding: 0 1em;
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 2em;
  position: relative;
}

.timeline-marker {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 2em;
  position: relative;
  z-index: 2;
  animation: markerPulse 2s ease-in-out infinite;
}

.timeline-marker.meeting {
  background: linear-gradient(45deg, #667eea, #764ba2);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.timeline-marker.wedding {
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.marker-icon {
  font-size: 2em;
  animation: iconFloat 3s ease-in-out infinite;
}

@keyframes markerPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
}

.timeline-connector {
  width: 4px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
  margin: 0 auto 2em;
  position: relative;
  border-radius: 2px;
}

.timeline-connector::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: connectorGlow 2s ease-in-out infinite;
}

@keyframes connectorGlow {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

.timeline-content {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 1.5em;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.timeline-content:hover {
  transform: translateX(10px);
}

.timeline-title {
  font-size: 1.8em;
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.5em;
  font-family: 'Dancing Script', cursive;
}

.timeline-date {
  font-size: 1.3em;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  margin-bottom: 0.5em;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.timeline-desc {
  font-size: 1.1em;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  line-height: 1.5;
}

/* 年数显示 */
.years-display {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2em 0;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  border-radius: 50px;
  padding: 1em 2em;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
  animation: glow 2s ease-in-out infinite alternate;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

@keyframes glow {
  from { box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2); }
  to { box-shadow: 0 4px 25px rgba(255, 255, 255, 0.4); }
}

.years-number {
  font-size: 4em;
  font-weight: 700;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.years-text {
  font-size: 2em;
  color: #fff;
  margin-left: 0.5em;
  font-weight: 400;
}

/* 倒计时容器 */
.countdown-container {
  margin: 2em 0;
}

.countdown-title {
  font-size: 1.5em;
  color: #fff;
  margin-bottom: 1.5em;
  font-weight: 400;
}

.coming-page-info .countdown {
  display: flex;
  justify-content: center;
  gap: 1.5em;
  flex-wrap: wrap;
}

.coming-page-info .countdown>div {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 1.5em 1em;
  min-width: 120px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.coming-page-info .countdown>div:hover {
  transform: translateY(-5px);
}

.coming-page-info .countdown .number {
  font-size: 2.5em;
  font-weight: 700;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  margin-bottom: 0.5em;
}

.coming-page-info .countdown .label {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* 爱情寄语 */
.love-message {
  margin: 2em 0;
  padding: 1.5em;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  border-left: 4px solid #ff6b6b;
}

.message-text {
  font-family: 'Dancing Script', cursive;
  font-size: 1.3em;
  color: #fff;
  margin-bottom: 0.5em;
  text-align: center;
  line-height: 1.6;
}

.message-text:last-child {
  margin-bottom: 0;
}

/* 版权信息 */
.w3l-copy-right {
  text-align: center;
  margin-top: 2em;
}

.w3l-copy-right p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1em;
  font-weight: 300;
}

.w3l-copy-right a {
  color: #fff;
}

.w3l-copy-right a:hover {
  color: #ff6b6b;
}

/* 浮动爱心 */
.floating-hearts {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.floating-hearts .heart {
  position: absolute;
  font-size: 1.5em;
  animation: float 6s ease-in-out infinite;
  opacity: 0.6;
}

.floating-hearts .heart:nth-child(1) {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.floating-hearts .heart:nth-child(2) {
  top: 20%;
  right: 15%;
  animation-delay: 1s;
}

.floating-hearts .heart:nth-child(3) {
  top: 60%;
  left: 5%;
  animation-delay: 2s;
}

.floating-hearts .heart:nth-child(4) {
  top: 40%;
  right: 10%;
  animation-delay: 3s;
}

.floating-hearts .heart:nth-child(5) {
  top: 80%;
  right: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 1;
  }
}

/* 音乐播放器 */
.music-player {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.music-btn-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
}

.progress-ring {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
}

.progress-ring-circle-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.3);
  stroke-width: 3;
}

.progress-ring-circle {
  fill: none;
  stroke: url(#progressGradient);
  stroke-linecap: round;
  stroke-dasharray: 157.08; /* 2 * π * 25 */
  stroke-dashoffset: 157.08;
  transition: stroke-dashoffset 0.1s ease;
  filter: drop-shadow(0 0 3px rgba(102, 126, 234, 0.5));
  stroke-width: 3;
}

.music-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #667eea, #764ba2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.music-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.music-btn:hover::before {
  opacity: 1;
}

.music-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.music-btn.playing {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  animation: musicPulse 2s ease-in-out infinite;
}

.music-btn.playing:hover {
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

@keyframes musicPulse {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
  50% { 
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
}

.music-icon {
  font-size: 1.5em;
  color: #fff;
  transition: all 0.3s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.music-info {
  flex: 1;
  min-width: 0;
}

.song-title {
  display: block;
  color: #fff;
  font-size: 0.9em;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.music-progress {
  width: 100%;
}

.progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #667eea, #764ba2);
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s ease;
  box-shadow: 0 0 5px rgba(102, 126, 234, 0.5);
  position: relative;
}

.progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: progressShine 2s ease-in-out infinite;
}

@keyframes progressShine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* 音乐播放器响应式设计 */
@media (max-width: 768px) {
  .music-player {
    top: 15px;
    right: 15px;
    width: 60px;
    height: 60px;
  }
  
  .music-btn-container {
    width: 60px;
    height: 60px;
  }
  
  .music-btn {
    width: 50px;
    height: 50px;
  }
  
  .progress-ring {
    width: 60px;
    height: 60px;
  }
  
  .progress-ring-circle-bg,
  .progress-ring-circle {
    cx: 30;
    cy: 30;
    r: 25;
  }
  
  .progress-ring-circle {
    stroke-dasharray: 157.08; /* 2 * π * 25 */
    stroke-dashoffset: 157.08;
  }
  
  .music-icon {
    font-size: 1.5em;
  }
}

@media (max-width: 480px) {
  .music-player {
    top: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
  }
  
  .music-btn-container {
    width: 50px;
    height: 50px;
  }
  
  .music-btn {
    width: 42px;
    height: 42px;
  }
  
  .progress-ring {
    width: 50px;
    height: 50px;
  }
  
  .progress-ring-circle-bg,
  .progress-ring-circle {
    cx: 25;
    cy: 25;
    r: 21;
  }
  
  .progress-ring-circle {
    stroke-dasharray: 131.95; /* 2 * π * 21 */
    stroke-dashoffset: 131.95;
  }
  
  .music-icon {
    font-size: 1.3em;
  }
}

@media (max-width: 360px) {
  .music-player {
    top: 8px;
    right: 8px;
    width: 45px;
    height: 45px;
  }
  
  .music-btn-container {
    width: 45px;
    height: 45px;
  }
  
  .music-btn {
    width: 38px;
    height: 38px;
  }
  
  .progress-ring {
    width: 45px;
    height: 45px;
  }
  
  .progress-ring-circle-bg,
  .progress-ring-circle {
    cx: 22.5;
    cy: 22.5;
    r: 19;
  }
  
  .progress-ring-circle {
    stroke-dasharray: 119.38; /* 2 * π * 19 */
    stroke-dashoffset: 119.38;
  }
  
  .music-icon {
    font-size: 1.2em;
  }
}

/* 响应式设计 - 移动端优先 */
@media (max-width: 1600px) {}

@media (max-width: 1366px) {}

@media (max-width:992px) {
  .main-title {
    font-size: 2.5em;
  }
  
  .years-number {
    font-size: 2.8em;
  }
  
  .coming-page-info .countdown>div {
    min-width: 90px;
    padding: 1em 0.6em;
  }
  
  .timeline-item {
    flex-direction: column;
    text-align: center;
    margin-bottom: 1.5em;
  }
  
  .timeline-marker {
    margin-right: 0;
    margin-bottom: 1em;
  }
  
  .timeline-connector {
    width: 60px;
    height: 4px;
    margin: 1em auto;
  }
  
  .coming-page-info .coming-block {
    padding: 2.5em 1.5em;
    margin: 0 1em;
  }
}

@media (max-width: 737px) {
  .main-title {
    font-size: 2.2em;
    margin-bottom: 0.3em;
  }
  
  .heart-icon {
    font-size: 1.5em;
  }
  
  .years-number {
    font-size: 2.5em;
  }
  
  .years-text {
    font-size: 1.5em;
  }
  
  .years-display {
    padding: 0.8em 1.5em;
    margin: 1.5em 0;
  }

  .coming-page-info .countdown>div {
    min-width: 75px;
    padding: 0.8em 0.4em;
  }
  
  .coming-page-info .countdown .number {
    font-size: 1.8em;
  }
  
  .coming-page-info .countdown .label {
    font-size: 0.9em;
  }
  
  .timeline-marker {
    width: 65px;
    height: 65px;
  }
  
  .marker-icon {
    font-size: 1.6em;
  }
  
  .timeline-title {
    font-size: 1.6em;
  }
  
  .timeline-date {
    font-size: 1.2em;
  }
  
  .timeline-desc {
    font-size: 1em;
  }
  
  .countdown-title {
    font-size: 1.3em;
    margin-bottom: 1.2em;
  }
  
  .message-text {
    font-size: 1.1em;
  }
  
  .coming-page-info .coming-block {
    padding: 2em 1.2em;
    margin: 0 0.8em;
  }
}

@media (max-width: 600px) {
  .main-title {
    font-size: 1.9em;
  }
  
  .years-number {
    font-size: 2.2em;
  }
  
  .years-text {
    font-size: 1.3em;
  }

  .coming-page-info .countdown>div {
    min-width: 65px;
    padding: 0.7em 0.3em;
  }
  
  .coming-page-info .countdown .number {
    font-size: 1.6em;
  }
  
  .coming-page-info .countdown .label {
    font-size: 0.8em;
  }
  
  .timeline-content {
    padding: 1.2em;
  }
  
  .timeline-marker {
    width: 55px;
    height: 55px;
  }
  
  .marker-icon {
    font-size: 1.4em;
  }
  
  .timeline-title {
    font-size: 1.4em;
  }
  
  .timeline-date {
    font-size: 1.1em;
  }
  
  .timeline-desc {
    font-size: 0.9em;
  }
  
  .countdown-title {
    font-size: 1.2em;
  }
  
  .message-text {
    font-size: 1em;
  }
  
  .love-message {
    padding: 1.2em;
    margin: 1.5em 0;
  }
}

@media (max-width: 480px) {
  .main-title {
    font-size: 1.7em;
  }
  
  .years-number {
    font-size: 2em;
  }
  
  .years-text {
    font-size: 1.2em;
  }

  .coming-page-info .countdown>div {
    min-width: 55px;
    padding: 0.6em 0.2em;
  }
  
  .coming-page-info .countdown .number {
    font-size: 1.4em;
  }
  
  .coming-page-info .countdown .label {
    font-size: 0.7em;
  }

  .coming-page-info .coming-block {
    padding: 1.8em 1em;
    margin: 0 0.5em;
    border-radius: 15px;
  }
  
  .timeline-marker {
    width: 50px;
    height: 50px;
  }
  
  .marker-icon {
    font-size: 1.2em;
  }
  
  .timeline-title {
    font-size: 1.3em;
  }
  
  .timeline-date {
    font-size: 1em;
  }
  
  .timeline-desc {
    font-size: 0.85em;
  }
  
  .countdown-title {
    font-size: 1.1em;
    margin-bottom: 1em;
  }
  
  .message-text {
    font-size: 0.95em;
  }
  
  .love-message {
    padding: 1em;
  }
  
  .timeline-container {
    margin: 1.5em 0;
    padding: 0 0.5em;
  }
  
  .timeline-item {
    margin-bottom: 1.2em;
  }
  
  .timeline-connector {
    width: 50px;
    height: 3px;
    margin: 0.8em auto;
  }
  
  .floating-hearts .heart {
    font-size: 1.2em;
  }
}

@media (max-width: 415px) {
  .main-title {
    font-size: 1.5em;
  }
  
  .years-number {
    font-size: 1.8em;
  }
  
  .years-text {
    font-size: 1.1em;
  }
  
  .years-display {
    padding: 0.7em 1.2em;
  }

  .coming-page-info .countdown>div {
    min-width: 50px;
    padding: 0.5em 0.15em;
  }
  
  .coming-page-info .countdown .number {
    font-size: 1.3em;
  }
  
  .coming-page-info .countdown .label {
    font-size: 0.65em;
  }
  
  .timeline-marker {
    width: 45px;
    height: 45px;
  }
  
  .marker-icon {
    font-size: 1.1em;
  }
  
  .timeline-title {
    font-size: 1.2em;
  }
  
  .timeline-date {
    font-size: 0.95em;
  }
  
  .timeline-desc {
    font-size: 0.8em;
  }
  
  .countdown-title {
    font-size: 1em;
  }
  
  .message-text {
    font-size: 0.9em;
  }
  
  .coming-page-info .coming-block {
    padding: 1.5em 0.8em;
  }
  
  .timeline-content {
    padding: 1em;
  }
  
  .love-message {
    padding: 0.8em;
  }
}

@media (max-width: 384px) {
  .main-title {
    font-size: 1.4em;
  }
  
  .years-number {
    font-size: 1.7em;
  }
  
  .years-text {
    font-size: 1em;
  }

  .coming-page-info .countdown>div {
    min-width: 45px;
    padding: 0.4em 0.1em;
  }
  
  .coming-page-info .countdown .number {
    font-size: 1.2em;
  }
  
  .coming-page-info .countdown .label {
    font-size: 0.6em;
  }

  .w3l-copy-right p {
    font-size: 0.85em;
  }
  
  .timeline-marker {
    width: 40px;
    height: 40px;
  }
  
  .marker-icon {
    font-size: 1em;
  }
  
  .timeline-title {
    font-size: 1.1em;
  }
  
  .timeline-date {
    font-size: 0.9em;
  }
  
  .timeline-desc {
    font-size: 0.75em;
  }
  
  .countdown-title {
    font-size: 0.95em;
  }
  
  .message-text {
    font-size: 0.85em;
  }
  
  .coming-page-info .coming-block {
    padding: 1.3em 0.6em;
  }
  
  .timeline-content {
    padding: 0.8em;
  }
  
  .love-message {
    padding: 0.7em;
  }
  
  .floating-hearts .heart {
    font-size: 1em;
  }
}

@media (max-width: 370px) {
  .main-title {
    font-size: 1.3em;
  }
  
  .years-number {
    font-size: 1.6em;
  }
  
  .years-text {
    font-size: 0.95em;
  }
  
  .years-display {
    padding: 0.6em 1em;
  }
  
  .coming-page-info .countdown>div {
    min-width: 40px;
    padding: 0.35em 0.08em;
  }
  
  .coming-page-info .countdown .number {
    font-size: 1.1em;
  }
  
  .coming-page-info .countdown .label {
    font-size: 0.55em;
  }
  
  .timeline-marker {
    width: 35px;
    height: 35px;
  }
  
  .marker-icon {
    font-size: 0.9em;
  }
  
  .timeline-title {
    font-size: 1em;
  }
  
  .timeline-date {
    font-size: 0.85em;
  }
  
  .timeline-desc {
    font-size: 0.7em;
  }
  
  .countdown-title {
    font-size: 0.9em;
  }
  
  .message-text {
    font-size: 0.8em;
  }
  
  .coming-page-info .coming-block {
    padding: 1.2em 0.5em;
  }
  
  .timeline-content {
    padding: 0.7em;
  }
  
  .love-message {
    padding: 0.6em;
  }
  
  .w3l-copy-right p {
    font-size: 0.8em;
  }
}

/* 移动端特殊优化 */
@media (max-width: 480px) {
  .w3l-coming-soon-page {
    padding: 2em 0 1em;
  }
  
  .coming-page-info .countdown {
    gap: 0.8em;
  }
  
  .timeline-container {
    margin: 1.2em 0;
  }
  
  .love-header {
    margin-bottom: 1.5em;
  }
  
  .countdown-container {
    margin: 1.5em 0;
  }
  
  .copyright-footer {
    margin-top: 1.5em;
  }
}

/* 超小屏幕优化 */
@media (max-width: 320px) {
  .main-title {
    font-size: 1.2em;
  }
  
  .years-number {
    font-size: 1.5em;
  }
  
  .years-text {
    font-size: 0.9em;
  }
  
  .coming-page-info .countdown>div {
    min-width: 35px;
    padding: 0.3em 0.05em;
  }
  
  .coming-page-info .countdown .number {
    font-size: 1em;
  }
  
  .coming-page-info .countdown .label {
    font-size: 0.5em;
  }
  
  .timeline-marker {
    width: 30px;
    height: 30px;
  }
  
  .marker-icon {
    font-size: 0.8em;
  }
  
  .timeline-title {
    font-size: 0.95em;
  }
  
  .timeline-date {
    font-size: 0.8em;
  }
  
  .timeline-desc {
    font-size: 0.65em;
  }
  
  .countdown-title {
    font-size: 0.85em;
  }
  
  .message-text {
    font-size: 0.75em;
  }
  
  .coming-page-info .coming-block {
    padding: 1em 0.4em;
  }
  
  .timeline-content {
    padding: 0.6em;
  }
  
  .love-message {
    padding: 0.5em;
  }
  
  .w3l-copy-right p {
    font-size: 0.75em;
  }
}