/* ============================================
   {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 */
.c43b2ecab {
  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;
}

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

.c6941c96c {
  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 */
.c9dc3e748 {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

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

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

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

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

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

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

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

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

.cf29f427c a:hover::after,
.cf29f427c a.c4c572179::after {
  width: 100%;
}

.cf29f427c a:hover,
.cf29f427c a.c4c572179 {
  color: var(--text-primary);
}

.cf5a80d8e {
  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);
}

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

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

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

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

.cfbb05a5b {
  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); }
}

.c58d87928 {
  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%);
}

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

.ce6bef4c9 {
  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;
}

.c99aff234 {
  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;
}

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

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

.c0c068220 {
  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 */
.c70f8ad6c {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c44c8e196:hover {
  opacity: 1;
}

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

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

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

.c7226524f {
  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;
}

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

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

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

.c0289d6a9 {
  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;
}

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

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

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

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

.cc2aa565d {
  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);
}

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

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

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

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

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

.cb3605de2 {
  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;
}

.cba044a0f:hover .cb3605de2 {
  transform: translateY(0);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c617dc3dd {
  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);
}

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

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

/* CTA Section */
.c50ce0d23 {
  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);
}

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

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

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

.cedbc4e66 {
  margin-bottom: 20px;
}

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

.cedbc4e66 input,
.cedbc4e66 textarea,
.cedbc4e66 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;
}

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

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

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

.c8fc0d7c6 {
  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);
}

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

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

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

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

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

.cc7c6584a ul {
  list-style: none;
}

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

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

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

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

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

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

.c8107637c.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 */
.c05f54fc9 {
  will-change: transform;
}

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

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

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

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

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

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

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

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

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

.c73b6aba5 {
  padding: 24px;
}

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

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

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

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

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

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

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

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

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

.cd4f9d8c2 {
  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) {
  .c9b7e2794 {
    grid-template-columns: 1fr 1fr;
  }
  
  .cfc6cdd42 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .cf29f427c {
    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);
  }

  .cf29f427c.open {
    right: 0;
  }

  .c1a23f0ec {
    display: flex;
  }

  .c99aff234 {
    font-size: 2.2rem;
  }

  .c0c068220 {
    flex-direction: column;
  }

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

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

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

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

  .c3a5d25e7 .c5f01f3ab {
    font-size: 2rem;
  }

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

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

  .c9d7ac14a {
    padding: 60px 0;
  }

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

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

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

  .c710bacf8 {
    gap: 8px;
  }

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

/* Utility Classes */
.ce112d20d { text-align: center; }
.text-primary { color: var(--primary); }
.text-secondary-color { color: var(--secondary); }
.cbb959fa3 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.c25788bae { 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;
}
