/* ===============================
   RISE OF GLORY — Steel & Frost Theme
   Main Layout (No Navbar)
   =============================== */

/* === GLOBAL === */
body {
  margin: 0;
  font-family: 'Cinzel', serif;
  background: #0b1015 url('../body_bg.png') center/cover fixed no-repeat;
  color: #dbe9f4;
  overflow-x: hidden;
}
.container {
  width: 1250px;
  margin: 0 auto;
  text-align: center;
}

/* === HEADER === */
.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 35px 0 0;
}
.logo {
  width: 340px;
  height: auto;
  overflow: visible;
}
.logo img {
  width: 100%;
  transform: scale(1.75);
  transform-origin: left center;
  filter: drop-shadow(0 0 25px rgba(150, 200, 255, 0.45));
  transition: 0.3s;
}
.logo img:hover {
  transform: scale(1.03);
  filter: drop-shadow(0 0 40px rgba(180, 230, 255, 0.75));
}

/* === STATUS / DISCORD === */
.status-discord {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-end;
}
.panel {
  background: rgba(15, 25, 35, 0.85);
  border: 1px solid rgba(150, 200, 255, 0.25);
  border-radius: 12px;
  padding: 12px 18px;
  width: 260px;
  text-align: left;
  box-shadow: 0 0 20px rgba(120, 170, 255, 0.15);
  backdrop-filter: blur(8px);
  transition: 0.3s;
}
.panel:hover {
  box-shadow: 0 0 25px rgba(120, 190, 255, 0.3);
}
.panel h3 {
  color: #9cd4ff;
  font-size: 15px;
  margin-bottom: 6px;
  border-bottom: 1px solid rgba(150, 200, 255, 0.25);
  padding-bottom: 3px;
  text-shadow: 0 0 8px rgba(130, 190, 255, 0.7);
}
.status.online {
  color: #66ffb7;
  text-shadow: 0 0 8px rgba(120, 255, 200, 0.5);
}
.status.offline {
  color: #ff6a6a;
  text-shadow: 0 0 8px rgba(255, 80, 80, 0.6);
}

/* === BUTTONS === */
.btns {
  margin: 20px 0 25px;
}
.btns a {
  display: inline-block;
  background: linear-gradient(to bottom, #4975a6, #1e2d3b);
  border: 1px solid #8bb8e6;
  padding: 12px 50px;
  color: #e9f3ff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  margin: 0 15px;
  letter-spacing: 0.5px;
  box-shadow: 0 0 8px rgba(120, 170, 255, 0.25);
  transition: 0.3s;
}
.btns a:hover {
  background: linear-gradient(to bottom, #6aa9e6, #223444);
  box-shadow: 0 0 18px rgba(150, 210, 255, 0.55);
  transform: translateY(-2px);
}

/* === NEWS SECTION === */
.news-section {
  background: rgba(15, 25, 35, 0.8);
  border: 1px solid rgba(150, 200, 255, 0.25);
  border-radius: 14px;
  box-shadow: 0 0 25px rgba(120, 170, 255, 0.25);
  padding: 35px 60px;
  margin-top: 15px;
  max-width: 1700px;
  margin-left: auto;
  margin-right: auto;
  backdrop-filter: blur(10px);
}
.news-section h2 {
  color: #a8d5ff;
  text-shadow: 0 0 8px rgba(140, 210, 255, 0.7);
  letter-spacing: 1px;
  margin-bottom: 15px;
}
.news-columns {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  text-align: left;
}
.news-col { width: 48%; }
.news-item {
  border-bottom: 1px solid rgba(150, 200, 255, 0.1);
  padding-bottom: 6px;
  margin-bottom: 25px;
}
.news-item span {
  color: #dcecff;
  font-weight: 600;
  text-shadow: 0 0 5px rgba(150, 220, 255, 0.4);
}
.news-item small { color: #9ab0c9; }

/* === FOOTER === */
.footer {
  text-align: center;
  padding: 15px;
  color: #9ab7d6;
  font-size: 14px;
  margin-top: 25px;
  border-top: 1px solid rgba(150, 200, 255, 0.15);
}

/* === VIEWPORT FIX === */
@media (min-height: 900px) {
  body { overflow-y: auto; }
}

/* === DISCORD BUTTON === */
.discord-btn {
  display: inline-block;
  background: linear-gradient(135deg, #4975a6, #1e2d3b);
  border: 1px solid #8bb8e6;
  padding: 8px 18px;
  color: #e9f3ff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-top: 10px;
  box-shadow: 0 0 10px rgba(120, 170, 255, 0.25);
  transition: 0.3s;
}
.discord-btn:hover {
  background: linear-gradient(135deg, #6aa9e6, #223444);
  box-shadow: 0 0 18px rgba(150, 210, 255, 0.55);
  transform: translateY(-2px);
}

/* === SCROLL FIX === */
html, body {
  height: auto;
  min-height: 100vh;
  overflow-y: auto !important;
}
.container {
  min-height: 100vh;
}
