Página Principal: mudanças entre as edições

De Edda World Wiki
Ir para navegação Ir para pesquisar
Sem resumo de edição
Sem resumo de edição
 
(85 revisões intermediárias pelo mesmo usuário não estão sendo mostradas)
Linha 1: Linha 1:
<!-- ============================================================
<!-- ============================================================
     Página Principal
     Página Principal — Edda World
    Identidade visual: mint/lavanda, fundo claro, mascote oficial
     ============================================================ -->
     ============================================================ -->


<html>
<html>
<style>
/* ==============================================
  PALETA DE MARCA — EDDA WORLD
  ============================================== */
:root {
  --edda-mint: #5ECFA8;
  --edda-mint-light: #A8E8D0;
  --edda-mint-tint: rgba(94,207,168,0.14);
  --edda-mint-tint-strong: rgba(94,207,168,0.35);
  --edda-lavender: #9B87D4;
  --edda-lavender-tint: rgba(155,135,212,0.16);
  --edda-plum: #241832;
  --edda-plum-soft: #2E2040;
  --edda-text: #1A2640;
  --edda-text-secondary: #6B6478;
}
/* ===== HERO ===== */
.edda-hero {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  margin-bottom: 14px;
  height: 300px;
  display: flex;
  align-items: center;
  background-color: #FDF9F2;
  background-image: url('/index.php/Special:FilePath/Banner_Certo_Gato.png');
  background-size: cover;
  background-position: center 35%;
  border: 1px solid var(--edda-mint-tint-strong);
}
.edda-hero-content {
  position: relative;
  z-index: 1;
  height: 100%;
  max-width: 60%;
  padding: 0 40px 0 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.edda-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(94,207,168,0.16);
  border: 1px solid var(--edda-mint-tint-strong);
  color: #2E8F6E;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.edda-hero-logo {
  display: block;
  width: 310px;
  max-width: 100%;
  height: auto;
  margin-bottom: 8px;
}
.edda-hero-sub {
  color: var(--edda-text-secondary);
  font-size: 12.5px;
  line-height: 1.6;
}
.edda-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.edda-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--edda-mint-tint-strong);
  color: var(--edda-text);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
}
.edda-pill-dot { color: var(--edda-mint); font-size: 11px; flex-shrink: 0; }
@media (max-width: 780px) {
  .edda-hero { background-position: 72% center; height: 340px; align-items: flex-start; }
  .edda-hero-content { max-width: 100%; padding: 22px; }
  .edda-hero-logo { width: 220px; }
}
/* ===== INFO BAR ===== */
.edda-infobar {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--edda-mint-tint-strong);
  border: 1px solid var(--edda-mint-tint-strong);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 14px;
}
.edda-infobar-cell { background: #fff; padding: 12px 14px; }
.edda-infobar-label { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.7px; color: var(--edda-text-secondary); margin-bottom: 4px; }
.edda-infobar-value { font-size: 12.5px; font-weight: 700; color: var(--edda-text); line-height: 1.35; }
.edda-infobar-value.mint { color: #2E8F6E; }
@media (max-width: 780px) {
  .edda-infobar { grid-template-columns: repeat(2, 1fr); }
}
/* ===== BLOCOS BASE ===== */
.wiki-col-wrap { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-bottom:12px; align-items:start; }
.wiki-block { background:#fff; border:1px solid var(--edda-mint-tint-strong); border-radius:10px; overflow:hidden; margin-bottom:0; }
.wiki-block-full { background:#fff; border:1px solid var(--edda-mint-tint-strong); border-radius:10px; overflow:hidden; margin-bottom:0; }
.wiki-block-title { background:var(--edda-plum); padding:9px 16px; display:flex; align-items:center; gap:8px; }
.wiki-block-title-text { color:var(--edda-mint-light); font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:0.9px; }
.wiki-link { display:flex; align-items:center; gap:8px; padding:8px 14px; border-bottom:1px solid var(--edda-mint-tint); text-decoration:none; color:var(--edda-text); font-size:13px; transition:color 0.1s,background 0.1s; }
.wiki-link:last-child { border-bottom:none; }
.wiki-link:hover { color:#2E8F6E; background:#F2FBF7; }
.wiki-link img { image-rendering:pixelated; flex-shrink:0; }
.wiki-list .wiki-link:last-child { border-bottom:none; }
.wiki-grid-2 { display:grid; grid-template-columns:repeat(2,1fr); }
.wiki-grid-2 .wiki-link { border-right:1px solid var(--edda-mint-tint); }
.wiki-grid-2 .wiki-link:nth-child(2n) { border-right:none; }
.wiki-grid-3 { display:grid; grid-template-columns:repeat(3,1fr); }
.wiki-grid-3 .wiki-link { border-right:1px solid var(--edda-mint-tint); }
.wiki-grid-3 .wiki-link:nth-child(3n) { border-right:none; }
.wiki-grid-4 { display:grid; grid-template-columns:repeat(4,1fr); }
.wiki-grid-4 .wiki-link { border-right:1px solid var(--edda-mint-tint); }
.wiki-grid-4 .wiki-link:nth-child(4n) { border-right:none; }
/* ===== COMUNIDADE / ACESSO RÁPIDO ===== */
.wiki-quick { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin-bottom:14px; }
.wiki-quick-card { position:relative; overflow:hidden; display:flex; flex-direction:column; gap:2px; background:var(--edda-plum); border:1px solid var(--edda-lavender-tint); border-radius:10px; padding:12px 14px 12px 17px; text-decoration:none; transition:border-color 0.15s,transform 0.15s; }
.wiki-quick-card::before { content:''; position:absolute; left:0; top:0; bottom:0; width:3px; background:var(--edda-mint); }
.wiki-quick-card:hover { border-color:var(--edda-mint); transform:translateY(-2px); }
.wiki-quick-title { color:var(--edda-mint-light); font-size:12.5px; font-weight:700; }
.wiki-quick-sub { color:rgba(255,255,255,0.45); font-size:10px; }
/* ===== ÍNDICE RÁPIDO ===== */
.wiki-jumpnav { display:flex; flex-wrap:wrap; gap:6px; margin-bottom:22px; }
.wiki-jumpnav a { display:inline-flex; align-items:center; gap:5px; background:#fff; border:1px solid var(--edda-mint-tint-strong); color:var(--edda-text-secondary); font-size:11px; font-weight:600; padding:5px 12px; border-radius:20px; text-decoration:none; transition:all 0.15s; }
.wiki-jumpnav a:hover { background:var(--edda-mint); border-color:var(--edda-mint); color:#fff; }
/* ===== CABEÇALHO DE SEÇÃO ===== */
.wiki-section { margin:26px 0 12px; display:flex; align-items:baseline; gap:12px; scroll-margin-top:16px; }
.wiki-section:first-of-type { margin-top:4px; }
.wiki-section-label { font-size:13px; font-weight:800; color:var(--edda-text); white-space:nowrap; }
.wiki-section-line { flex:1; height:1px; background:var(--edda-mint-tint-strong); }
.wiki-section-desc { font-size:11.5px; color:#9B94A8; white-space:nowrap; }
/* ===== SUBCABEÇALHO interno ===== */
.wiki-subhead { display:flex; align-items:center; gap:8px; padding:13px 16px 7px; }
.wiki-subhead-dot { width:6px; height:6px; border-radius:50%; background:var(--edda-mint); flex-shrink:0; }
.wiki-subhead-text { font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:0.9px; color:#2E8F6E; }
.wiki-subhead-count { font-size:9px; font-weight:700; color:var(--edda-text-secondary); background:#F2FBF7; border:1px solid var(--edda-mint-tint-strong); border-radius:20px; padding:1px 8px; margin-left:auto; }
/* ===== RODAPÉ EDDA ===== */
.edda-banner { display:flex; align-items:center; gap:14px; background:var(--edda-plum); border:1px solid var(--edda-lavender-tint); border-radius:12px; padding:16px 20px; }
.edda-banner-title { color:var(--edda-mint-light); font-size:13.5px; font-weight:700; margin-bottom:3px; }
.edda-banner-sub { color:rgba(255,255,255,0.5); font-size:11.5px; line-height:1.5; }
/* ===== RESPONSIVO ===== */
@media (max-width:720px) {
  .wiki-quick { grid-template-columns:repeat(2,1fr); }
  .wiki-col-wrap { grid-template-columns:1fr; }
  .wiki-grid-4 { grid-template-columns:repeat(2,1fr); }
  .wiki-grid-4 .wiki-link:nth-child(2n) { border-right:none; }
  .wiki-grid-4 .wiki-link:nth-child(4n) { border-right:1px solid var(--edda-mint-tint); }
  .wiki-grid-3 { grid-template-columns:repeat(2,1fr); }
  .wiki-grid-3 .wiki-link:nth-child(2n) { border-right:none; }
  .wiki-grid-3 .wiki-link:nth-child(3n) { border-right:1px solid var(--edda-mint-tint); }
  .wiki-section-desc { display:none; }
}
</style>


<!-- HERO -->
<!-- HERO -->
<div class="edda-hero">
<div class="edda-hero">
   <div style="position:absolute;top:-40px;left:-20px;width:200px;height:200px;background:radial-gradient(circle,rgba(14,165,233,0.15) 0%,transparent 70%);border-radius:50%;pointer-events:none;"></div>
   <div class="edda-hero-content">
  <div style="position:absolute;bottom:-20px;right:5%;width:150px;height:150px;background:radial-gradient(circle,rgba(125,216,255,0.1) 0%,transparent 70%);border-radius:50%;pointer-events:none;"></div>
     <img src="/index.php/Special:FilePath/Edda_World_Zada.png" alt="Edda World" class="edda-hero-logo">
  <div style="position:relative;z-index:1;">
    <div style="display:inline-flex;align-items:center;gap:5px;background:rgba(14,165,233,0.15);border:1px solid rgba(14,165,233,0.35);color:#7DD8FF;font-size:9px;font-weight:700;letter-spacing:1.2px;text-transform:uppercase;padding:3px 10px;border-radius:20px;margin-bottom:14px;">✦ Wiki</div>
    <div class="edda-hero-title">Bem-vindo</div>
     <div class="edda-hero-sub">
      Pre-Renewal · Gold Times · PT-BR<br>
      O mundo vivo — eventos emergem sem aviso, desafios surgem a todo momento.
    </div>
    <div class="edda-pills">
      <div class="edda-pill"><span style="width:5px;height:5px;border-radius:50%;background:#0EA5E9;box-shadow:0 0 5px #0EA5E9;flex-shrink:0;"></span> Beta — 01/05</div>
      <div class="edda-pill"><span style="width:5px;height:5px;border-radius:50%;background:#34C57C;flex-shrink:0;"></span> Abertura — 08/05</div>
      <div class="edda-pill"><span style="width:5px;height:5px;border-radius:50%;background:#F59E0B;flex-shrink:0;"></span> 5x EXP · 5x Job · 2x Drop · 1x MVP</div>
    </div>
   </div>
   </div>
</div>
</div>
Linha 28: Linha 195:
   <div class="edda-infobar-cell">
   <div class="edda-infobar-cell">
     <div class="edda-infobar-label">Mecânica</div>
     <div class="edda-infobar-label">Mecânica</div>
     <div class="edda-infobar-value blue">Gold Times</div>
     <div class="edda-infobar-value mint">Gold Times</div>
   </div>
   </div>
   <div class="edda-infobar-cell">
   <div class="edda-infobar-cell">
     <div class="edda-infobar-label">Emulador</div>
     <div class="edda-infobar-label">Emulador</div>
     <div class="edda-infobar-value">Pré-Renewal</div>
     <div class="edda-infobar-value">Pre-Renewal</div>
   </div>
   </div>
   <div class="edda-infobar-cell">
   <div class="edda-infobar-cell">
     <div class="edda-infobar-label">Rates</div>
     <div class="edda-infobar-label">Rates</div>
     <div class="edda-infobar-value">5x / 5x / 2x / 1x</div>
     <div class="edda-infobar-value">10x / 10x / 2x</div>
   </div>
   </div>
   <div class="edda-infobar-cell">
   <div class="edda-infobar-cell">
     <div class="edda-infobar-label">Episódio</div>
     <div class="edda-infobar-label">Episódio</div>
     <div class="edda-infobar-value">O servidor não segue uma linha habitual de episódios</div>
     <div class="edda-infobar-value">Encontro com o Desconhecido +</div>
   </div>
   </div>
   <div class="edda-infobar-cell">
   <div class="edda-infobar-cell">
Linha 48: Linha 215:
   <div class="edda-infobar-cell">
   <div class="edda-infobar-cell">
     <div class="edda-infobar-label">Anti-Cheat</div>
     <div class="edda-infobar-label">Anti-Cheat</div>
     <div class="edda-infobar-value blue">Gepard 3</div>
     <div class="edda-infobar-value mint">Gepard 3</div>
   </div>
   </div>
</div>
</div>


<style>
<!-- COMUNIDADE -->
/* Layout principal: duas colunas que se alinham pelo topo, sem esticar */
<div class="wiki-quick">
.wiki-col-wrap { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-bottom:12px; align-items:start; }
  <a href="https://discord.gg/7WZM2w5mTM" class="wiki-quick-card">
.wiki-block { background:#fff; border:1px solid rgba(14,165,233,0.16); border-radius:10px; overflow:hidden; margin-bottom:0; }
    <span class="wiki-quick-title">Discord</span>
.wiki-block-full { background:#fff; border:1px solid rgba(14,165,233,0.16); border-radius:10px; overflow:hidden; margin-bottom:12px; }
    <span class="wiki-quick-sub">Comunidade &amp; suporte</span>
.wiki-block-title { background:#050E1F; padding:9px 16px; display:flex; align-items:center; gap:8px; }
  </a>
.wiki-block-title-text { color:#7DD8FF; font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:0.9px; }
  <a href="https://www.eddaworld.com.br" class="wiki-quick-card">
.wiki-link { display:flex; align-items:center; gap:8px; padding:8px 14px; border-bottom:1px solid rgba(14,165,233,0.06); text-decoration:none; color:#1A2640; font-size:13px; transition:color 0.1s,background 0.1s; }
    <span class="wiki-quick-title">Site Oficial</span>
.wiki-link:last-child { border-bottom:none; }
    <span class="wiki-quick-sub">Notícias &amp; downloads</span>
.wiki-link:hover { color:#0EA5E9; background:#F4FAFF; }
  </a>
.wiki-link img { image-rendering:pixelated; flex-shrink:0; }
  <a href="/index.php/Regras" class="wiki-quick-card">
.wiki-grid-2 { display:grid; grid-template-columns:repeat(2,1fr); }
    <span class="wiki-quick-title">Regras</span>
.wiki-grid-2 .wiki-link { border-right:1px solid rgba(14,165,233,0.06); }
    <span class="wiki-quick-sub">Conduta do servidor</span>
.wiki-grid-2 .wiki-link:nth-child(2n) { border-right:none; }
  </a>
.wiki-grid-4 { display:grid; grid-template-columns:repeat(4,1fr); }
</div>
.wiki-grid-4 .wiki-link { border-right:1px solid rgba(14,165,233,0.06); }
 
.wiki-grid-4 .wiki-link:nth-child(4n) { border-right:none; }
<!-- ÍNDICE -->
</style>
<div class="wiki-jumpnav">
  <a href="#sec-comeceaqui">Comece Aqui</a>
  <a href="#sec-economia">ROPs &amp; Recompensas</a>
  <a href="#sec-pvpeventos">PvP &amp; Eventos</a>
  <a href="#sec-progressao">Progressão &amp; Criação</a>
  <a href="#sec-mundopve">Mundo &amp; Conteúdo PvE</a>
</div>
 
<!-- ===================== COMECE AQUI ===================== -->
<div class="wiki-section" id="sec-comeceaqui">
  <span class="wiki-section-label">Comece Aqui</span>
  <span class="wiki-section-line"></span>
  <span class="wiki-section-desc">Primeiros passos do jogador novo</span>
</div>


<!-- INÍCIO DA JORNADA — full width, 4 colunas -->
<div class="wiki-block-full">
<div class="wiki-block-full">
   <div class="wiki-block-title"><span class="wiki-block-title-text">Início da Jornada</span></div>
   <div class="wiki-block-title"><span class="wiki-block-title-text">Início da Jornada</span></div>
Linha 77: Linha 256:
     <a href="/index.php/Informações_do_Servidor" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/7304.png" width="24" height="24" alt="">Informações do Servidor</a>
     <a href="/index.php/Informações_do_Servidor" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/7304.png" width="24" height="24" alt="">Informações do Servidor</a>
     <a href="/index.php/Caixa_do_Iniciante" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/23285.png" width="24" height="24" alt="">Caixa do Iniciante</a>
     <a href="/index.php/Caixa_do_Iniciante" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/23285.png" width="24" height="24" alt="">Caixa do Iniciante</a>
    <a href="/index.php/Grupo_Éden" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/22508.png" width="24" height="24" alt="">Grupo Éden</a>
     <a href="/index.php/Balanceamento_de_Classes" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/2822.png" width="24" height="24" alt="">Balanceamento de Classes</a>
     <a href="/index.php/Balanceamento_de_Classes" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/2822.png" width="24" height="24" alt="">Balanceamento de Classes</a>
     <a href="/index.php/Mestra_das_Classes" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/102909.png" width="24" height="24" alt="">Mestra das Classes</a>
     <a href="/index.php/Mestra_das_Classes" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/102909.png" width="24" height="24" alt="">Mestra das Classes</a>
     <a href="/index.php/Moeda_Colecionável" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/1001007.png" width="24" height="24" alt="">Moeda Colecionável</a>
     <a href="/index.php/MoEdda" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/6379.png" width="24" height="24" alt="">MoEdda</a>
     <a href="/index.php/Guild_Point" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/460050.png" width="24" height="24" alt="">Guild Point</a>
     <a href="/index.php/Guild_Point" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/460050.png" width="24" height="24" alt="">Guild Point</a>
     <a href="/index.php/Economia" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/7444.png" width="24" height="24" alt="">Economia</a>
     <a href="/index.php/Economia" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/7444.png" width="24" height="24" alt="">Economia</a>
Linha 86: Linha 266:
     <a href="/index.php/Artesão" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/11641.png" width="24" height="24" alt="">Artesão</a>
     <a href="/index.php/Artesão" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/11641.png" width="24" height="24" alt="">Artesão</a>
     <a href="/index.php/Removedora_de_Cartas" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/6443.png" width="24" height="24" alt="">Removedora de Cartas</a>
     <a href="/index.php/Removedora_de_Cartas" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/6443.png" width="24" height="24" alt="">Removedora de Cartas</a>
    <a href="/index.php/Raça_do_Dia" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/410059.png" width="24" height="24" alt="">Raça do Dia</a>
   </div>
   </div>
</div>
</div>


<!-- ROPs & Pontos + Eventos — alturas iguais (6 itens cada) -->
<!-- ===================== ROPS & RECOMPENSAS ===================== -->
<div class="wiki-section" id="sec-economia">
  <span class="wiki-section-label">ROPs &amp; Recompensas</span>
  <span class="wiki-section-line"></span>
  <span class="wiki-section-desc">Onde ganhar, gastar e trocar recursos</span>
</div>
 
<div class="wiki-col-wrap">
<div class="wiki-col-wrap">
   <div class="wiki-block">
   <div class="wiki-block">
Linha 96: Linha 281:
     <div class="wiki-grid-2">
     <div class="wiki-grid-2">
       <a href="/index.php/Loja_de_ROPs" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/670.png" width="24" height="24" alt="">Loja de ROPs</a>
       <a href="/index.php/Loja_de_ROPs" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/670.png" width="24" height="24" alt="">Loja de ROPs</a>
       <a href="/index.php/Passe_de_Batalha" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/104440.png" width="24" height="24" alt="">Passe de Batalha</a>
       <a href="/index.php/Passe_de_Batalha" class="wiki-link"><img src="https://www.divine-pride.net/img/items/item/LATAM/540111" width="24" height="24" alt="">Passe de Batalha</a>
      <a href="/index.php/Máquina_de_Prêmios" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/6989.png" width="24" height="24" alt="">Máquina de Prêmios</a>
       <a href="/index.php/Pontos_de_Voto" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/20344.png" width="24" height="24" alt="">Pontos de Voto</a>
       <a href="/index.php/Pontos_de_Voto" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/20344.png" width="24" height="24" alt="">Pontos de Voto</a>
       <a href="/index.php/Pontos_de_Presença" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/1001010.png" width="24" height="24" alt="">Pontos de Presença</a>
       <a href="/index.php/Pontos_de_Presença" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/1001010.png" width="24" height="24" alt="">Pontos de Presença</a>
       <a href="/index.php/Benefícios_VIP" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/25876.png" width="24" height="24" alt="">Benefícios VIP</a>
       <a href="/index.php/Benefícios_VIP" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/25876.png" width="24" height="24" alt="">Benefícios VIP</a>
      <a href="/index.php/Logue_e_Ganhe" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/105759.png" width="24" height="24" alt="">Logue e Ganhe</a>
      <a href="/index.php/Bônus_de_Retorno" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/103426.png" width="24" height="24" alt="">Bônus de Retorno</a>
      <a href="/index.php/Loja_Kachua" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/1000274.png" width="24" height="24" alt="">Loja Kachua</a>
     </div>
     </div>
   </div>
   </div>
   <div class="wiki-block">
   <div class="wiki-block">
     <div class="wiki-block-title"><span class="wiki-block-title-text">Eventos</span></div>
     <div class="wiki-block-title"><span class="wiki-block-title-text">Itens &amp; Recompensas</span></div>
     <div class="wiki-grid-2">
     <div class="wiki-grid-2">
       <a href="/index.php/Jogo_do_Bicho" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/18930.png" width="24" height="24" alt="">Jogo do Bicho</a>
       <a href="/index.php/Pedras_de_Rate" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/1001655.png" width="24" height="24" alt="">Pedras de Rate</a>
       <a href="/index.php/Fuja_da_Dengue" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/742.png" width="24" height="24" alt="">Fuja da Dengue</a>
 
       <a href="/index.php/Edda_Square" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/7102.png" width="24" height="24" alt="">Edda Square</a>
      <a href="/index.php/Equipamentos_Aprimoráveis" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/550181.png" width="24" height="24" alt="">Equipamentos Aprimoráveis</a>
       <a href="/index.php/O_Julgamento_de_Odin" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/31380.png" width="24" height="24" alt="">O Julgamento de Odin</a>
       <a href="/index.php/Caixa_dos_Melhores_Itens" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/12608.png" width="24" height="24" alt="">Caixa dos Melhores Itens</a>
       <a href="/index.php/Evento_da_Copa" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/7549.png" width="24" height="24" alt="">Evento da Copa</a>
       <a href="/index.php/Pedras_Visuais" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/6638.png" width="24" height="24" alt="">Pedras Visuais</a>
       <a href="/index.php/Ovo_de_Visuais" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/103923.png" width="24" height="24" alt="">Ovo de Visuais</a>
      <a href="/index.php/Equipamentos_Sombrios" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/24184.png" width="24" height="24" alt="">Equipamentos Sombrios</a>
       <a href="/index.php/Equipamentos_Rubi" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/490045.png" width="24" height="24" alt="">Equipamentos Rubi</a>
     </div>
     </div>
   </div>
   </div>
</div>
</div>


<!-- Criação & Aprimoramento + coluna direita empilhada: PvP + Itens -->
<!-- ===================== PVP & EVENTOS ===================== -->
<div class="wiki-section" id="sec-pvpeventos">
  <span class="wiki-section-label">PvP &amp; Eventos</span>
  <span class="wiki-section-line"></span>
  <span class="wiki-section-desc">Combate competitivo e conteúdo sazonal</span>
</div>
 
<div class="wiki-col-wrap">
<div class="wiki-col-wrap">
  <!-- esquerda: Criação (9 itens) -->
   <div class="wiki-block">
   <div class="wiki-block">
     <div class="wiki-block-title"><span class="wiki-block-title-text">Criação &amp; Aprimoramento</span></div>
     <div class="wiki-block-title"><span class="wiki-block-title-text">PvP &amp; Batalhas</span></div>
    <div class="wiki-list">
      <a href="/index.php/Guerra_do_Emperium" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/1000330.png" width="24" height="24" alt="">Guerra do Emperium</a>
      <a href="/index.php/Sistema_PK" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/7752.png" width="24" height="24" alt="">Sistema PK</a>
      <a href="/index.php/KVM" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/6376.png" width="24" height="24" alt="">KVM</a>
    </div>
  </div>
  <div class="wiki-block">
    <div class="wiki-block-title"><span class="wiki-block-title-text">Eventos</span></div>
     <div class="wiki-grid-2">
     <div class="wiki-grid-2">
       <a href="/index.php/Refinamentos" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/6438.png" width="24" height="24" alt="">Refinamentos</a>
       <a href="/index.php/Mapa_do_Tesouro" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/420385.png" width="24" height="24" alt="">Mapa do Tesouro</a>
       <a href="/index.php/Encantamentos" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/1001090.png" width="24" height="24" alt="">Encantamentos</a>
       <a href="/index.php/Corrida_dos_Bichos" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/18930.png" width="24" height="24" alt="">Corrida dos Bichos</a>
       <a href="/index.php/Sloteamentos" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/1001076.png" width="24" height="24" alt="">Sloteamentos</a>
       <a href="/index.php/Fuja_da_Dengue" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/742.png" width="24" height="24" alt="">Fuja da Dengue</a>
       <a href="/index.php/Sistema_de_Runas" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/1001283.png" width="24" height="24" alt="">Sistema de Runas</a>
       <a href="/index.php/Pegue_o_Pombo" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/18912.png" width="24" height="24" alt="">Pegue o Pombo</a>
       <a href="/index.php/Sistema_de_Progressão" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/1001124.png" width="24" height="24" alt="">Sistema de Progressão</a>
       <a href="/index.php/Raça_do_Dia" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/410059.png" width="24" height="24" alt="">Raça do Dia</a>
       <a href="/index.php/Mascotes" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/9065.png" width="24" height="24" alt="">Mascotes</a>
       <a href="/index.php/Evento_da_Copa" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/7549.png" width="24" height="24" alt="">Evento da Copa</a>
      <a href="/index.php/Quests_Edda" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/7874.png" width="24" height="24" alt="">Quests Edda</a>
      <a href="/index.php/Forja" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/6596.png" width="24" height="24" alt="">Forja</a>
      <a href="/index.php/Alquimia" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/6285.png" width="24" height="24" alt="">Alquimia</a>
     </div>
     </div>
   </div>
   </div>
  <!-- direita: PvP + Itens empilhados -->
</div>
   <div style="display:flex;flex-direction:column;gap:12px;">
 
    <div class="wiki-block">
<!-- ===================== PROGRESSÃO & CRIAÇÃO ===================== -->
      <div class="wiki-block-title"><span class="wiki-block-title-text">PvP &amp; Batalhas</span></div>
<div class="wiki-section" id="sec-progressao">
      <div class="wiki-grid-2">
   <span class="wiki-section-label">Progressão &amp; Criação</span>
        <a href="/index.php/Guerra_do_Emperium" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/1000330.png" width="24" height="24" alt="">Guerra do Emperium</a>
  <span class="wiki-section-line"></span>
        <a href="/index.php/Sistema_PK" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/7752.png" width="24" height="24" alt="">Sistema PK</a>
  <span class="wiki-section-desc">Forje, encante e evolua seu equipamento</span>
        <a href="/index.php/KVM" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/6376.png" width="24" height="24" alt="">KVM</a>
</div>
      </div>
 
    </div>
<div class="wiki-block-full">
     <div class="wiki-block">
  <div class="wiki-block-title"><span class="wiki-block-title-text">Criação &amp; Aprimoramento</span></div>
      <div class="wiki-block-title"><span class="wiki-block-title-text">Itens &amp; Recompensas</span></div>
  <div class="wiki-grid-3">
      <div class="wiki-grid-2">
    <a href="/index.php/Refinamentos" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/6438.png" width="24" height="24" alt="">Refinamentos</a>
        <a href="/index.php/Caixa_dos_Melhores_Itens" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/12608.png" width="24" height="24" alt="">Caixa dos Melhores Itens</a>
    <a href="/index.php/Encantamentos" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/1001090.png" width="24" height="24" alt="">Encantamentos</a>
        <a href="/index.php/Mapa_do_Tesouro" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/420385.png" width="24" height="24" alt="">Mapa do Tesouro</a>
    <a href="/index.php/Sloteamentos" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/1001076.png" width="24" height="24" alt="">Sloteamentos</a>
        <a href="/index.php/Equipamentos_Aprimoráveis" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/550181.png" width="24" height="24" alt="">Equipamentos Aprimoráveis</a>
    <a href="/index.php/Sistema_de_Runas" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/1001283.png" width="24" height="24" alt="">Sistema de Runas</a>
      </div>
     <a href="/index.php/Sistema_de_Progressão" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/1001661.png" width="24" height="24" alt="">Sistema de Progressão</a>
    </div>
    <a href="/index.php/Mascotes" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/9065.png" width="24" height="24" alt="">Mascotes</a>
    <a href="/index.php/Quests_Edda" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/7874.png" width="24" height="24" alt="">Quests Edda</a>
    <a href="/index.php/Forja" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/6596.png" width="24" height="24" alt="">Forja</a>
    <a href="/index.php/Alquimia" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/6285.png" width="24" height="24" alt="">Alquimia</a>
    <a href="/index.php/Mineração" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/28116.png" width="24" height="24" alt="">Mineração</a>
    <a href="/index.php/Afinidades" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/28627.png" width="24" height="24" alt="">Afinidades</a>
    <a href="/index.php/Encantamentos_de_Malangdo" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/6423.png" width="24" height="24" alt="">Encantamentos de Malangdo</a>
   </div>
   </div>
</div>
</div>


<!-- INSTÂNCIAS — full width, 4 colunas -->
<!-- ===================== MUNDO & CONTEÚDO PVE ===================== -->
<div class="wiki-section" id="sec-mundopve">
  <span class="wiki-section-label">Mundo &amp; Conteúdo PvE</span>
  <span class="wiki-section-line"></span>
  <span class="wiki-section-desc">Instâncias estruturadas e o mundo aberto de Edda</span>
</div>
 
<div class="wiki-block-full">
<div class="wiki-block-full">
   <div class="wiki-block-title"><span class="wiki-block-title-text">Instâncias</span></div>
   <div class="wiki-block-title"><span class="wiki-block-title-text">Conteúdo PvE</span></div>
 
  <div class="wiki-subhead">
    <span class="wiki-subhead-dot"></span>
    <span class="wiki-subhead-text">Instâncias</span>
    <span class="wiki-subhead-count">7</span>
  </div>
   <div class="wiki-grid-4">
   <div class="wiki-grid-4">
     <a href="/index.php/Batalha_dos_Orcs" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/28522.png" width="24" height="24" alt="">Batalha dos Orcs</a>
     <a href="/index.php/Batalha_dos_Orcs" class="wiki-link"><img src="https://browiki.org/images/c/c3/Monster_OrcHer%C3%B3i.png" width="24" height="24" alt="">Batalha dos Orcs</a>
     <a href="/index.php/Torre_sem_Fim" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/6000.png" width="24" height="24" alt="">Torre sem Fim</a>
     <a href="/index.php/Torre_sem_Fim" class="wiki-link"><img src="https://browiki.org/images/5/5e/Monster_NaghtSieger.png" width="24" height="24" alt="">Torre sem Fim</a>
     <a href="/index.php/Thanatos_Corrompido" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/20514.png" width="24" height="24" alt="">Thanatos Corrompido</a>
     <a href="/index.php/Thanatos_Corrompido" class="wiki-link"><img src="https://browiki.org/images/6/69/Monster_BrokenThana.png" width="24" height="24" alt="">Thanatos Corrompido</a>
     <a href="/index.php/Memórias_de_Sarah" class="wiki-link"><img src="https://browiki.org/images/e/e2/Monster_SaraIrine.png" width="24" height="24" alt="">Memórias de Sarah</a>
     <a href="/index.php/Memórias_de_Sarah" class="wiki-link"><img src="https://browiki.org/images/e/e2/Monster_SaraIrine.png" width="24" height="24" alt="">Memórias de Sarah</a>
     <a href="/index.php/Palácio_das_Mágoas" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/6672.png" width="24" height="24" alt="">Palácio das Mágoas</a>
     <a href="/index.php/Palácio_das_Mágoas" class="wiki-link"><img src="https://game.ragnaplace.com/ro/bro/card/27184.webp" width="24" height="24" alt="">Palácio das Mágoas</a>
     <a href="/index.php/Torneio_de_Magia" class="wiki-link"><img src="https://browiki.org/images/f/f7/Monster_FenrisFenrir.png" width="24" height="24" alt="">Torneio de Magia</a>
     <a href="/index.php/Torneio_de_Magia" class="wiki-link"><img src="https://browiki.org/images/f/f7/Monster_FenrisFenrir.png" width="24" height="24" alt="">Torneio de Magia</a>
     <a href="/index.php/Invasão_ao_Aeroplano" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/400277.png" width="24" height="24" alt="">Invasão ao Aeroplano</a>
     <a href="/index.php/Invasão_ao_Aeroplano" class="wiki-link"><img src="https://browiki.org/images/b/bd/Monster_Capit%C3%A3oFerlock.png" width="24" height="24" alt="">Invasão ao Aeroplano</a>
    <a href="/index.php/Altar_do_Selo" class="wiki-link"><img src="https://browiki.org/images/1/10/Monster_Bafom%C3%A9.png" width="24" height="24" alt="">Altar do Selo</a>
    <a href="/index.php/Ninho_de_Nidhogg" class="wiki-link"><img src="https://browiki.org/images/3/3e/Monster_SombraNidhogg.png" width="24" height="24" alt="">Ninho de Nidhogg</a>
    <a href="/index.php/Caverna_do_Polvo" class="wiki-link"><img src="https://browiki.org/images/8/81/Monster_PolvoGigante.png" width="24" height="24" alt="">Caverna do Polvo</a>
    <a href="/index.php/Esgotos_de_Malangdo" class="wiki-link"><img src="https://browiki.org/images/e/e0/Monster_CelacantoE.png" width="24" height="24" alt="">Esgotos de Malangdo</a>
   </div>
   </div>
</div>


<!-- PVM & MUNDOS — full width, 4 colunas -->
  <div class="wiki-subhead">
<div class="wiki-block-full">
    <span class="wiki-subhead-dot"></span>
  <div class="wiki-block-title"><span class="wiki-block-title-text">PvM &amp; Mundos</span></div>
    <span class="wiki-subhead-text">PvM &amp; Mundos</span>
    <span class="wiki-subhead-count">11</span>
  </div>
   <div class="wiki-grid-4">
   <div class="wiki-grid-4">
     <a href="/index.php/Sistema_MVP" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/31488.png" width="24" height="24" alt="">Sistema MVP</a>
     <a href="/index.php/Sistema_MVP" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/31488.png" width="24" height="24" alt="">Sistema MVP</a>
    <a href="/index.php/Grupo_Edda" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/22508.png" width="24" height="24" alt="">Grupo Edda</a>
     <a href="/index.php/Monstros_Dimensionais" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/20562.png" width="24" height="24" alt="">Monstros Dimensionais</a>
     <a href="/index.php/Monstros_Dimensionais" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/7020.png" width="24" height="24" alt="">Monstros Dimensionais</a>
     <a href="/index.php/Guardião_dos_Destinos" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/6659.png" width="24" height="24" alt="">Guardião dos Destinos</a>
     <a href="/index.php/Guardião_dos_Destinos" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/6659.png" width="24" height="24" alt="">Guardião dos Destinos</a>
     <a href="/index.php/Dragão_Púrpura" class="wiki-link"><img src="https://browiki.org/images/6/67/Monster_Drag%C3%A3oP%C3%BArpura.png" width="24" height="24" alt="">Dragão Púrpura</a>
     <a href="/index.php/Dragão_Púrpura" class="wiki-link"><img src="https://browiki.org/images/6/67/Monster_Drag%C3%A3oP%C3%BArpura.png" width="24" height="24" alt="">Dragão Púrpura</a>
     <a href="/index.php/Mapas_Modificados" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/28527.png" width="24" height="24" alt="">Mapas Modificados</a>
     <a href="/index.php/Mapas_Modificados" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/28527.png" width="24" height="24" alt="">Mapas Modificados</a>
     <a href="/index.php/Fendas_Dimensionais" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/313932.png" width="24" height="24" alt="">Fendas Dimensionais</a>
     <a href="/index.php/Fenda_Dimensional" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/313932.png" width="24" height="24" alt="">Fenda Dimensional</a>
     <a href="/index.php/Experimento_Escarlate" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/6728.png" width="24" height="24" alt="">Experimento Escarlate</a>
     <a href="/index.php/Experimento_Escarlate" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/6728.png" width="24" height="24" alt="">Experimento Escarlate</a>
    <a href="/index.php/Geffenia" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/2644.png" width="24" height="24" alt="">Geffenia</a>
     <a href="/index.php/Zona_Morta" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/7642.png" width="24" height="24" alt="">Zona Morta</a>
     <a href="/index.php/Zona_Morta" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/7642.png" width="24" height="24" alt="">Zona Morta</a>
     <a href="/index.php/Bestiário" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/22653.png" width="24" height="24" alt="">Bestiário</a>
     <a href="/index.php/Bestiário" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/22653.png" width="24" height="24" alt="">Bestiário</a>
   </div>
   </div>
</div>
<!-- LINKS EXTERNOS -->
<div style="text-align:center;margin-bottom:16px;padding:12px 0;">
  <a href="https://discord.gg/7WZM2w5mTM" style="display:inline-flex;align-items:center;gap:6px;background:rgba(14,165,233,0.08);border:1px solid rgba(14,165,233,0.22);color:#0284C7;padding:6px 16px;border-radius:20px;font-size:12px;font-weight:600;text-decoration:none;margin:0 4px;">Discord</a>
  <a href="https://www.eddaworld.com.br" style="display:inline-flex;align-items:center;gap:6px;background:rgba(14,165,233,0.08);border:1px solid rgba(14,165,233,0.22);color:#0284C7;padding:6px 16px;border-radius:20px;font-size:12px;font-weight:600;text-decoration:none;margin:0 4px;">Site Oficial</a>
  <a href="/index.php/Regras" style="display:inline-flex;align-items:center;gap:6px;background:rgba(14,165,233,0.08);border:1px solid rgba(14,165,233,0.22);color:#0284C7;padding:6px 16px;border-radius:20px;font-size:12px;font-weight:600;text-decoration:none;margin:0 4px;">Regras</a>
  <a href="/index.php/Patch_Notes" style="display:inline-flex;align-items:center;gap:6px;background:rgba(14,165,233,0.08);border:1px solid rgba(14,165,233,0.22);color:#0284C7;padding:6px 16px;border-radius:20px;font-size:12px;font-weight:600;text-decoration:none;margin:0 4px;">Patch Notes</a>
</div>
</div>


<!-- RODAPÉ EDDA -->
<!-- RODAPÉ EDDA -->
<div class="edda-banner" style="margin-bottom:0;">
<div class="edda-banner" style="margin-top:16px;margin-bottom:0;">
   <img src="https://static.divine-pride.net/images/items/item/19948.png" width="30" height="30" style="image-rendering:pixelated;flex-shrink:0;" alt="">
   <img src="https://static.divine-pride.net/images/items/item/19948.png" width="30" height="30" style="image-rendering:pixelated;flex-shrink:0;" alt="">
   <div>
   <div>
     <div class="edda-banner-title">Edda World está chegando</div>
     <div class="edda-banner-title">Edda World — o mundo é vivo</div>
     <div class="edda-banner-sub">O mundo é vivo, tudo acontece por aqui — fendas dimensionais, mvps globais e muito mais!</div>
     <div class="edda-banner-sub">Tudo acontece por aqui — fendas dimensionais, MVPs globais e muito mais!</div>
  </div>
  <div class="edda-banner-tags">
    <div class="edda-banner-tag">Beta 01/05</div>
    <div class="edda-banner-tag">Launch 08/05</div>
   </div>
   </div>
</div>
</div>


</html>
</html>

Edição atual tal como às 18h02min de 15 de julho de 2026


Mecânica
Gold Times
Emulador
Pre-Renewal
Rates
10x / 10x / 2x
Episódio
Encontro com o Desconhecido +
Nível Máx.
99 / 70
Anti-Cheat
Gepard 3
Primeiros passos do jogador novo
Onde ganhar, gastar e trocar recursos
Combate competitivo e conteúdo sazonal
Forje, encante e evolua seu equipamento
Instâncias estruturadas e o mundo aberto de Edda
Edda World — o mundo é vivo
Tudo acontece por aqui — fendas dimensionais, MVPs globais e muito mais!