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

:root {
  --primary: #FF6B35;
  --primary-dark: #E55A2B;
  --secondary: #FFB800;
  --bg-light: #FFF9F5;
  --bg-white: #FFFFFF;
  --text-dark: #2D2D2D;
  --text-light: #666666;
  --white: #FFFFFF;
  --gray-light: #F7F7F7;
  --border: #F2F2F3;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-width: 375px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

#app {
  overflow-x: hidden;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #FFE5D9 0%, #FFF0E6 50%, #FFFAF5 100%);
  z-index: 0;
}

.cloud {
  position: absolute;
  background: rgba(255,255,255,0.6);
  border-radius: 50px;
}

.cloud-1 {
  width: 120px;
  height: 40px;
  top: 15%;
  left: 10%;
  animation: float 8s ease-in-out infinite;
}

.cloud-2 {
  width: 80px;
  height: 30px;
  top: 25%;
  right: 15%;
  animation: float 10s ease-in-out infinite 1s;
}

.cloud-3 {
  width: 100px;
  height: 35px;
  bottom: 20%;
  left: 20%;
  animation: float 9s ease-in-out infinite 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-20px) translateX(10px); }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  padding: 2rem;
}

.chicken-mascot {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  position: relative;
  animation: bounce 2s ease-in-out infinite;
}

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

.chicken-body {
  width: 100px;
  height: 90px;
  background: var(--secondary);
  border-radius: 50px 50px 45px 45px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.chicken-eye {
  width: 20px;
  height: 20px;
  background: var(--text-dark);
  border-radius: 50%;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.chicken-eye::after {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--white);
  border-radius: 50%;
  position: absolute;
  top: 3px;
  right: 3px;
}

.chicken-beak {
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 18px solid #FF8C42;
  position: absolute;
  top: 45px;
  left: 50%;
  transform: translateX(-50%);
}

.chicken-comb {
  width: 35px;
  height: 30px;
  background: #FF4444;
  border-radius: 10px 10px 5px 5px;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
}

.chicken-comb::before,
.chicken-comb::after {
  content: '';
  width: 10px;
  height: 20px;
  background: #FF4444;
  border-radius: 5px 5px 3px 3px;
  position: absolute;
  bottom: 5px;
}

.chicken-comb::before {
  left: 2px;
}

.chicken-comb::after {
  right: 2px;
}

.chicken-wattle {
  width: 15px;
  height: 20px;
  background: #FF4444;
  border-radius: 0 0 10px 10px;
  position: absolute;
  top: 55px;
  left: 50%;
  transform: translateX(-50%);
}

.title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.tagline {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.download-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  animation: fadeInUp 1s ease-in-out infinite alternate;
}

.scroll-hint span {
  font-size: 0.85rem;
  color: var(--text-light);
}

.scroll-arrow {
  margin-top: 0.5rem;
}

.arrow {
  width: 24px;
  height: 24px;
  border-right: 3px solid var(--primary);
  border-bottom: 3px solid var(--primary);
  transform: rotate(45deg);
  margin: 0 auto;
  animation: scrollDown 1.5s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { opacity: 0; transform: rotate(45deg) translateY(-10px); }
  50% { opacity: 1; }
  100% { opacity: 0; transform: rotate(45deg) translateY(10px); }
}

@keyframes fadeInUp {
  0% { opacity: 0.5; transform: translateX(-50%) translateY(10px); }
  100% { opacity: 1; transform: translateX(-50%) translateY(-5px); }
}

.section-title {
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.section-desc {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
}

.features {
  padding: 4rem 0;
  background: var(--bg-white);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.feature-card {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: 16px;
  text-align: center;
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text-dark);
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--text-light);
}

.showcase {
  padding: 4rem 0;
  background: var(--bg-light);
}

.phone-showcase {
  display: flex;
  justify-content: center;
}

.phone-frame {
  width: 260px;
  height: 480px;
  background: #1a1a1a;
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--white);
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.mockup-header {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  padding: 1rem 1rem 0.5rem;
}

.mockup-date {
  font-size: 0.75rem;
  color: #999;
  padding: 0 1rem 1rem;
  border-bottom: 1px solid var(--border);
}

.mockup-tasks {
  flex: 1;
  padding: 0.5rem 1rem;
  overflow-y: auto;
}

.mockup-task {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0;
  font-size: 0.8rem;
  color: var(--text-dark);
}

.mockup-task .check {
  width: 18px;
  height: 18px;
  border: 2px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--white);
  flex-shrink: 0;
}

.mockup-task .task-text {
  flex: 1;
}

.mockup-task .tag {
  font-size: 0.6rem;
  padding: 2px 6px;
  border-radius: 4px;
  background: #FFE5D9;
  color: var(--primary);
  flex-shrink: 0;
}

.mockup-task.important.urgent .tag {
  background: #FF4444;
  color: white;
}

