/* 基础样式重置 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

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

/* 导航栏 */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo h1 {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  background: linear-gradient(45deg, #8b5cf6, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #a855f7;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 3px 0;
  transition: 0.3s;
}

/* 主横幅 */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #1e1b4b 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.stars {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(2px 2px at 20px 30px, #eee, transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.8), transparent),
    radial-gradient(1px 1px at 90px 40px, #fff, transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(2px 2px at 160px 30px, #ddd, transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: twinkle 4s ease-in-out infinite;
}

@keyframes twinkle {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 1;
  }
}

.mystical-rings {
  position: absolute;
  width: 100%;
  height: 100%;
}

.mystical-rings::before,
.mystical-rings::after {
  content: '';
  position: absolute;
  border: 2px solid rgba(139, 92, 246, 0.3);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

.mystical-rings::before {
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.mystical-rings::after {
  width: 500px;
  height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-duration: 30s;
  animation-direction: reverse;
}

@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.title-word {
  display: block;
  animation: color-animation 4s linear infinite;
}

.word-1 {
  --color-1: #a855f7;
  --color-2: #8b5cf6;
  --color-3: #7c3aed;
}

.word-2 {
  --color-1: #8b5cf6;
  --color-2: #7c3aed;
  --color-3: #a855f7;
}

@keyframes color-animation {
  0% {
    color: var(--color-1)
  }

  32% {
    color: var(--color-1)
  }

  33% {
    color: var(--color-2)
  }

  65% {
    color: var(--color-2)
  }

  66% {
    color: var(--color-3)
  }

  99% {
    color: var(--color-3)
  }

  100% {
    color: var(--color-1)
  }
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #cbd5e1;
  margin-bottom: 30px;
}

.hero-features {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e2e8f0;
  font-weight: 500;
}

.feature-icon {
  font-size: 1.2rem;
  color: #a855f7;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn-primary,
.btn-secondary {
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(45deg, #8b5cf6, #a855f7);
  color: #fff;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #a855f7;
}

.btn-secondary:hover {
  background: #a855f7;
  transform: translateY(-2px);
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.book-container {
  position: relative;
  width: 400px;
  height: 500px;
}

.book-aura {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
  border-radius: 20px;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

.magic-book {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.magic-book:hover {
  transform: scale(1.05);
}

.magic-sparkles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  animation: sparkle 2s ease-in-out infinite;
}

.sparkle-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.sparkle-2 {
  top: 60%;
  right: 15%;
  animation-delay: 0.5s;
}

.sparkle-3 {
  bottom: 30%;
  left: 20%;
  animation-delay: 1s;
}

@keyframes sparkle {

  0%,
  100% {
    opacity: 0;
    transform: scale(0);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

/* 功能特色 */
.features {
  padding: 100px 0;
  background: #f8fafc;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 60px;
  color: #1e293b;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.feature-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-card .feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #1e293b;
}

.feature-card p {
  color: #64748b;
  margin-bottom: 20px;
  line-height: 1.6;
}

.feature-list {
  list-style: none;
  text-align: left;
}

.feature-list li {
  padding: 8px 0;
  color: #475569;
  position: relative;
  padding-left: 25px;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

/* 使用场景 */
.use-cases {
  padding: 100px 0;
  background: #fff;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.case-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: 15px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  transition: transform 0.3s ease;
}

.case-item:hover {
  transform: translateY(-5px);
}

.case-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
}

.case-item h4 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #1e293b;
}

.case-item p {
  color: #64748b;
  font-size: 0.9rem;
}

/* 技术优势 */
.tech-advantages {
  padding: 100px 0;
  background: #1e293b;
  color: #fff;
}

.tech-advantages .section-title {
  color: #fff;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.advantage-item {
  text-align: center;
  padding: 30px;
}

.advantage-item h4 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #a855f7;
}

.advantage-item p {
  color: #cbd5e1;
  line-height: 1.6;
}

/* 用户评价 */
.testimonials {
  padding: 100px 0;
  background: #f8fafc;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-content {
  margin-bottom: 20px;
}

.testimonial-content p {
  color: #475569;
  font-style: italic;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.author-name {
  font-weight: bold;
  color: #1e293b;
}

.author-title {
  color: #64748b;
  font-size: 0.9rem;
}

/* 下载体验 */
.download {
  padding: 100px 0;
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
  color: #fff;
}

.download .section-title {
  color: #fff;
}

.download-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.download-text h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.download-text p {
  color: #cbd5e1;
  margin-bottom: 30px;
  line-height: 1.6;
}

.download-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.download-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e2e8f0;
}

.feature-check {
  color: #10b981;
  font-weight: bold;
  font-size: 1.2rem;
}

.download-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.qr-container {
  width: 200px;
  height: 200px;
  background: #fff;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.qr-placeholder {
  text-align: center;
  color: #1e293b;
}

.qr-placeholder span {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

.qr-placeholder small {
  color: #64748b;
}

.qr-tip {
  color: #cbd5e1;
  text-align: center;
}

/* 关于我们 */
.about {
  padding: 100px 0;
  background: #fff;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-text p {
  color: #475569;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.about-stats {
  display: flex;
  justify-content: space-around;
  margin-top: 50px;
  gap: 30px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: bold;
  color: #8b5cf6;
  margin-bottom: 10px;
}

.stat-label {
  color: #64748b;
  font-size: 0.9rem;
}

/* 页面标题 */
.page-header {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
  color: #fff;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-header p {
  font-size: 1.2rem;
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
}

/* 功能详情页样式 */
.feature-detail {
  padding: 100px 0;
  background: #fff;
}

.feature-detail.alt {
  background: #f8fafc;
}

.feature-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.feature-content.reverse {
  direction: rtl;
}

.feature-content.reverse>* {
  direction: ltr;
}

.feature-image {
  text-align: center;
}

.feature-image img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-text h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #1e293b;
}

.feature-description {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 30px;
}

.feature-highlights,
.feature-usage {
  margin-bottom: 30px;
}

.feature-highlights h3,
.feature-usage h3 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #1e293b;
}

.feature-highlights ul,
.feature-usage ol {
  color: #475569;
  line-height: 1.8;
}

.feature-highlights ul li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.feature-highlights ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #8b5cf6;
  font-weight: bold;
}

.feature-usage ol li {
  margin-bottom: 10px;
  padding-left: 10px;
}

/* 星座预览样式 */
.zodiac-preview {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.zodiac-circle {
  text-align: center;
  margin-bottom: 30px;
  padding: 30px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 50%;
  width: 150px;
  height: 150px;
  margin: 0 auto 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.zodiac-sign {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.zodiac-name {
  font-weight: bold;
  color: #1e293b;
  margin-bottom: 5px;
}

.zodiac-date {
  font-size: 0.9rem;
  color: #64748b;
}

.fortune-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.fortune-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.fortune-label {
  min-width: 60px;
  font-weight: 500;
  color: #1e293b;
}

.fortune-bar {
  flex: 1;
  height: 8px;
  background: #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
}

.fortune-fill {
  height: 100%;
  background: linear-gradient(90deg, #8b5cf6, #a855f7);
  border-radius: 4px;
  transition: width 1s ease;
}

.fortune-score {
  min-width: 50px;
  font-weight: bold;
  color: #8b5cf6;
}

/* 抽签预览样式 */
.lottery-preview {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.lottery-wheel {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotate 10s linear infinite;
}

.wheel-center {
  font-size: 2rem;
  z-index: 2;
}

.wheel-options {
  position: absolute;
  width: 100%;
  height: 100%;
}

.option {
  position: absolute;
  font-size: 0.9rem;
  font-weight: 500;
  color: #1e293b;
}

.option:nth-child(1) {
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.option:nth-child(2) {
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
}

.option:nth-child(3) {
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.option:nth-child(4) {
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
}

.lottery-result {
  padding: 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 15px;
}

.result-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: #8b5cf6;
  margin-bottom: 10px;
}

.result-desc {
  color: #64748b;
  font-size: 0.9rem;
}

/* 技术架构样式 */
.tech-architecture {
  padding: 100px 0;
  background: #1e293b;
  color: #fff;
}

.tech-architecture h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 60px;
  color: #fff;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.tech-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-item h3 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #a855f7;
}

.tech-item ul {
  list-style: none;
}

.tech-item ul li {
  padding: 8px 0;
  color: #cbd5e1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-item ul li:last-child {
  border-bottom: none;
}

/* 使用场景样式 */
.use-scenarios {
  padding: 100px 0;
  background: #f8fafc;
}

.use-scenarios h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 60px;
  color: #1e293b;
}

.scenarios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.scenario-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.scenario-card:hover {
  transform: translateY(-5px);
}

.scenario-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
}

.scenario-card h3 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #1e293b;
}

.scenario-card p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
}

.scenario-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.example {
  background: #f1f5f9;
  color: #475569;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* 页脚 */
.footer {
  background: #1e293b;
  color: #fff;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #a855f7;
}

.footer-section p {
  color: #cbd5e1;
  margin-bottom: 10px;
}

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

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #a855f7;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #334155;
  color: #94a3b8;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.9);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 20px 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-features {
    justify-content: center;
    flex-wrap: wrap;
  }

  .book-container {
    width: 300px;
    height: 375px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .download-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .download-features {
    grid-template-columns: 1fr;
  }

  .about-stats {
    flex-direction: column;
    gap: 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* 功能详情页响应式 */
  .page-header {
    padding: 100px 0 60px;
  }

  .page-header h1 {
    font-size: 2.5rem;
  }

  .feature-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-content.reverse {
    direction: ltr;
  }

  .feature-text h2 {
    font-size: 2.2rem;
  }

  .zodiac-preview,
  .lottery-preview {
    padding: 30px 20px;
  }

  .zodiac-circle {
    width: 130px;
    height: 130px;
    padding: 25px;
  }

  .lottery-wheel {
    width: 180px;
    height: 180px;
  }

  .tech-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .scenarios-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 250px;
    text-align: center;
  }

  .section-title {
    font-size: 2rem;
  }

  .feature-card {
    padding: 30px 20px;
  }

  .book-container {
    width: 250px;
    height: 312px;
  }

  /* 功能详情页响应式 */
  .page-header h1 {
    font-size: 2rem;
  }

  .page-header p {
    font-size: 1rem;
  }

  .feature-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-text h2 {
    font-size: 2rem;
  }

  .zodiac-circle {
    width: 120px;
    height: 120px;
    padding: 20px;
  }

  .zodiac-sign {
    font-size: 2rem;
  }

  .lottery-wheel {
    width: 150px;
    height: 150px;
  }

  .tech-grid {
    grid-template-columns: 1fr;
  }

  .scenarios-grid {
    grid-template-columns: 1fr;
  }
}