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

:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #111118;
  --bg-card: #16161f;
  --bg-card-hover: #1c1c28;
  --text-primary: #e8e8f0;
  --text-secondary: #9595a8;
  --text-muted: #6a6a7e;
  --accent: #6c63ff;
  --accent-glow: rgba(108, 99, 255, 0.3);
  --accent-secondary: #00d4aa;
  --accent-warning: #ff6b6b;
  --accent-gold: #ffd700;
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Noto Sans TC', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-main);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

code {
  font-family: var(--font-mono);
  background: rgba(108, 99, 255, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.9em;
  color: var(--accent);
}

/* ===== Container ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 10, 15, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.nav-logo {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo:hover {
  color: var(--accent);
}

.logo-icon {
  font-size: 1.5rem;
  color: var(--accent);
}

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

.nav-menu a {
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--text-primary);
  background: rgba(108, 99, 255, 0.1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(108, 99, 255, 0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(0, 212, 170, 0.08) 0%, transparent 50%),
              var(--bg-primary);
  overflow: hidden;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 120px 24px 80px;
}

.hero-title {
  margin-bottom: 16px;
}

.hero-title-main {
  display: block;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  background: linear-gradient(135deg, #fff 0%, #6c63ff 50%, #00d4aa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.hero-title-sub {
  display: block;
  font-size: clamp(0.9rem, 2vw, 1.3rem);
  font-weight: 500;
  letter-spacing: 0.5em;
  color: var(--text-muted);
  margin-top: 8px;
}

.hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.3em;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 550px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-main);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
  background: #5a52e0;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-hover);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* Server IP */
.hero-server-info {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.server-ip {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 12px 20px;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
}

.server-ip:hover {
  border-color: var(--accent);
  background: var(--bg-card-hover);
}

.ip-label {
  background: var(--accent);
  color: #fff;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.server-ip code {
  background: transparent;
  padding: 0;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.copy-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0;
  transition: opacity var(--transition);
}

.server-ip:hover .copy-hint {
  opacity: 1;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-scroll a {
  display: block;
  width: 30px;
  height: 50px;
  border: 2px solid var(--text-muted);
  border-radius: 15px;
  position: relative;
}

.hero-scroll span {
  display: block;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
  0% { top: 10px; opacity: 1; }
  100% { top: 34px; opacity: 0; }
}

/* ===== Section ===== */
.section {
  padding: 100px 0;
  display: none;
}

.section.active-tab {
  display: block;
}

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

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 60px;
}

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  transition: all var(--transition);
}

.about-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(108, 99, 255, 0.1);
}

.about-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.about-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.about-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ===== Team ===== */
.team-group-title {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-top: 56px;
  margin-bottom: 28px;
  font-weight: 500;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.team-group-title::before,
.team-group-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.4;
}

.team-group-title:first-of-type {
  margin-top: 0;
}

.team-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 48px;
}

.team-card {
  text-align: center;
  position: relative;
  transition: transform 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
}

.team-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.team-card:hover {
  transform: translateY(-8px) scale(1.03);
}

.team-card:hover .team-glow {
  opacity: 0.8;
  transform: scale(1.2);
}

.team-card:hover .team-name {
  text-shadow: 0 0 12px var(--accent-glow), 0 0 24px rgba(108, 99, 255, 0.15);
}

/* Glow platform under character */
.team-glow {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 20px;
  background: radial-gradient(ellipse, var(--accent) 0%, transparent 70%);
  opacity: 0.4;
  border-radius: 50%;
  filter: blur(8px);
  transition: all 0.4s ease;
  pointer-events: none;
}

.team-skin {
  display: block;
  margin: 0 auto 16px;
  border-radius: var(--radius);
  background: transparent;
  position: relative;
  z-index: 1;
}

.team-name {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
  transition: text-shadow 0.4s ease;
}

.team-role {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 500;
}

/* Stagger entrance */
.team-card:nth-child(1) { transition-delay: 0s; }
.team-card:nth-child(2) { transition-delay: 0.1s; }
.team-card:nth-child(3) { transition-delay: 0.2s; }
.team-card:nth-child(4) { transition-delay: 0.3s; }

/* ===== Steps (Join) ===== */
.steps {
  max-width: 700px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 32px;
  position: relative;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 28px;
  top: 56px;
  bottom: -32px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

.step-number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
}

.step-content h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

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

.join-note {
  max-width: 700px;
  margin: 40px auto 0;
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.2);
  border-radius: var(--radius);
  padding: 16px 24px;
  color: var(--accent-warning);
  font-size: 0.9rem;
}