.mockup-task.important .tag {
  background: var(--secondary);
  color: var(--text-dark);
}

.mockup-task.completed .check {
  background: var(--primary);
  border-color: var(--primary);
}

.mockup-task.completed .task-text {
  color: var(--text-light);
  text-decoration: line-through;
}

.mockup-footer {
  padding: 0.8rem 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mockup-footer span {
  font-size: 0.75rem;
  color: var(--text-light);
  flex-shrink: 0;
}

.progress-bar {
  flex: 1;
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}

.progress {
  height: 100%;
  background: var(--primary);
  border-radius: 3px;
  transition: width 0.3s ease;
}

.workflow {
  padding: 4rem 0;
  background: var(--bg-white);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 280px;
}

.step-num {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.step-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text-dark);
}

.step-content p {
  font-size: 0.85rem;
  color: var(--text-light);
}

.step-arrow {
  font-size: 1.5rem;
  color: var(--primary);
  transform: rotate(90deg);
}

.highlights {
  padding: 4rem 0;
  background: var(--bg-light);
}

.highlight-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem;
  background: var(--bg-white);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.highlight-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.highlight-info h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  color: var(--text-dark);
}

.highlight-info p {
  font-size: 0.85rem;
  color: var(--text-light);
}

.testimonials {
  padding: 4rem 0;
  background: var(--bg-white);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: 16px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.testimonial-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0.8rem;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  font-style: italic;
}

.stats {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}

.stat-item {
  color: white;
}

.stat-num {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

.cta {
  position: relative;
  padding: 4rem 0;
  background: var(--bg-light);
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(255,107,53,0.05) 100%);
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.cta-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.btn-large {
  padding: 1.1rem 2.5rem;
  font-size: 1.1rem;
  background: var(--primary);
  color: white;
}

.btn-large:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.cta-qr {
  margin-top: 2rem;
}

.qr-placeholder {
  width: 120px;
  height: 120px;
  background: var(--border);
  margin: 0 auto 0.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--text-light);
}

.cta-qr p {
  font-size: 0.8rem;
  margin-bottom: 0;
}

.footer {
  padding: 3rem 0 1.5rem;
  background: var(--text-dark);
  color: rgba(255,255,255,0.6);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  font-size: 0.85rem;
}

.footer-links h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.8rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.4rem;
  font-size: 0.85rem;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
}

@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .highlight-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .steps {
    flex-direction: row;
    justify-content: center;
  }
  
  .step-arrow {
    transform: rotate(0);
  }
}

@media (min-width: 768px) {
  .title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .feature-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .stats-grid {
    flex-direction: row;
    justify-content: space-around;
  }
  
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .title {
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .container {
    padding: 0 3rem;
  }
}

.quadrant-section {
  padding: 4rem 0;
  background: var(--bg-white);
}

.quadrant-comic {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.quadrant-hand {
  display: none;
}

@media (min-width: 768px) {
  .quadrant-hand {
    display: block;
  }
  
  .quadrant-hand.left-hand {
    order: 1;
  }
  
  .quadrant-hand.right-hand {
    order: 3;
  }
}

.hand-arm {
  width: 60px;
  height: 120px;
  background: #FFE0C0;
  border-radius: 30px 30px 0 0;
  margin: 0 auto;
}

.hand-palm {
  width: 80px;
  height: 100px;
  background: #FFDAB0;
  border-radius: 10px 10px 40px 40px;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 10px;
  gap: 4px;
}

.finger {
  width: 14px;
  height: 45px;
  background: #FFDAB0;
  border-radius: 7px 7px 5px 5px;
}

.thumb {
  width: 18px;
  height: 35px;
  background: #FFDAB0;
  border-radius: 9px;
  position: absolute;
  left: -15px;
  top: 20px;
  transform: rotate(-20deg);
}

.quadrant-hand.right-hand .hand-palm .thumb {
  left: auto;
  right: -15px;
  transform: rotate(20deg);
}

.quadrant-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  width: 280px;
}

.quadrant-item {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 12px;
  min-height: 120px;
}

.quadrant-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  text-align: center;
}

