MediaWiki:Overview.css

From CoraTO Wiki - Official Wiki
Revision as of 08:32, 2 January 2026 by Noorisei (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.

/* [GUIDE] MAIN CONTAINER
   ======================================== */
#tab-guide {
  padding: 32px 0;
  background: var(--bg);
  min-height: 100vh;
}

/* [GUIDE] SECTION HEADER
   ======================================== */
.guide-section-header {
  text-align: center;
  margin-bottom: 48px;
  padding: 0 24px;
}

.guide-main-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 16px;
  text-shadow: 0 4px 20px var(--shadow-soft);
}

.guide-main-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* [GUIDE] INTRO CARDS
   ======================================== */
.guide-intro {
  margin-bottom: 64px;
  padding: 0 24px;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.guide-card {
  background: var(--bg-1);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 8px 32px var(--shadow-soft);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.guide-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--heading-gradient-start) 0%, var(--heading-gradient-end) 100%);
}

.guide-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px var(--shadow-medium);
}

.guide-card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--heading-gradient-start) 0%, var(--heading-gradient-end) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--text-strong);
  box-shadow: 0 8px 24px var(--shadow-soft);
}

.guide-card-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.guide-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 16px;
}

.guide-card p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 1rem;
}

/* [GUIDE] NAVIGATION STEPS
   ======================================== */
.guide-navigation {
  margin-bottom: 64px;
  padding: 0 24px;
}

.guide-section-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--heading);
  text-align: center;
  margin-bottom: 48px;
  position: relative;
}

.guide-section-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, var(--heading-gradient-start) 0%, var(--heading-gradient-end) 100%);
  border-radius: 2px;
}

.navigation-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-step {
  background: var(--bg-1);
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 6px 24px var(--shadow-soft);
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.3s ease;
}

.nav-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px var(--shadow-medium);
}

.step-number {
  position: absolute;
  top: -16px;
  left: 24px;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--heading-gradient-start) 0%, var(--heading-gradient-end) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--text-strong);
  font-size: 1rem;
  box-shadow: 0 4px 16px var(--shadow-soft);
}

.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 16px;
  margin-top: 8px;
}

.step-description {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.step-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.step-tab {
  background: var(--bg-1);
  color: var(--text-strong);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid var(--border-strong);
}

/* [GUIDE] QUEST TYPES
   ======================================== */
.quest-types {
  margin-bottom: 64px;
  padding: 0 24px;
}

.quest-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.quest-type-card {
  background: var(--surface);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px var(--shadow-soft);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.quest-type-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px var(--shadow-medium);
}

.quest-type-header {
  background: var(--bg-1);
  border-bottom: 2px solid var(--heading);
  padding: 24px;
  text-align: center;
  color: var(--heading);
}

.quest-type-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading);
}

.quest-type-subtitle {
  opacity: 0.9;
  font-size: 1rem;
  color: var(--text);
}

.quest-type-content {
  padding: 32px 24px;
}

.quest-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quest-features li {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  color: var(--text-muted);
  line-height: 1.5;
}

.quest-features li::before {
  content: '✓';
  background: linear-gradient(135deg, var(--heading-gradient-start) 0%, var(--heading-gradient-end) 100%);
  color: var(--text-strong);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  margin-right: 12px;
  flex-shrink: 0;
}

/* [GUIDE] LEVEL PROGRESSION
   ======================================== */
.level-progression {
  margin-bottom: 64px;
  padding: 0 24px;
}

.progression-container {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 32px var(--shadow-soft);
  border: 1px solid var(--border);
}

.progression-track {
  position: relative;
  padding: 20px 0;
}

.progression-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--heading-gradient-start) 0%, var(--heading-gradient-end) 100%);
  border-radius: 2px;
  z-index: 1;
}

.progression-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
  gap: 16px;
}

.progression-step {
  background: var(--surface);
  border: 3px solid var(--heading);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--heading);
  font-size: 0.875rem;
  box-shadow: 0 4px 16px var(--shadow-soft);
  transition: all 0.3s ease;
}

.progression-step:hover {
  background: var(--heading);
  color: var(--surface);
  transform: scale(1.1);
}

.progression-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  flex-wrap: wrap;
  gap: 8px;
}

.progression-label {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
  flex: 1;
  min-width: 80px;
}

/* [GUIDE] TIPS SECTION
   ======================================== */
.guide-tips {
  margin-bottom: 64px;
  padding: 0 24px;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.tip-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 6px 24px var(--shadow-soft);
  border-left: 4px solid var(--heading);
  transition: all 0.3s ease;
}

.tip-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px var(--shadow-medium);
}

.tip-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--heading-gradient-start) 0%, var(--heading-gradient-end) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.25rem;
  color: var(--text-strong);
}

.tip-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 12px;
}

.tip-content {
  color: var(--text-muted);
  line-height: 1.6;
}

/* [GUIDE] RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
  .guide-main-title {
    font-size: 2.5rem;
  }
  
  .guide-section-title {
    font-size: 2rem;
  }
  
  .highlights-grid,
  .navigation-steps,
  .quest-types-grid,
  .tips-grid {
    grid-template-columns: 1fr;
  }
  
  .progression-steps {
    justify-content: center;
  }
  
  .progression-step {
    width: 50px;
    height: 50px;
    font-size: 0.75rem;
  }
  
  .progression-container {
    padding: 24px;
  }
  
  #tab-guide {
    padding: 24px 0;
  }
}

@media (max-width: 480px) {
  .guide-main-title {
    font-size: 2rem;
  }
  
  .guide-card,
  .nav-step,
  .quest-type-content,
  .tip-card {
    padding: 20px;
  }
  
  .progression-container {
    padding: 20px;
  }
}