/* 
   OFFLINE SOECIETY // THE 90S PORTAL
   AESTHETIC: WEB 1.0 / GEOCITIES UNDERGROUND
*/

:root {
  --bg: #000000;
  --text: #00FF00; /* Matrix/Hacker Green */
  --link: #0000FF;
  --link-v: #800080;
  --border-light: #dfdfdf;
  --border-dark: #808080;
  --win-bg: #c0c0c0;
}

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

body {
  background-color: var(--bg);
  color: #FFFFFF;
  font-family: "Times New Roman", Times, serif;
  background-image: url('../assets/dreamcore_xp.jpg'); /* Dreamcore XP Background */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* Vertical and horizontal centering */
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  position: relative;
}

.construction-bar {
  width: 100%;
  height: 20px;
  background: repeating-linear-gradient(45deg, #000, #000 20px, #ffff00 20px, #ffff00 40px);
  position: fixed;
  left: 0;
  z-index: 100;
}

.bar-top {
  top: 0;
  border-bottom: 2px solid #000;
}

.bar-bottom {
  bottom: 0;
  border-top: 2px solid #000;
}

/* 90s Windows-style Box */
.window {
  background-color: var(--win-bg);
  border-top: 2px solid var(--border-light);
  border-left: 2px solid var(--border-light);
  border-right: 2px solid var(--border-dark);
  border-bottom: 2px solid var(--border-dark);
  padding: 2px;
  width: 90%;
  max-width: 600px;
  box-shadow: 10px 10px 0px rgba(0,0,0,0.5);
  z-index: 10;
  margin: 0; /* Clear any margins */
}

.window-title {
  background: linear-gradient(90deg, #000080, #1084d0);
  color: white;
  padding: 3px 10px;
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.window-body {
  padding: 20px;
  color: #000;
  text-align: center;
}

.headline {
  font-size: 2.5rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 1rem;
  text-decoration: underline;
}

.marquee-container {
  background: #000;
  color: var(--text);
  padding: 5px;
  font-family: 'Courier New', Courier, monospace;
  margin: 15px 0;
  border: 2px inset #fff;
}

/* 90s HR */
hr {
  border: 0;
  height: 2px;
  background: #808080;
  border-bottom: 1px solid #fff;
  margin: 20px 0;
}

.visitor-counter {
  background: #000;
  color: #FF0000;
  padding: 5px 10px;
  font-family: 'Courier New', Courier, monospace;
  border: 1px solid #555;
  display: inline-block;
  margin-top: 10px;
}

.links-table {
  width: 100%;
  margin-top: 20px;
  border-collapse: collapse;
}

.links-table td {
  border: 1px solid #808080;
  padding: 10px;
  font-size: 0.9rem;
}

a {
  color: var(--link);
  text-decoration: underline;
}

a:visited {
  color: var(--link-v);
}

.badge-row {
  margin-top: 30px;
  display: flex;
  gap: 10px;
  justify-content: center;
}

.under-construction {
  margin: 20px 0;
}
