/* ===============================
   RESET / BASE
================================= */
* { margin: 0; padding: 0; box-sizing: border-box; }

body{
  font-family: 'Inter', Arial, sans-serif;
  background: radial-gradient(circle at top, #0d1b2a, #000814 60%);
  color: #e0e0e0;
  line-height: 1.6;
}

/* ===============================
   MENU
================================= */
/* ===============================
   MENU (AZUL PADRÃO ANTIGO)
================================= */
.main-menu{
    background: linear-gradient(90deg, #0f6eaa, #0a3f63);
    padding: 12px 0;
    text-align: center;
    border-bottom: 2px solid #072c44;
    backdrop-filter: none; /* remove blur */
}

.main-menu a{
    color: #fff;
    margin: 0 18px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px;
    position: relative;
    transition: .2s;
}

.main-menu a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:#ffd700;
    transition:.3s;
}

.main-menu a:hover::after{
    width:100%;
}


/* ===============================
   BANNER (MAIS ALTO / SEM CORTAR)
================================= */
.banner-wyd{
    width: 100%;
    height: 420px;                 /* aumentei (antes 300) */
    background: url("imagens/banner_wyd.jpg") center top no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid #0f6eaa;
}

.banner-overlay{
    position:absolute;
    inset:0;
    background: rgba(0,0,0,0.55);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding: 0 16px;
}

.banner-overlay h1{
    font-size: 54px;
    color:#0f6eaa;
    letter-spacing: 5px;
    text-shadow: 0 0 20px rgba(15,110,170,0.7);
}

.banner-overlay p{
    margin-top: 8px;
    font-size: 18px;
    color:#fff;
}

/* Responsivo */
@media (max-width: 900px){
    .banner-wyd{ height: 360px; }
    .banner-overlay h1{ font-size: 36px; letter-spacing: 3px; }
}


/* ===============================
   LAYOUT HOME (2 COLUNAS)
================================= */
.page-wrap{
  width: 93%;
  max-width: 1200px;
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: 1.55fr 0.85fr;
  gap: 18px;
  align-items: start;
}

@media (max-width: 980px){
  .page-wrap{ grid-template-columns: 1fr; }
  .banner-overlay h1{ font-size: 34px; letter-spacing: 4px; }
}

/* ===============================
   CARDS BASE
================================= */
.block-card{
  background: rgba(10, 20, 35, 0.85);
  border: 1px solid rgba(0, 140, 255, 0.16);
  border-radius: 14px;
  box-shadow: 0 0 26px rgba(0, 140, 255, 0.10);
  overflow: hidden;
}

.block-head{
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0, 140, 255, 0.12);
  background: rgba(0, 140, 255, 0.06);
}

.block-head h2{
  font-size: 15px;
  color: #00aaff;
  letter-spacing: 1px;
  margin: 0;
}

.block-body{ padding: 14px 16px 16px; }

.muted{
  color: #9aa7b3;
  font-size: 13px;
}

/* ===============================
   STATUS
================================= */
.status-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}

.status-pill{
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1px;
  border: 1px solid rgba(0, 140, 255, 0.15);
  background: rgba(0,0,0,0.35);
}

