.grapecity-theme {
  font-family: "Inter", "PingFang SC", "Microsoft YaHei", sans-serif;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #f8fafc 100%);
  min-height: 100vh;
}

.grapecity-card {
  background: linear-gradient(to bottom right, #ffffff 0%, #f9fafb 100%);
  border: 1px solid rgba(16, 185, 129, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
}

.grapecity-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: inherit;
  pointer-events: none;
}

.grapecity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(16, 185, 129, 0.2);
  border-color: rgba(16, 185, 129, 0.3);
}

.grapecity-card:hover::before {
  opacity: 1;
}

.grapecity-section-title {
  color: #10B981;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.grapecity-floating {
  animation: float 6s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 15px rgba(16, 185, 129, 0.3); }
  50% { box-shadow: 0 0 25px rgba(16, 185, 129, 0.5); }
}

.grapecity-icon-box {
  transition: all 0.3s ease;
}

.grapecity-icon-box:hover {
  transform: scale(1.08);
  animation: pulse-glow 2s ease-in-out infinite;
}

.grapecity-hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: gradient-shift 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes gradient-shift {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

.grapecity-hero-bg-orb-1 {
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
  top: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  animation-delay: 0s;
}

.grapecity-hero-bg-orb-2 {
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  bottom: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  animation-delay: 4s;
}

.grapecity-nav-link {
  position: relative;
  transition: all 0.3s ease;
}

.grapecity-nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #10B981, #059669);
  transition: width 0.3s ease;
}

.grapecity-nav-link:hover::after,
.grapecity-nav-link.active::after {
  width: 100%;
}

.grapecity-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.025em;
}

.grapecity-badge-primary {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: white;
}

.grapecity-badge-secondary {
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  color: white;
}

.grapecity-badge-accent {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
}

.grapecity-step-card {
  background: white;
  border-left: 4px solid #10B981;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.grapecity-step-card:hover {
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.15);
  transform: translateX(4px);
}

.grapecity-resource-link {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #1f2937;
}

.grapecity-resource-link:hover {
  border-color: #10B981;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

.grapecity-resource-link i {
  color: #10B981;
  margin-right: 0.75rem;
}

.grapecity-role-card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e5e7eb;
}

.grapecity-role-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(16, 185, 129, 0.2);
  border-color: #10B981;
}

.grapecity-role-card .role-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.grapecity-timeline {
  position: relative;
  padding-left: 2rem;
}

.grapecity-timeline::before {
  content: '';
  position: absolute;
  left: 0.5rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #10B981 0%, #059669 100%);
}

.grapecity-timeline-item {
  position: relative;
  margin-bottom: 2rem;
}

.grapecity-timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0.5rem;
  width: 1rem;
  height: 1rem;
  background: #10B981;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 3px #10B981;
}

.grapecity-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.grapecity-table th {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: white;
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.875rem;
}

.grapecity-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #e5e7eb;
  font-size: 0.875rem;
}

.grapecity-table tr:hover td {
  background: #f0fdf4;
}

.grapecity-table tr:last-child td {
  border-bottom: none;
}

@media (max-width: 768px) {
  .grapecity-hero-bg-orb-1,
  .grapecity-hero-bg-orb-2 {
    width: 300px;
    height: 300px;
  }
  
  .grapecity-card {
    margin-bottom: 1rem;
  }
  
  .grapecity-role-card {
    padding: 1rem;
  }
}
