/* ============================================
   {SITE_TITLE} - 全站样式表
   手办模型原型师作品展与潮玩盲盒发售
   ============================================ */

/* CSS Variables */
:root {
  --primary: #FF2D78;
  --primary-glow: rgba(255, 45, 120, 0.4);
  --secondary: #39FF14;
  --secondary-glow: rgba(57, 255, 20, 0.4);
  --bg-dark: #0a0a0f;
  --bg-section: #12121a;
  --bg-card: rgba(255, 255, 255, 0.03);
  --card-border: rgba(255, 255, 255, 0.08);
  --card-glass: rgba(18, 18, 26, 0.85);
  --text-primary: #f0f0f5;
  --text-secondary: #a0a0b0;
  --text-muted: #6a6a7a;
  --gradient-pink: linear-gradient(135deg, #FF2D78, #FF6B9D);
  --gradient-green: linear-gradient(135deg, #39FF14, #7FFF00);
  --gradient-dark: linear-gradient(180deg, #0a0a0f 0%, #1a1a2e 100%);
  --shadow-pink: 0 0 30px rgba(255, 45, 120, 0.3);
  --shadow-green: 0 0 30px rgba(57, 255, 20, 0.3);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'PingFang SC', 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.8;
  overflow-x: hidden;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--secondary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Loading Animation */
.c758858f4 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.c758858f4.loaded {
  opacity: 0;
  visibility: hidden;
}

.cd2525609 {
  width: 80px;
  height: 80px;
  animation: pulse-glow 1.5s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 10px var(--primary)); }
  50% { transform: scale(1.1); filter: drop-shadow(0 0 30px var(--primary)); }
}

/* Container */
.ce9d108d1 {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.c3c0a26b0 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  transition: var(--transition);
  backdrop-filter: blur(0px);
}

.c3c0a26b0.c745da1b8 {
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--card-border);
  padding: 10px 0;
}

.c28c584d7 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.c7f265787 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
}

.c7f265787 img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.c07274362 {
  display: flex;
  list-style: none;
  gap: 35px;
}

.c07274362 a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

.c07274362 a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-pink);
  transition: width 0.3s ease;
}

.c07274362 a:hover::after,
.c07274362 a.cae28f8ee::after {
  width: 100%;
}

.c07274362 a:hover,
.c07274362 a.cae28f8ee {
  color: var(--text-primary);
}

.c0c21fa5d {
  background: var(--gradient-pink);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-pink);
}

.c0c21fa5d:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 40px rgba(255, 45, 120, 0.5);
}

.c73a59f78 {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.c73a59f78 span {
  width: 25px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
}

/* Hero Section */
.ca76bf807 {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.c30d8bdaf {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transform: scale(1.05);
  animation: hero-zoom 20s ease-in-out infinite alternate;
}

@keyframes hero-zoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.15); }
}

.c349d6722 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10,10,15,0.3) 0%, rgba(10,10,15,0.7) 60%, rgba(10,10,15,1) 100%);
}