.status-pill.on{ color:#00ff88; box-shadow: 0 0 18px rgba(0,255,136,0.12); }
.status-pill.off{ color:#ff4444; box-shadow: 0 0 18px rgba(255,68,68,0.12); }

/* ===============================
   NOTÍCIAS (lista bonita)
================================= */
.news-list .news-item{
  padding: 18px 18px;
  border: 1px solid rgba(0, 140, 255, 0.10);
  border-radius: 12px;
  background: rgba(0, 20, 40, 0.35);
  margin-bottom: 14px;
  transition: all 0.25s ease;
  cursor: pointer;
}

.news-list .news-item:last-child{
  margin-bottom: 0;
}

.news-item h3{
  font-size: 16px;
  margin: 0 0 8px;
  color: #e9f6ff;
  transition: 0.3s;
}
.news-list .news-item:hover h3{
  color: #00c3ff;
  text-shadow: 0 0 8px rgba(0,170,255,0.6);
}
.news-item p{
  color: #c7d3dd;
  font-size: 14px;
  line-height: 1.5;
}

.news-item small{
  display:block;
  margin-top: 10px;
  color: #8da1b3;
  font-size: 12px;
}
/* ✨ EFEITO NEON AZUL */
.news-list .news-item:hover{
  border: 1px solid #00aaff;
  box-shadow: 
      0 0 12px rgba(0, 170, 255, 0.4),
      0 0 25px rgba(0, 170, 255, 0.2);
  transform: translateY(-3px);
}

/* ===============================
   TOP1
================================= */
.top1-card{
  border: 1px solid rgba(255,215,0,0.22);
  box-shadow: 0 0 30px rgba(255,215,0,0.08), 0 0 18px rgba(0,140,255,0.10);
}

.top1-headline{
  display:flex;
  align-items:center;
  gap: 10px;
}

.top1-medal{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  background: rgba(255,215,0,0.10);
  border: 1px solid rgba(255,215,0,0.25);
  font-size: 18px;
}

.top1-name{
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  letter-spacing: .4px;
}

.top1-sub{
  font-size: 13px;
  color: #a7b6c3;
  margin-top: 3px;
}

.top1-grid{
  margin-top: 12px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

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

.top1-box{
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0, 140, 255, 0.12);
  background: rgba(0,0,0,0.25);
}

.top1-box span{
  display:block;
  font-size: 12px;
  color: #9aa7b3;
  margin-bottom: 4px;
}

.top1-box strong{
  color: #e9f6ff;
  font-size: 13px;
}
.competitive-card{border-color:rgba(0,170,255,.28)}
.competitive-list{display:grid;gap:11px}
.competitive-row{display:grid;grid-template-columns:46px 1fr auto;align-items:center;gap:12px;padding:13px;border:1px solid rgba(0,140,255,.17);border-radius:12px;background:rgba(0,0,0,.25);color:#fff;text-decoration:none;transition:.22s ease}
.competitive-row:hover{transform:translateY(-1px);border-color:rgba(0,170,255,.68);box-shadow:0 0 18px rgba(0,170,255,.14)}
.competitive-icon{display:grid;place-items:center;width:42px;height:42px;border-radius:12px;background:rgba(0,170,255,.12);font-size:20px}
.competitive-player{display:grid;gap:3px;min-width:0}
.competitive-player small{color:#00aaff;font-weight:700;letter-spacing:.3px}
.competitive-player strong{overflow:hidden;color:#fff;font-size:15px;letter-spacing:.4px;text-overflow:ellipsis;white-space:nowrap}
.competitive-player em{color:#91a6b7;font-size:12px;font-style:normal}
.competitive-position{display:grid;place-items:center;width:36px;height:36px;border:1px solid rgba(255,215,0,.28);border-radius:50%;background:rgba(255,215,0,.08);color:#ffe16b;font-weight:900}
.competitive-row.arena .competitive-icon{background:rgba(155,89,255,.15)}
@media(max-width:480px){.competitive-row{grid-template-columns:40px 1fr auto;padding:10px;gap:9px}.competitive-icon{width:38px;height:38px}.competitive-position{width:32px;height:32px}.competitive-player em{font-size:11px}}
.class-icon{
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(0, 170, 255, 0.6));
}
/* ===== MENU (volta o azul antigo) ===== */
.main-menu{
  background: #0f6eaa;
  padding: 15px 0;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.25);
  backdrop-filter: none;
}

.main-menu a{
  color: #fff;
  text-decoration: none;
  margin: 0 20px;
  font-weight: 600;
  letter-spacing: .5px;
  font-family: 'Orbitron', sans-serif;
  transition: .25s;
}

.main-menu a:hover{
  color: #e9f6ff;
  text-shadow: 0 0 14px rgba(0,170,255,0.65);
}

/* ===== BANNER mais alto (não cortar) ===== */
.banner-wyd--tall{
  height: 400px;
}

/* ===== EFEITO BORDA AZUL NEON NO HOVER (cards/notícias/tabelas) ===== */
.block-card,
.news-item,
.rank-row{
  transition: box-shadow .25s, border-color .25s, transform .25s;
}

.block-card:hover,
.news-item:hover{
  border-color: rgba(0,170,255,0.75);
  box-shadow: 0 0 18px rgba(0,170,255,0.25), 0 0 40px rgba(0,170,255,0.12);
  transform: translateY(-1px);
}

/* ===== Ranking table ===== */
.rank-table-wrap{
  overflow-x: auto;
}

.rank-table{
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.rank-table thead th{
  text-align: left;
  padding: 14px 14px;
  font-family: 'Orbitron', sans-serif;
  color: #9bdcff;
  font-weight: 700;
  letter-spacing: .6px;
  border-bottom: 1px solid rgba(0, 140, 255, 0.18);
  background: rgba(0,0,0,0.20);
}

.rank-table tbody td{
  padding: 14px 14px;
  border-bottom: 1px solid rgba(0, 140, 255, 0.10);
  color: #e9f6ff;
  vertical-align: middle;
}

.rank-row:hover{
  background: rgba(0,170,255,0.06);
  box-shadow: inset 0 0 0 1px rgba(0,170,255,0.55);
}

.col-pos{ width: 90px; }
.col-class{ width: 150px; }
.col-level, .col-evo, .col-capa{ width: 90px; }
.col-mark{ width: 90px; }

.rank-num{
  font-weight: 800;
  margin-left: 6px;
}

.medal{ display:inline-block; margin-right: 6px; }

.class-cell{
  display: flex;
  align-items: center;
  gap: 10px;
}

.class-ico{
  width: 22px;
  height: 22px;
  image-rendering: auto;
}

.class-txt{
  color: #cfe9ff;
  font-weight: 600;
}

.guildmark{
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(0, 140, 255, 0.20);
  background: #0b0b0b;
  object-fit: cover;
}
.evo-icon{
    width: 28px;
    height: 28px;
    object-fit: contain;
    vertical-align: middle;
    filter: drop-shadow(0 0 4px rgba(0,170,255,0.5));
}


/* ===============================
   RODAPÉ
================================= */
.site-footer{
  background: rgba(0,0,0,0.85);
  border-top: 1px solid rgba(0, 140, 255, 0.20);
  text-align:center;
  padding: 16px;
  margin-top: 28px;
  color: #8da1b3;
  font-size: 13px;
}
/* ===== MENU AZUL (PADRÃO ANTIGO) ===== */
.main-menu{
  background: #0f6eaa !important;
  border-bottom: 1px solid rgba(0,0,0,.25);
  padding: 16px 0;
  text-align: center;
}
.main-menu a{
  color:#fff !important;
  text-decoration:none;
  margin: 0 18px;
  font-weight: 600;
  letter-spacing: .3px;
  display:inline-block;
  padding: 8px 10px;
  border-radius: 10px;
  transition: .25s ease;
}
.main-menu a:hover{
  box-shadow: 0 0 0 1px rgba(0,170,255,.85), 0 0 18px rgba(0,170,255,.35);
  background: rgba(0,0,0,.18);
}

/* ===== BANNER MAIS ALTO ===== */
.banner-wyd{
  height: 510px !important; /* aumenta aqui */
  /* Mantém a logo WYD Liberty visível e centralizada no recorte do cover. */
  background-position: center 20% !important;
  background-size: cover !important;
}
.banner-overlay{
  width: 110%;
  text-align:center;
}

@media (max-width: 900px){
  .banner-wyd{
    height: clamp(330px, 55vw, 510px) !important;
    background-position: center 24% !important;
  }
}

@media (max-width: 560px){
  .banner-wyd{
    height: 330px !important;
    background-position: center top !important;
  }
}

/* ===== EFEITO NEON NO HOVER (cards e notícias) ===== */
.block-card, .news-item{
  transition: box-shadow .25s ease, border-color .25s ease, transform .25s ease;
}
.block-card:hover, .news-item:hover{
  border-color: rgba(0,170,255,.55);
  box-shadow: 0 0 0 1px rgba(0,170,255,.85), 0 0 28px rgba(0,170,255,.22);
  transform: translateY(-1px);
}

/* ===== LISTA DE NOTÍCIAS (se estiver usando .news-list/.news-item) ===== */
.news-list .news-item{
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0, 140, 255, 0.10);
}
.news-list .news-item:last-child{ border-bottom: none; }

/* ===== RANKING TABLE ===== */
.rank-wrap{
  width: 92%;
  max-width: 1200px;
  margin: 30px auto;
}
.rank-card{
  background: rgba(10, 20, 35, 0.55);
  border: 1px solid rgba(0,170,255,.18);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(0,170,255,.12);
}
.rank-head{
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0,170,255,.18);
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.rank-head h2{
  color:#cfefff;
  font-size: 16px;
  margin:0;
  letter-spacing:.6px;
}
.rank-table{
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.rank-table th, .rank-table td{
  padding: 12px 10px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: 14px;
  color:#e9f6ff;
}
.rank-table th{
  color:#8fd7ff;
  font-weight: 700;
  font-size: 13px;
}
.rank-table tr:hover td{
  background: rgba(0,170,255,.06);
}
.rank-col-pos{ width: 70px; }
.rank-col-player{ width: 260px; }
.rank-col-class{ width: 90px; text-align:center; }
.rank-col-level{ width: 90px; text-align:center; }
.rank-col-evo{ width: 90px; text-align:center; }
.rank-col-capa{ width: 90px; text-align:center; }
.rank-col-guild{ width: 220px; }
.rank-col-mark{ width: 90px; text-align:center; }

.rank-icon{
  width: 26px;
  height: 26px;
  vertical-align: middle;
}
.rank-mark{
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.25);
  object-fit: cover;
}
.badge-top{
  font-weight: 900;
}
.badge-1{ color: #ffd700; }
.badge-2{ color: #c0c0c0; }
.badge-3{ color: #cd7f32; }



/* ===== PAINEL ADMIN DOWNLOAD ===== */
.input{
  width: 100%;
  padding: 12px;
  margin-top: 8px;
  border: 1px solid #1c1c1c;
  border-radius: 10px;
  background: rgba(0,0,0,0.35);
  color: #e9f6ff;
}
.input:focus{
  outline: none;
  border-color: rgba(0, 140, 255, 0.8);
  box-shadow: 0 0 18px rgba(0, 140, 255, 0.18);
}
/* =========================
   DOWNLOAD PAGE
========================= */
.block-body{
  padding: 16px 18px 18px;
}

.download-body{
  display: grid;
  gap: 14px;
}

.download-desc{
  color: #c7d3dd;
  font-size: 14px;
  line-height: 1.6;
}

.download-actions{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 980px){
  .download-actions{ grid-template-columns: 1fr; }
}

.download-btn{
  text-decoration: none;
  border-radius: 14px;
  padding: 14px 14px;
  border: 1px solid rgba(0, 140, 255, 0.15);
  background: rgba(0,0,0,0.35);
  display: grid;
  gap: 4px;
  transition: .25s;
}

.download-btn-title{
  color: #e9f6ff;
  font-weight: 800;
  letter-spacing: .3px;
}

.download-btn-sub{
  color: #8da1b3;
  font-size: 12px;
}

.download-btn:hover{
  border-color: rgba(0, 170, 255, 0.85);
  box-shadow: 0 0 22px rgba(0, 170, 255, 0.25);
  transform: translateY(-1px);
}

.download-stats{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.stat{
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0, 140, 255, 0.10);
  background: rgba(0,0,0,0.28);
}

.stat span{
  display:block;
  color:#8da1b3;
  font-size:12px;
  margin-bottom: 4px;
}

.stat strong{
  color:#e9f6ff;
  font-size: 14px;
}

/* lista dicas */
.download-tips{
  margin: 0;
  padding-left: 18px;
  color: #c7d3dd;
  line-height: 1.7;
  font-size: 14px;
}

/* =========================
   NEON HOVER (reaproveitar)
========================= */
.hover-neon{
  transition: .25s;
  border-radius: 12px;
}

.hover-neon:hover{
  border: 1px solid rgba(0, 170, 255, 0.85);
  box-shadow: 0 0 22px rgba(0, 170, 255, 0.20);
}

/* =========================
   REDES SOCIAIS — HOME
========================= */
.social-body{
  padding-top: 14px;
}

.social-intro{
  margin: 0 0 12px;
  color: #8099ac;
  font-size: 12px;
  line-height: 1.45;
}

.social-links{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.social-link{
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 66px;
  padding: 10px 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}

.social-facebook{
  background: linear-gradient(135deg, #1877f2, #0b55b8);
}

.social-whatsapp{
  background: linear-gradient(135deg, #27d367, #0aa448);
}

.social-link:hover{
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.social-facebook:hover{
  box-shadow: 0 8px 20px rgba(24,119,242,.28);
}

.social-whatsapp:hover{
  box-shadow: 0 8px 20px rgba(37,211,102,.24);
}

.social-icon{
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
}

.social-icon svg{
  width: 22px;
  height: 22px;
  fill: #fff;
}

.social-copy{
  display: grid;
  min-width: 0;
  gap: 5px;
}

.social-copy strong,
.social-copy small{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.social-copy strong{
  font-size: 12px;
  font-weight: 800;
}

.social-copy small{
  color: rgba(255,255,255,.82);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .35px;
  text-transform: uppercase;
}

.social-copy small b{
  font-size: 13px;
}

@media (max-width: 560px){
  .social-links{
    grid-template-columns: 1fr;
  }
}
/* DOWNLOAD MODERNO */
.download-body{
    padding: 25px;
}

.download-desc{
    margin-bottom: 20px;
    color: #bcd3e6;
}

.download-buttons-modern{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 25px;
}

.btn-download{
    padding: 20px;
    border-radius: 14px;
    text-align: center;
    font-weight: 700;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: .3s;
    border: 1px solid rgba(0,140,255,0.2);
    background: linear-gradient(180deg,#0d1b2a,#081018);
    color: #fff;
}

.btn-download span{
    font-size: 12px;
    color: #8da1b3;
}

.btn-download:hover{
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(0,140,255,0.3);
    border: 1px solid #00aaff;
}

.btn-download.google:hover{
    box-shadow: 0 0 30px rgba(66,133,244,0.4);
}

.btn-download.mega:hover{
    box-shadow: 0 0 30px rgba(255,0,0,0.4);
}

.download-info-modern{
    display: flex;
    gap: 20px;
    color: #8da1b3;
}
