:root {
  --main-bg: #d1d3d8;
  --sidebar-bg: #47484b;
  --card-bg: rgba(55,56,60,0.94);
  --card-border: #bbbbbb;
  --highlight: #f7f7f7;
  --text: #f6f6f6;
  --btn-about: linear-gradient(90deg, #eaeaea 60%, #bdbdbd 100%);
  --btn-games: linear-gradient(90deg, #e4e4e4 60%, #bbbbbb 100%);
  --btn-devlog: linear-gradient(90deg, #d7d7d7 60%, #9b9b9b 100%);
  --btn-posts: linear-gradient(90deg, #e6e6e6 60%, #b3b3b3 100%);
  --btn-links: linear-gradient(90deg, #dadada 60%, #afafaf 100%);
  --btn-contact: linear-gradient(90deg, #ededed 60%, #bdbdbd 100%);
  --news-bg: rgba(70,72,77,0.75);
  --glow: 0 0 24px #fff6, 0 2px 16px #bbb6;
}
body {
  background: var(--main-bg);
  color: var(--text);
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  font-size: 1.04rem;
}
a { color: #e0e0e0; text-decoration: underline; transition: color 0.17s;}
a:hover { color: #fff; }
.pagewrap {
  max-width: 1300px;
  margin: 2.5rem auto;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}
.col {
  flex: 1 1 0;
  min-width: 290px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.centercol {
  max-width: 460px;
  min-width: 320px;
}
.sidecol {
  max-width: 320px;
}
.card {
  background: var(--card-bg);
  border: 1.8px solid var(--card-border);
  border-radius: 15px;
  margin-bottom: 1rem;
  padding: 1.4rem 1.1rem;
  box-shadow: 0 8px 36px #fff3, 0 4px 18px #0003;
  color: var(--text);
  backdrop-filter: blur(8px) saturate(1.06);
  position: relative;
  overflow: hidden;
}
.card.center {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 1.2rem;
}
.profile-head {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.pfp {
  width: 64px; height: 64px; border-radius: 100%;
  background: #f5f5f511;
  border: 2.5px solid var(--highlight);
  display: block;
  box-shadow: 0 0 0 6px #fff2, 0 3px 18px #fff3;
}
.profilename {
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  color: #fafafa;
  text-shadow: var(--glow);
}
.profiledesc {
  color: #dadada;
  font-size: 0.97rem;
}
.info-title, .announcements-title, .section-title {
  background: rgba(255,255,255,0.14);
  padding: 0.5rem 0.7rem;
  border-radius: 13px 13px 0 0;
  font-weight: bold;
  letter-spacing: 0.07em;
  font-size: 1.12rem;
  margin-bottom: 0.6rem;
  text-align: center;
  color: #222;
  box-shadow: 0 2px 13px #fff1;
  border-bottom: 1.2px solid #eaeaea33;
  text-shadow: 0 2px 13px #fff7;
}
.info-content {
  margin-bottom: 1rem;
  color: #e1e1e1;
  font-size: 0.96rem;
}
.sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.navbtn {
  display: block;
  text-align: left;
  padding: 0.55rem 1.15rem;
  border-radius: 7px;
  font-weight: bold;
  letter-spacing: 0.06em;
  color: #111;
  font-size: 1.05rem;
  margin-bottom: 2px;
  text-decoration: none;
  transition: filter 0.14s, box-shadow 0.11s, transform 0.13s, color 0.18s;
  box-shadow: 0 2px 14px #fff1, 0 2px 10px #0001;
  border: none;
  outline: none;
  cursor: pointer;
  background: var(--btn-about);
  border-left: 5px solid #bcbcbc;
}
.navbtn.games { background: var(--btn-games);}
.navbtn.devlog { background: var(--btn-devlog);}
.navbtn.posts { background: var(--btn-posts);}
.navbtn.links { background: var(--btn-links);}
.navbtn.contact { background: var(--btn-contact);}
.navbtn:hover {
  filter: brightness(1.09) drop-shadow(0 2px 4px #fff8);
  transform: scale(1.045);
  color: #222;
}
.hostnote {
  color: #c7c7c7;
  font-size: 0.93rem;
  margin: 0.8rem 0 0.2rem 0;
  text-align: center;
  opacity: 0.8;
}
.card.announcements {
  padding: 1.2rem 1.2rem;
}
.announcements-title {
  margin-bottom: 0.7rem;
}
.announcement-img svg {
  width: 100%; max-width: 350px; border-radius: 13px; margin-bottom: 0.8rem;
  display: block;
  margin-left: auto; margin-right: auto;
  background: #c1c3c9;
  filter: grayscale(0.95) brightness(1.04) contrast(1.1);
  box-shadow: 0 6px 18px #fff2, 0 2px 8px #8883;
}
.announcement-title {
  text-align: center;
  font-size: 1.17rem;
  font-weight: bold;
  color: #f6f6f6;
  margin: 0.7rem 0 0.2rem 0;
  text-shadow: var(--glow);
  letter-spacing: 0.01em;
}
.announcement-text {
  text-align: center;
  font-size: 1.07rem;
  color: #f2f2f2;
  margin-bottom: 1.1rem;
  opacity: 0.88;
}
.announcement-card {
  background: linear-gradient(90deg, #888a91cc 60%, #a8a9adcc 100%);
  border-radius: 10px;
  display: flex;
  gap: 0.9rem;
  align-items: center;
  padding: 0.7rem 0.7rem;
  margin-top: 0.7rem;
  box-shadow: 0 2px 8px #fff5;
}
.announcement-card svg {
  width: 64px; height: 64px; border-radius: 11px;
  background: #bbb;
  display: block;
  box-shadow: 0 2px 7px #fff5;
  filter: grayscale(1) contrast(1.2);
}
.announcement-card div {
  font-size: 1.01rem;
  color: #fff;
}
.newsfeed {
  background: var(--news-bg);
  border-radius: 7px;
  padding: 0.8rem 0.8rem;
  font-size: 0.98rem;
  box-shadow: 0 2px 12px #fff3;
}
.newsitem {
  border-bottom: 1px solid #eee2;
  padding: 0.34em 0;
  opacity: 0.91;
}
.newsitem:last-child { border-bottom: none; }
.latestart-img svg {
  width: 100%;
  max-width: 250px;
  border-radius: 10px;
  margin: 0.1rem auto 0 auto;
  display: block;
  box-shadow: 0 2px 10px #fff2;
  background: #cfcfcf;
  filter: grayscale(1) brightness(1.1);
}
.sitefooter {
  color: #aaa;
  text-align: center;
  padding: 0.7rem 0 0.2rem 0;
  font-size: 0.93rem;
  opacity: 0.9;
}
.topnav {
  width: 100%;
  background: linear-gradient(90deg, #757684 80%, #8d8fa1 100%);
  display: flex;
  justify-content: center;
  gap: 1.3rem;
  border-radius: 13px 13px 24px 24px;
  margin: 0 auto 1.6rem auto;
  padding: 0.5rem 0;
  box-shadow: 0 4px 24px #fff5, 0 3px 13px #29293c24;
  position: sticky;
  top: 0;
  z-index: 10;
}
.topnav a {
  color: #f3f3f3;
  font-weight: bold;
  letter-spacing: 0.07em;
  padding: 0.7rem 2.1rem;
  border-radius: 15px;
  background: linear-gradient(90deg, #757684 80%, #8d8fa1 100%);
  font-size: 1.13rem;
  text-decoration: none;
  margin: 0 0.1rem;
  transition: background 0.18s, color 0.15s, filter 0.12s;
  box-shadow: 0 2px 8px #fff5;
}
.topnav a.active, .topnav a:hover {
  background: linear-gradient(90deg, #f7f7f7 75%, #c9c9cb 100%);
  color: #232323;
  filter: brightness(1.09);
  text-shadow: var(--glow);
}
@media (max-width: 1020px) {
  .pagewrap { flex-direction: column; align-items: center;}
  .col, .centercol, .sidecol { max-width: 98vw; min-width: 0;}
  .card.announcements, .card.center {max-width: 99vw;}
}s