/* ===== Features ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: all var(--transition);
}

.feature-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

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

/* Commands table */
.commands-title {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.commands-table {
  max-width: 700px;
  margin: 0 auto;
  overflow-x: auto;
}

.commands-table table {
  width: 100%;
  border-collapse: collapse;
}

.commands-table th {
  text-align: left;
  padding: 14px 20px;
  background: var(--bg-card);
  color: var(--text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 1px solid var(--border);
}

.commands-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.commands-table tr:hover td {
  background: rgba(108, 99, 255, 0.03);
}

/* ===== Rules ===== */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.rule-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.rule-card:hover {
  transform: translateY(-2px);
}

.rule-card h3 {
  font-size: 1.15rem;
  margin-bottom: 16px;
}

.rule-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rule-card li {
  color: var(--text-secondary);
  font-size: 0.9rem;
  padding-left: 18px;
  position: relative;
}

.rule-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.rule-severe li::before { background: var(--accent-warning); }
.rule-conduct li::before { background: var(--accent); }
.rule-building li::before { background: var(--accent-secondary); }
.rule-report li::before { background: var(--accent-gold); }
.rule-interview li::before { background: #a78bfa; }
.rule-creature li::before { background: #f97316; }
.rule-court li::before { background: #94a3b8; }
.rule-public li::before { background: #38bdf8; }
.rule-ownership li::before { background: #e879f9; }
.rule-prisoner li::before { background: #fb923c; }

.rule-severe { border-top: 3px solid var(--accent-warning); }
.rule-conduct { border-top: 3px solid var(--accent); }
.rule-building { border-top: 3px solid var(--accent-secondary); }
.rule-report { border-top: 3px solid var(--accent-gold); }
.rule-interview { border-top: 3px solid #a78bfa; }
.rule-creature { border-top: 3px solid #f97316; }
.rule-court { border-top: 3px solid #94a3b8; }
.rule-public { border-top: 3px solid #38bdf8; }
.rule-ownership { border-top: 3px solid #e879f9; }
.rule-prisoner { border-top: 3px solid #fb923c; }

.rule-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 14px;
  line-height: 1.6;
}

.rules-preamble {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  padding: 24px 30px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.rules-footer {
  text-align: center;
  margin-top: 40px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.section-title-sub {
  margin-top: 60px;
  margin-bottom: 30px;
}

/* ===== Store ===== */
.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 30px;
}

.store-category {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
}

.store-category h3 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.store-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.store-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.price {
  color: var(--accent-gold);
  font-weight: 700;
  font-family: var(--font-mono);
  font-size: 0.85rem;
}

.store-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===== DevOps ===== */
.devops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.devops-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
}

.devops-card h3 {
  font-size: 1.15rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.devops-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.devops-card li {
  color: var(--text-secondary);
  font-size: 0.9rem;
  padding-left: 18px;
  position: relative;
}

.devops-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

/* ===== Timeline ===== */
.timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--accent-secondary), transparent);
}

.timeline-item {
  padding-left: 40px;
  margin-bottom: 40px;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
}

.timeline-date {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 4px;
}

.timeline-content h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

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

/* ===== FAQ ===== */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 12px;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-main);
  cursor: pointer;
  transition: all var(--transition);
}

.faq-question:hover {
  border-color: var(--accent);
}

.faq-question.open {
  border-color: var(--accent);
  border-radius: var(--radius) var(--radius) 0 0;
}

.faq-icon {
  font-size: 1.3rem;
  color: var(--accent);
  transition: transform var(--transition);
}

.faq-question.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ===== Footer ===== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}

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

.footer-info h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

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

.footer-links h4,
.footer-connect h4 {
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.footer-links a:hover {
  color: var(--accent);
}

.footer-connect p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.footer-connect code {
  background: transparent;
  color: var(--text-secondary);
  padding: 0;
}

.footer-discord {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 20px;
  background: #5865f2;
  color: #fff;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition);
}

.footer-discord:hover {
  background: #4752c4;
  color: #fff;
  transform: translateY(-1px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ===== About Intro ===== */
.about-intro {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.9;
}

.about-intro p {
  margin-bottom: 12px;
}

/* ===== Join Intro ===== */
.join-intro {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
}

.join-intro blockquote {
  font-size: 1.05rem;
  color: var(--text-secondary);
  font-style: italic;
  border-left: 3px solid var(--accent);
  padding: 16px 24px;
  margin-bottom: 16px;
  text-align: left;
  background: rgba(108, 99, 255, 0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
  line-height: 1.8;
}

.join-intro p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.subsection-title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.subsection-desc {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 30px;
}

.join-note-warning {
  background: rgba(255, 165, 0, 0.1);
  border-color: rgba(255, 165, 0, 0.3);
  color: #ffa500;
  margin-bottom: 50px;
}

/* ===== Command table extras ===== */
.command-category {
  font-weight: 700;
  color: var(--accent);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(108, 99, 255, 0.05);
  border-bottom: 1px solid var(--border);
}

.command-detail {
  color: var(--text-muted);
  font-size: 0.85rem;
  background: rgba(108, 99, 255, 0.02);
}

/* ===== Store Disclaimer ===== */
.store-disclaimer {
  max-width: 700px;
  margin: 0 auto 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 30px;
}

.store-disclaimer h4 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--accent-warning);
}

.store-disclaimer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.store-disclaimer li {
  color: var(--text-secondary);
  font-size: 0.85rem;
  padding-left: 18px;
  position: relative;
}

.store-disclaimer li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-warning);
}

/* ===== DevOps extras ===== */
.devops-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 16px;
  line-height: 1.7;
}

.devops-link {
  margin-top: 12px;
}

.devops-link a {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(108, 99, 255, 0.1);
  border: 1px solid rgba(108, 99, 255, 0.2);
  border-radius: 50px;
  font-size: 0.85rem;
  transition: all var(--transition);
}

.devops-link a:hover {
  background: rgba(108, 99, 255, 0.2);
  border-color: var(--accent);
}

/* ===== Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    border-bottom: 1px solid var(--border);
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-menu a {
    display: block;
    padding: 12px 16px;
    font-size: 1rem;
  }

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

  .section {
    padding: 70px 0;
  }

  .step {
    gap: 16px;
  }

  .step-number {
    width: 44px;
    height: 44px;
    font-size: 0.9rem;
  }

  .step:not(:last-child)::after {
    left: 21px;
    top: 44px;
  }

  .rules-grid,
  .store-grid {
    grid-template-columns: 1fr;
  }

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

  .timeline::before {
    left: 0;
  }

  .timeline-item {
    padding-left: 30px;
  }
}

/* ===== Toast ===== */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--accent);
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 9999;
  opacity: 0;
  transition: all 0.4s ease;
  pointer-events: none;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
