/* basic reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
   background: url("bgillit.jpg");
  color: #A66D8F;
  font-family: "Verdana", "Tahoma", sans-serif;
  font-size: 13px;
}

a {
  color: #FF91D3;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* page container */
.page-wrap {
  width: 960px;
  margin: 20px auto;
  background: #FCF2F7;
  border: 2px solid #DBABC7;
  box-shadow: 0 0 10px #A66C8D;
}

/* header */
.site-header {
  position: relative;
  border-bottom: 2px solid #DBABC7;
  background: #FFE3F2;
}

.banner-img {
  width: 100%;
  display: block;
}

.site-title {
  position: absolute;
  bottom: 8px;
  left: 16px;
  font-family: "Times New Roman", serif;
  font-size: 32px;
  letter-spacing: 2px;
  text-shadow: 0 0 4px #000;
}

/* main layout */
.site-main {
  display: grid;
  grid-template-columns: 190px 1fr 220px;
  gap: 10px;
  padding: 10px;
}

/* left sidebar */
.sidebar-left {
  background: #FFE3F2;
  border: 1px solid #DBABC7;
  padding: 8px;
}

.nav-section + .nav-section {
  margin-top: 12px;
}

.nav-section h2 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
  border-bottom: 1px solid #A66D8F;
}

.nav-section ul {
  list-style: none;
  padding-left: 4px;
}

.nav-section li {
  margin: 2px 0;
}

/* center content */
.content {
  background: #FFE3F2;
  border: 1px solid #DBABC7;
  padding: 10px;
}

.welcome h2 {
  font-size: 16px;
  margin-bottom: 6px;
  text-transform: lowercase;
}

.welcome p {
  margin-bottom: 6px;
  line-height: 1.4;
}

.welcome-flex {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.welcome-img {
  width: 120px;
  height: auto;
  border: 1px solid #555;
}

/* fake hex grid (simple squares for now) */
.hex-grid {
  display: grid;
  grid-template-columns: repeat(3, 60px);
  gap: 6px;
}

.hex {
  width: 60px;
  height: 60px;
  background: #FFE3F2;
  border: 1px solid #666;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  text-transform: uppercase;
}

/* player box */
.player {
  margin-top: 14px;
}

.player h3 {
  font-size: 13px;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.player-box {
  border: 1px solid #DBABC7;
  background: #FFE3F2;
  padding: 6px;
  font-size: 11px;
}

/* right sidebar */
.sidebar-right {
  background: #FFE3F2;
  border: 1px solid #DBABC7;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-right h2 {
  font-size: 12px;
  text-transform: uppercase;
  border-bottom: 1px solid #FFE3F2;
  margin-bottom: 4px;
}

.chat-messages {
  font-size: 11px;
  line-height: 1.4;
}

.updates ul,
.lastfm ul {
  list-style: none;
  font-size: 11px;
}

.updates li,
.lastfm li {
  margin-bottom: 3px;
}

/* footer */
.site-footer {
  border-top: 2px solid #DBABC7;
  text-align: center;
  padding: 6px 0;
  font-size: 11px;
  background: #FFE3F2;
}