.quadrant-tasks {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.task-card {
  background: white;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.7rem;
  color: var(--text-light);
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.q2-urgent-important {
  background: #FFE5E5;
  border: 2px solid #FF6B6B;
}

.q2-urgent-important .task-card {
  background: #FFF0F0;
}

.q1-important {
  background: #E8F5E9;
  border: 2px solid #4CAF50;
}

.q1-important .task-card {
  background: #F1F8E9;
}

.q3-urgent {
  background: #FFF8E1;
  border: 2px solid #FFC107;
}

.q3-urgent .task-card {
  background: #FFFDE7;
}

.q4-none {
  background: #F5F5F5;
  border: 2px solid #E0E0E0;
}

.route-section {
  padding: 4rem 0;
  background: var(--bg-light);
}

.route-comic {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.route-top {
  width: 100px;
  height: 20px;
  background: linear-gradient(90deg, #8B4513 0%, #A0522D 50%, #8B4513 100%);
  border-radius: 10px 10px 0 0;
}

.route-path {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.route-go {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.chicken-runner {
  position: relative;
  width: 60px;
  height: 50px;
}

.runner-body {
  width: 50px;
  height: 40px;
  background: var(--secondary);
  border-radius: 25px 25px 20px 20px;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.runner-eye {
  width: 8px;
  height: 8px;
  background: var(--text-dark);
  border-radius: 50%;
  position: absolute;
  top: 5px;
  left: 55%;
}

.runner-beak {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 10px solid #FF8C42;
  position: absolute;
  top: 12px;
  left: 60%;
}

.runner-leg {
  width: 6px;
  height: 15px;
  background: #FF8C42;
  position: absolute;
  bottom: 0;
  border-radius: 3px;
}

.leg1 {
  left: 35%;
  animation: run 0.3s ease-in-out infinite;
}

.leg2 {
  right: 35%;
  animation: run 0.3s ease-in-out infinite 0.15s;
}

@keyframes run {
  0%, 100% { transform: rotate(-20deg); }
  50% { transform: rotate(20deg); }
}

.route-nodes {
  display: flex;
  justify-content: space-around;
  width: 100%;
  padding: 20px 0;
  position: relative;
  z-index: 5;
}

.route-node {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.node-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--border);
  border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  margin-bottom: 8px;
}

.node-circle.active {
  background: var(--primary);
}

.node-label {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
}

.route-path-line {
  position: absolute;
  top: 32px;
  left: 15%;
  right: 15%;
  height: 4px;
  background: var(--border);
  z-index: 1;
}

.route-bottom {
  width: 200px;
  height: 80px;
  background: linear-gradient(180deg, #8B4513 0%, #A0522D 100%);
  border-radius: 0 0 100px 100px;
}

.route-end-scene {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.finish-flag {
  width: 40px;
  height: 30px;
  background: repeating-linear-gradient(
    0deg,
    #FF4444 0px,
    #FF4444 10px,
    white 10px,
    white 20px
  );
  position: absolute;
  top: -30px;
  left: 5px;
  animation: wave 1s ease-in-out infinite;
}

@keyframes wave {
  0%, 100% { transform: skewY(0deg); }
  50% { transform: skewY(-5deg); }
}

.finish-pole {
  width: 4px;
  height: 50px;
  background: #8B4513;
  margin-left: 24px;
}

.finish-base {
  width: 30px;
  height: 8px;
  background: #666;
  margin-left: 11px;
  border-radius: 2px;
}

.habit-section {
  padding: 4rem 0;
  background: var(--bg-white);
}

.habit-comic {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  position: relative;
}

.calendar-book {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  width: 280px;
}

.calendar-header {
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 0.5rem;
}

.calendar-weekdays span {
  text-align: center;
  font-size: 0.7rem;
  color: var(--text-light);
  font-weight: 500;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.day {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--text-dark);
  border-radius: 50%;
}

.day.empty {
  background: transparent;
}

.day.checked {
  background: #E8F5E9;
  color: #4CAF50;
  font-weight: 600;
}

.day.today {
  background: var(--primary);
  color: white;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(255,107,53,0.4);
}

.streak-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.badge-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(255,107,53,0.3);
}

.badge-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
}

.badge-num {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.badge-label {
  font-size: 0.8rem;
  opacity: 0.9;
}

.badge-text {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

.habit-sticker {
  position: absolute;
  font-size: 2rem;
  animation: float-sticker 3s ease-in-out infinite;
}

.sticker-1 {
  top: 10px;
  right: 20px;
}

.sticker-2 {
  bottom: 30px;
  left: 10px;
  animation-delay: 1s;
}

.sticker-3 {
  top: 50%;
  right: 10px;
  animation-delay: 2s;
}

@keyframes float-sticker {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
}

.countdown-section {
  padding: 4rem 0;
  background: var(--bg-light);
}

.countdown-comic {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.countdown-calendar {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.cal-icon {
  font-size: 2.5rem;
}

.cal-text {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.4;
}

.cal-text strong {
  font-size: 1rem;
  color: var(--text-dark);
  display: block;
  margin-top: 0.25rem;
}

.countdown-display {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 1.5rem 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(255,107,53,0.3);
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.count-num {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.count-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.8);
}

.countdown-sep {
  font-size: 1.5rem;
  color: rgba(255,255,255,0.6);
  font-weight: 700;
  padding-bottom: 1rem;
}

.countdown-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  max-width: 500px;
}

.count-card {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: white;
  padding: 1rem 1.2rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  flex: 1;
  min-width: 140px;
}

.count-icon {
  font-size: 1.8rem;
}

.count-info {
  display: flex;
  flex-direction: column;
}

.count-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

.count-time {
  font-size: 0.75rem;
  color: var(--text-light);
}
