    body {
      background-color: #121212; /* 0d0d0d */
      color: #e0e0e0;
      font-family: monospace;
	  font-size: 1.6em;
      margin: 0;
      padding: 0;
    }
    header {
      padding: 2rem;
      text-align: center;
      background-color: #181818; /* 121212 */
      border-bottom: 1px solid #222;
    }
    header h1 {
      font-size: 2rem;
      color: #00ff88;
    }
    main {
      padding: 2rem;
      max-width: 1321px;
      margin: auto;
    }
    section {
      margin-bottom: 2rem;
    }
    h2 {
      color: #00ffaa;
    }
    a {
      color: #00ffff;
      text-decoration: none;
    }
    a:hover {
      text-decoration: underline;
    }
    footer {
      text-align: center;
      padding: 2rem;
      border-top: 1px solid #222;
      color: #777;
    }
	.dent {
      margin-left: 2em; /* Indent each paragraph by 2em */
      margin-top: 0;    /* Remove default top margin if needed */
      margin-bottom: 0; /* Remove default bottom margin if needed */
	}
.form-container {
  background: #121212;
  padding: 1.5rem 2rem;
  box-shadow: 0 0 12px rgba(0, 255, 136, 0.2);
  border-radius: 6px;
  width: 100%;
  max-width: 600px;
  margin: 2rem auto;
}

.tooltiptext {
  visibility: hidden;
  width: 300px;
  background-color: #333;
  color: #fff;
  text-align: left;
  border-radius: 6px;
  padding: 10px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -150px;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 12px;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
/* REM START PC.HTML SECTION */
/* Modal styling */
.modal {
    display: none; /* Modal is hidden initially */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    z-index: 1000;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Image styling */
.modal img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Preserve aspect ratio */
}
/* Close button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
	padding: 0.6rem 0.6rem;
    background-color: #ff5e57;
    color: white;
    border: none;
    border-radius: 4%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 1001;
	box-sizing: border-box; /* Ensures padding and border are included in width/height */
}
/* Overlay for background dimming */
.overlay {
    display: none; /* Initially hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999;
}
/* Base button reset */
button {
  border: none;
  cursor: pointer;
  background: none;   /* remove solid fill */
  padding: 0;         /* no padding around image */
}
/* Selector row */
.image-row {
  width: 800px;
  display: flex;
  gap: 10px;           /* spacing between buttons */
}
.image-selector:hover {
    background-color: #B7B1BB;
}
/* Each selector button */
.image-selector {
  flex: 1;             /* equal width per button */
  aspect-ratio: 16/9;  /* or 1/1 for square thumbs */
  overflow: hidden;    /* crop overflowed parts */
  border-radius: 5px;  /* rounded corners */
  background: #000;    /* fallback background */
}
/* Images inside */
.image-selector img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* cover space without distortion */
  display: block;
}

/* REM END PC.HTML SECTION */