/* ===============================
   GENERAL RESET & GLOBAL SETTINGS
   =============================== */
* {
  image-rendering: pixelated;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scrollbar-color: cadetblue gainsboro;
  overscroll-behavior: none;
}

body {
  color: white; /* Default text color */
  font-family: "DOS", "Courier New", Courier, monospace;
  font-smooth: never;
  -webkit-font-smoothing: none;
  -moz-font-smoothing: greyscale;
  background-color: #0a0a12;
  background-image: url('images/tile.jpg');
  background-repeat: repeat;
  margin: 0;
  padding: 0;
  cursor: url('cursor.png'), auto;
}

/* ===============================
   LAYOUT & STRUCTURE
   =============================== */
.main-table {
  width: 750px;
  border: 4px solid #ff00a2;
  background-color: rgba(10, 10, 18, 0.85);
  margin: 20px auto;
}

.header {
  background-color: transparent;
  padding: 0;
  text-align: center;
}

.profile {
  background-color: rgba(26, 26, 46, 0.9);
  padding: 10px;
  vertical-align: top;
  border-right: 2px dashed #ff00a2;
}

.content {
  background-color: transparent;
  padding: 15px;
  vertical-align: top;
}

/* ===============================
   TYPOGRAPHY
   =============================== */
h1 {
  color: #ff00a2 !important;
  font-size: 24px;
  margin: 0 0 10px 0;
  /* text-shadow: 0 0 5px #00ffff; */
}

h2 {
  color: #ff00a2;
  font-size: 18px;
  margin: 10px 0 5px 0;
}

a {
  color: #00ffff;
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  color: #ff00a2;
  text-decoration: underline overline;
}

.blink {
  color: #ff00a2;
  text-decoration: blink;
}

/* ===============================
   MARQUEE ELEMENT
   =============================== */
marquee {
  color: #ff00a2 !important;
  font-weight: italic;
  margin: 5px 0;
  background-color: rgba(26, 26, 46, 0.7);
  /* padding: 3px; */
}

/* ===============================
   PROFILE & IMAGE STYLING
   =============================== */
.profile-pic {
  border-color: #00ffff !important;
  background-color: #1a1a2e;
}

.banner-img {
  display: block;
  margin: 0 auto;
}

/* ===============================
   INTERESTS LIST
   =============================== */
.interests-list {
  margin-left: 30px;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.6;
}

.interests-list li {
  margin-bottom: 8px;
}

/* ===============================
   INTERESTS BLOCK STYLING
   =============================== */
.interest-block {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 10px;
}

.interest-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 5px;
}

.interest-label {
  background-color: #ff66cc; /* pink label */
  border: 2px solid #ff00a2;
  color: black;
  font-weight: bold;
  padding: 5px 8px;
  font-size: 13px;
  font-family: monospace;
}

.interest-entry {
  background-color: #ffd9ec; /* light pink content */
  border: 2px solid #ff00a2;
  color: black;
  padding: 5px 8px;
  font-size: 13px;
  font-family: monospace;
}

/* ===============================
   IMAGE GALLERY
   =============================== */
.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 15px;
  margin-top: 10px;
}

.gallery-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gallery-image {
  border: 3px solid #00ffff; /* blue outline */
  width: 100%;
  height: auto;
}

.gallery-label {
  margin-top: 5px;
  background-color: #ff66cc; /* pink label */
  border: 2px solid #ff00a2;
  color: black;
  font-weight: bold;
  padding: 5px 8px;
  font-size: 13px;
  font-family: monospace;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

/* ===============================
   TAB & LINK BEHAVIOR
   =============================== */
.active-tab {
  color: #ff00a2; /* Pink color */
  pointer-events: none; /* Makes the link unclickable */
  text-decoration: none; /* Optional: removes underline */
}

#rainbow {
  font-size: 2em;
  font-weight: bold;
}

