/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Courier New', monospace;
  background-color: #0d0d0d;
  color: #f0f0f0;
  line-height: 1.6;
  padding: 20px;
}

/* Header */
header {
  text-align: center;
  margin-bottom: 40px;
}
.logo img {
  width: 120px;
}
.logo h1 {
  font-size: 2rem;
  color: #ff3333;
}
.tagline {
  font-style: italic;
  color: #999;
}

/* Navigation */
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}
nav a {
  color: #00aaff;
  text-decoration: none;
  font-weight: bold;
}
nav a:hover {
  text-decoration: underline;
}

/* Main Sections */
.intro {
  text-align: center;
  margin-bottom: 40px;
}
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.card {
  background-color: #1a1a1a;
  padding: 20px;
  border: 1px solid #333;
  border-radius: 8px;
}
.card h3 {
  color: #ff3333;
}
.card a {
  display: inline-block;
  margin-top: 10px;
  color: #00ffcc;
}

/* Footer */
footer {
  text-align: center;
  margin-top: 60px;
  font-size: 0.9rem;
  color: #666;
}

.container {
  max-width: 960px;       /* Comfortable width for desktop */
  margin: 0 auto;          /* Horizontally center */
  padding: 0 20px;         /* Breathing room on mobile */

}

/* new body adjustments */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
  border: 4px solid #ff3333;
  background-color: #000000;
  box-shadow: 0 0 10px #ff3333;
  border-radius: 12px;
}



.header-box {
  border: 4px double #ff3333;
  padding: 20px;
  background-color: #000000;
  box-shadow: 0 0 10px #ff3333, 0 0 20px #000 inset;
  border-radius: 12px;
  margin-bottom: 40px;
  text-align: center;
}


/* Optional: pixel-style border */
/*
.header-box::before {
  content: "";
  display: block;
  height: 8px;
  background: repeating-linear-gradient(
    90deg,
    #ff3333,
    #ff3333 8px,
    #000 8px,
    #000 16px
  );
  margin-bottom: 10px;
  border-radius: 4px;
}
*/

.logo-bar {
  height: 8px;
  margin-top: 12px;
  background: repeating-linear-gradient(
    90deg,
    #ff3333,
    #ff3333 8px,
    #000 8px,
    #000 16px
  );
  border-radius: 4px;
}


/* Logo and Title */
.logo h1 {
  font-size: 2.2rem;
  color: #ff3333;
  text-shadow: 0 0 5px #ff3333;
}

/* Navigation Links */
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}
nav a {
  color: #00ffff;
  background-color: #222;
  padding: 8px 12px;
  border: 2px solid #00ffff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 0 5px #00ffff;
}
nav a:hover {
  background-color: #00ffff;
  color: #000;
  box-shadow: 0 0 10px #00ffff;
}