.c7928f174 {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.c9b77ce44 {
  display: inline-block;
  background: rgba(255, 45, 120, 0.15);
  border: 1px solid rgba(255, 45, 120, 0.3);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.c3396d836 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.c3396d836 .cbfe303d5 {
  background: var(--gradient-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.c4c11b9df {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 35px;
  max-width: 600px;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.cf8baa8c8 {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.8s both;
}

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

/* Buttons */
.ca22fc5ed {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.c3cbac64f {
  background: var(--gradient-pink);
  color: #fff;
  box-shadow: var(--shadow-pink);
}

.c3cbac64f:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(255, 45, 120, 0.5);
  color: #fff;
}

.c7bc151f1 {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--card-border);
  backdrop-filter: blur(10px);
}

.c7bc151f1:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
}

.c216ff075 {
  background: var(--gradient-green);
  color: #0a0a0f;
  box-shadow: var(--shadow-green);
}

.c216ff075:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(57, 255, 20, 0.5);
  color: #0a0a0f;
}

/* Section Styles */
.cae267492 {
  padding: 100px 0;
  position: relative;
}

.c92ccaae1 {
  background: var(--bg-section);
}

.c2dbd9cd6 {
  text-align: center;
  margin-bottom: 60px;
}

.c5ad5e17d {
  display: inline-block;
  color: var(--secondary);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.c26b4b02d {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.3;
}

.cafce509c {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto;
}

/* Trust Section */
.c27147dfa {
  padding: 60px 0;
  border-bottom: 1px solid var(--card-border);
}

.c7532de0b {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.c7532de0b:hover {
  opacity: 1;
}

.c97702abd img {
  height: 40px;
  filter: grayscale(1) brightness(2);
  transition: var(--transition);
}

.c97702abd img:hover {
  filter: grayscale(0);
}

/* Service Cards */
.c5f012a8a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.c2ffc1bf5 {
  background: var(--card-glass);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.c2ffc1bf5::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-pink);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.c2ffc1bf5:hover::before {
  transform: scaleX(1);
}

.c2ffc1bf5:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 45, 120, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.c85a30c7d {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(255, 45, 120, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.c2ffc1bf5:nth-child(even) .c85a30c7d {
  background: rgba(57, 255, 20, 0.1);
}

.c2ffc1bf5 h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.c2ffc1bf5 p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Gallery / Works */
.c7e150c17 {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.c76642032 {
  padding: 8px 22px;
  border-radius: 30px;
  border: 1px solid var(--card-border);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 0.9rem;
  transition: var(--transition);
}

.c76642032.cae28f8ee,
.c76642032:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.c7e16550c {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.c752ab5a7 {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  group: true;
}

.c752ab5a7 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.c752ab5a7:hover img {
  transform: scale(1.1);
}

.cbbb728cc {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 20px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.c752ab5a7:hover .cbbb728cc {
  transform: translateY(0);
}

.cbbb728cc h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.cbbb728cc span {
  color: var(--secondary);
  font-size: 0.85rem;
}

/* Pain Points Section */
.c1e37b7a6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.ccc4bc610 {
  background: var(--card-glass);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 35px;
  display: flex;
  gap: 20px;
}

.cf2d75430 {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.cf2d75430.c7c12e0a7 {
  background: rgba(255, 60, 60, 0.1);
  color: #ff3c3c;
}

.cf2d75430.ce0ffc807 {
  background: rgba(57, 255, 20, 0.1);
  color: var(--secondary);
}

.cf04f77a7 h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.cf04f77a7 p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Stats Counter */
.c778cc77c {
  padding: 80px 0;
  background: var(--bg-section);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

.cb737004d {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.c8813c663 .c68aa6991 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 5px;
}

.c8813c663 .c5eee204d {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Carousel / Slider */
.c59c3f818 {
  position: relative;
  overflow: hidden;
}

.c2db88d4b {
  display: flex;
  gap: 24px;
  animation: scroll-left 30s linear infinite;
  width: max-content;
}

.c2db88d4b:hover {
  animation-play-state: paused;
}

@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.c64aa4b65 {
  flex-shrink: 0;
  width: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--card-border);
  transition: var(--transition);
}

.c64aa4b65:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}

.c64aa4b65 img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.c0ecd1aa4 {
  padding: 16px;
  background: var(--card-glass);
}

.c0ecd1aa4 h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.c0ecd1aa4 span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Process / Flow */
.ce382e215 {
  position: relative;
}

.c8a6360f7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  position: relative;
}

.cc7851928 {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}

.c6ae60080 {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-pink);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-pink);
}

.cc7851928 h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.cc7851928 p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* CTA Section */
.cfbc56eda {
  padding: 100px 0;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, rgba(255, 45, 120, 0.05), rgba(57, 255, 20, 0.05));
  border-top: 1px solid var(--card-border);
}

.cfbc56eda h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.cfbc56eda p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 35px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Contact Form */
.c62722456 {
  max-width: 600px;
  margin: 0 auto;
}

.cbae6ea2d {
  margin-bottom: 20px;
}

.cbae6ea2d label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.cbae6ea2d input,
.cbae6ea2d textarea,
.cbae6ea2d select {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  background: var(--card-glass);
  color: var(--text-primary);
  font-size: 1rem;
  transition: var(--transition);
  outline: none;
}

.cbae6ea2d input:focus,
.cbae6ea2d textarea:focus,
.cbae6ea2d select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 45, 120, 0.1);
}

.cbae6ea2d textarea {
  min-height: 120px;
  resize: vertical;
}

/* Quote Calculator */
.c01c8456d {
  background: var(--card-glass);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 700px;
  margin: 0 auto;
}

.cc9b99cc2 {
  text-align: center;
  padding: 25px;
  background: rgba(255, 45, 120, 0.05);
  border-radius: var(--radius);
  margin-top: 25px;
  border: 1px solid rgba(255, 45, 120, 0.2);
}

.cc9b99cc2 .c24b7cc7d {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
}

/* Footer */
.cf1521168 {
  background: var(--bg-section);
  border-top: 1px solid var(--card-border);
  padding: 80px 0 30px;
}

.c4c631acc {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.c2c467c7f p {
  color: var(--text-secondary);
  margin-top: 15px;
  font-size: 0.9rem;
  line-height: 1.8;
}

.c3ce771f2 h4 {
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.c3ce771f2 ul {
  list-style: none;
}

.c3ce771f2 li {
  margin-bottom: 10px;
}

.c3ce771f2 a {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.c3ce771f2 a:hover {
  color: var(--primary);
}

.ceb12fa40 {
  border-top: 1px solid var(--card-border);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.ceb12fa40 p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Scroll Animations */
.cca15b22b {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.cca15b22b.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Parallax */
.cfefdc549 {
  will-change: transform;
}

/* Page Header (for inner pages) */
.ccadf3436 {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  background: var(--gradient-dark);
}

.ccadf3436::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.ccadf3436 h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 12px;
}

.c934242b0 {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.c934242b0 a {
  color: var(--text-secondary);
}

/* News Cards */
.c6028c204 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
}

.cb2ed5311 {
  background: var(--card-glass);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.cb2ed5311:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 45, 120, 0.3);
}

.cb2ed5311 img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.c539c8f4c {
  padding: 24px;
}

.c539c8f4c .ca5146968 {
  color: var(--secondary);
  font-size: 0.8rem;
  margin-bottom: 8px;
}

.c539c8f4c h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  line-height: 1.5;
}

.c539c8f4c p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* Landing Page Styles */
.c236e1167 {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.c4a8f4383 {
  display: flex;
  gap: 15px;
  margin: 30px 0;
}

.c8cb81fcd {
  text-align: center;
  background: var(--card-glass);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 15px 20px;
  min-width: 80px;
}

.c8cb81fcd .c266f5abc {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}

.c8cb81fcd .ca8f8a492 {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Thank You Page */
.ca4614e3b {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.c0575fb35 {
  font-size: 5rem;
  margin-bottom: 20px;
  animation: bounce 1s ease infinite;
}

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

/* Mobile Responsive */
@media (max-width: 1024px) {
  .c4c631acc {
    grid-template-columns: 1fr 1fr;
  }
  
  .cb737004d {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .c07274362 {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--bg-dark);
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 20px;
    transition: right 0.4s ease;
    border-left: 1px solid var(--card-border);
  }

  .c07274362.open {
    right: 0;
  }

  .c73a59f78 {
    display: flex;
  }

  .c3396d836 {
    font-size: 2.2rem;
  }

  .cf8baa8c8 {
    flex-direction: column;
  }

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

  .c7e16550c {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .cb737004d {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .c8813c663 .c68aa6991 {
    font-size: 2rem;
  }

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

  .ceb12fa40 {
    flex-direction: column;
    text-align: center;
  }

  .cae267492 {
    padding: 60px 0;
  }

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

@media (max-width: 480px) {
  .c7e16550c {
    grid-template-columns: 1fr;
  }

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

  .c4a8f4383 {
    gap: 8px;
  }

  .c8cb81fcd {
    min-width: 60px;
    padding: 10px 12px;
  }
}

/* Utility Classes */
.c39ef4255 { text-align: center; }
.text-primary { color: var(--primary); }
.text-secondary-color { color: var(--secondary); }
.ce5387f92 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.c24723213 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #ff4d8f;
}
