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

body {
  font-family: 'Quicksand', sans-serif;
  background: #0b0b0b;
  color: #fff;
  overflow-x: hidden;
}

/* HERO */
.site-wrapper {
  display: table;
  width: 100%;
  height: 100vh;
  background: linear-gradient(to bottom, #000000cc, #000000ee),
              url('../images/bg.jpg') center/cover no-repeat;
}
    
.site-wrapper-inner {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  padding: 20px;
}   

/* LOGO AJUSTADO */
.l2-logo {
  width: 90%;
  max-width: 400px; /* AQUI ESTÁ MAIOR */
  height: auto;
  margin-bottom: 10px; /* reduzido para não ficar muito alto */
  filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.4));
  transition: 0.3s ease-in-out;
}

.l2-logo:hover {
  transform: scale(1.03);
  filter: drop-shadow(0 0 25px rgba(255, 0, 0, 0.6));
}

.cover-heading {
  font-size: 32px;
  margin-bottom: 25px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* TIMER */
#timer {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 40px;
}

#timer div {
  background: #111;
  padding: 20px 25px;
  border-radius: 12px;
  min-width: 90px;
  box-shadow: 0 0 15px rgba(255,255,255,0.05);
}

#timer span {
  font-size: 32px;
  font-weight: 700;
  display: block;
}

#timer small {
  font-size: 13px;
  color: #aaa;
}

/* BOTÕES */
.action-buttons {
  margin-bottom: 30px;
}

.btn-default {
  display: inline-block;
  padding: 12px 25px;
  margin: 10px;
  border-radius: 8px;
  text-decoration: none;
  background: #222;
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
}

.btn-default:hover {
  background: #444;
  transform: translateY(-2px);
}

.discord-btn {
  background: #5865F2;
}

.discord-btn:hover {
  background: #4752c4;
}

.cover-copy {
  margin-top: 15px;
  font-size: 15px;
  color: #bbb;
}

/* SEÇÃO INFORMAÇÕES */
.server-info {
  background: #0d0d0d;
  padding: 70px 20px;
  text-align: center;
}

.server-info h2 {
  font-size: 28px;
  margin-bottom: 40px;
}

.info-container {
  max-width: 1100px;
  margin: auto;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.info-box {
  background: #111;
  padding: 25px;
  border-radius: 12px;
  transition: 0.3s;
  box-shadow: 0 0 15px rgba(255,255,255,0.05);
}

.info-box:hover {
  transform: translateY(-5px);
  background: #161616;
}

.info-box h3 {
  margin-bottom: 15px;
  font-size: 18px;
}

.info-box p {
  font-size: 14px;
  color: #bbb;
  line-height: 1.6;
}

/* FOOTER */
.mastfoot {
  text-align: center;
  padding: 20px;
  background: #080808;
  font-size: 13px;
  color: #666;
}