/* Base styles */
body {
  background-color: #111;        /* Dark background */
  color: #f8f8f2;                /* Off-white text */
  font-family: "Courier New", Courier, monospace;  /* Terminal feel */
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

/* Layout table */
table#layout {
  border-collapse: collapse;
  width: 90%;
  max-width: 800px;
  margin: auto;
  margin-bottom: 3%;
}

/* Header row */
td.header {
  text-align: center;
  padding: 1em;
}
td.header h1 {
  font-size: xx-large;
  color: #ff0066;               /* Hot pink / glitch accent */
  text-shadow: 0 0 5px #ff0066, 0 0 10px #ff0066;
  position: relative;
}
td.beats h1 {
  color: #ff0066;               /* Hot pink / glitch accent */
  text-shadow: 0 0 5px #ff0066, 0 0 10px #ff0066;
  position: relative;
  text-decoration: underline;
}
td.header h2 {
  font-size: large;
  color: #888;
  margin-top: 0.5em;
}
td.beats{
  text-align:center;
}
/* Photo row */
td.photo-cell {
  text-align: center;
  padding: 1em;
}
#me {
  margin-top: 1em;
  border-radius: 10px;
  max-width: 300px;
  width: 80%;
  box-shadow: 0 0 10px #ff0066;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s;
}
#me:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #ff0066, 0 0 40px #ff0066;
}

/* Links row */
td.links {
  text-align: center;
  padding: 1em;
}
td.links a {
  display: inline-block;
  margin: 0.4em 0.8em;
  text-decoration: none;
  color: #00ffff;
  font-weight: bold;
  transition: color 0.2s;
}
td.links a:hover {
  color: #ff0066;
}

/* BeatLinks row */
td.beatlinks {
  text-align: center;
}
td.beatlinks a {
  display: inline-block;
  margin: 0.4em 0.8em;
  text-decoration: none;
  color: #00ffff;
  font-weight: bold;
  transition: color 0.2s;
}
td.beatlinks a:hover {
  color: #ff0066;
}

/* Donation row */
td.donation {
  text-align: center;
  padding: 1em;
}
td.donation p {
  margin-bottom: 0.5em;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
td.donation a {
  display: inline-block;
  padding: 0.5em 1em;
  border: 2px solid #00ffff;
  border-radius: 6px;
  text-decoration: none;
  color: #00ffff;
  transition: background 0.2s, color 0.2s;
}
td.donation a:hover {
  background: #00ffff;
  color: #111;
}
/* Reader row */
td.reader {
  text-align: center;
  padding: 1em;
}
td.reader p {
  margin-bottom: 0.5em;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
td.reader a {
  display: inline-block;
  padding: 0.5em 1em;
  border: 2px solid #00ffff;
  border-radius: 6px;
  text-decoration: none;
  color: #00ffff;
  transition: background 0.2s, color 0.2s;
}
td.reader a:hover {
  background: #00ffff;
  color: #111;
}
a:visited{
  color: #111;
}
