body {
  margin: 0;
  padding: 0;
  font-family: "Courier New", monospace;
  color: #00ff41;
  background:
    linear-gradient(rgba(0,0,0,0.92), rgba(0,0,0,0.92)),
    url("../images/matrix.gif");
  background-size: cover;
  background-attachment: fixed;
}

/* Main container */
.wrapper {
  width: 95%;
  max-width: 1150px;
  margin: 40px auto;
  border: 2px solid #00ff41;
  box-shadow: 0 0 30px #00ff41;
  background-color: rgba(0,0,0,0.85);
}

/* Header */
header {
  text-align: center;
  padding: 25px;
  border-bottom: 1px solid #00ff41;
}

header h1 {
  margin: 0;
  text-shadow: 0 0 10px #00ff41;
}

/* Nav */
nav {
  text-align: center;
  padding: 10px;
  border-bottom: 1px solid #00ff41;
}

nav a {
  color: #00ff41;
  margin: 0 15px;
  text-decoration: none;
  font-size: 14px;
}

nav a:hover {
  color: white;
}

/* Layout */
.content {
  display: flex;
}

.sidebar {
  width: 28%;
  border-right: 1px solid #00ff41;
  padding: 20px;
}

.main {
  width: 72%;
  padding: 20px;
}

/* Widget Boxes */
.box {
  border: 1px solid #00ff41;
  margin-bottom: 25px;
  box-shadow: 0 0 12px #00ff41;
}

.box-header {
  background-color: #001a00;
  padding: 6px 10px;
  border-bottom: 1px solid #00ff41;
  font-weight: bold;
  font-size: 13px;
}

.box-content {
  padding: 15px;
  font-size: 14px;
}

/* Footer */
footer {
  text-align: center;
  padding: 15px;
  border-top: 1px solid #00ff41;
  font-size: 12px;
}

/* Buttons */
button {
  background: black;
  color: #00ff41;
  border: 1px solid #00ff41;
  padding: 6px 10px;
  font-family: monospace;
  cursor: pointer;
}

button:hover {
  background: #003300;
}

/* Projects Page Centered Globe */
.center-stage {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 65vh;
  text-align: center;
}

.center-stage img {
  width: 900px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 0 20px #00ff41);
}