:root {
  --bg: #0a0000;
  --page-bg: #140000;

  --accent: #8b0000;
  --accent-light: #c00000;

  --text: #e6dcdc;
  --border: #3b0000;

  --font-main: "VT323", monospace;
 --title-font: "Cinzel", serif;
}


* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-title);
  font-size: 18px;
}

a {
  color: var(--accent-light);
  text-decoration: none;
}

a:hover {
  text-shadow: 0 0 5px var(--accent-light);
}

#page {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--page-bg);
  border: 2px solid var(--border);
}

/* HEADER */
#header {
  text-align: center;
  padding: 20px;
  border-bottom: 2px solid var(--border);
}

#header h1 {
 font-family: var(--main-font);
  font-size: 44px;
  margin: 0;
   color: var(--accent-light);
}

.subtitle {
  opacity: 0.8;
}

/* WEBRING NAV */
#webring-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 10px;
  border-bottom: 2px solid var(--border);
  background: #0f0000;
}

/* BOXES */
.box {
  border: 2px solid var(--border);
  font-family: var(--font-title);
  
  margin: 15px;
  padding: 15px;
  background: #0e0000;
  
}

.box h2 {
 font-family: var(--font-title);
  margin-top: 0;
  color: var(--accent-light);
}

.small {
  font-size: 16px;
  opacity: 0.8;
}

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  padding: 15px;
}

.art-box {
  border: 2px solid var(--border);
  background: #0b0000;
  padding: 10px;
}

.art-box img {
  width: 100%;
  display: block;
  border: 1px solid var(--border);
}

.art-info h3 {
  margin: 8px 0 0 0;
  font-size: 22px;
}

.tags {
  font-size: 16px;
  opacity: 0.7;
}

/* RING LIST */
.ring-list {
  list-style: none;
  padding-left: 0;
}

.ring-list li {
  margin-bottom: 6px;
}

/* FOOTER */
#footer {
  text-align: center;
  padding: 15px;
  border-top: 2px solid var(--border);
  font-size: 16px;
  opacity: 0.85;
}

