<style>
/* ===== BACKGROUND ===== */
body {
  background: url("https://wallpapercave.com/wp/wp8903721.jpg") no-repeat center center fixed;
  background-size: cover;

  color: #8b1a1a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  line-height: 1.5;
}

/* ===== STATIC DARK AQUARIUM OVERLAY ===== */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(
    rgba(30, 0, 0, 0.25),
    rgba(0, 0, 0, 0.92)
  );
  z-index: -1;
  pointer-events: none;
}

/* ===== DEFAULT LAYOUT (DO NOT TOUCH SIZE) ===== */
.profile, .content, .box {
  background: #0a0000;
  border: 2px solid #4a0000;

  border-radius: 0px;

  /* IMPORTANT: keep layout untouched */
  width: auto;
  height: auto;
  margin: inherit;
  padding: inherit;

  position: relative;
  overflow: hidden;

  box-shadow: 2px 2px 0px #000;
}

/* ===== FAKE FLOAT LAYER (DOES NOT MOVE BOX) ===== */
.profile::before,
.content::before,
.box::before {
  content: "";
  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at 50% 40%,
    rgba(255, 0, 0, 0.05),
    transparent 70%
  );

  opacity: 0.6;
  pointer-events: none;

  animation: softWave 8s ease-in-out infinite;
}

/* stagger so it feels natural */
.content::before {
  animation-delay: 2s;
}

.box::before {
  animation-delay: 4s;
}

/* ===== FLOAT EFFECT (VISUAL ONLY) ===== */
@keyframes softWave {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-3px); }
  100% { transform: translateY(0px); }
}

/* ===== TEXTURE (STATIC) ===== */
.profile::after, .content::after, .box::after {
  content: "";
  position: absolute;
  inset: 0;

  background: repeating-linear-gradient(
    0deg,
    rgba(255, 0, 0, 0.02),
    rgba(255, 0, 0, 0.02) 1px,
    transparent 1px,
    transparent 6px
  );

  opacity: 0.2;
  pointer-events: none;
}

/* ===== TEXT ===== */
.profile, .content, .box {
  color: #8b1a1a;
}

/* ===== HEADERS ===== */
h1, h2, h3 {
  color: #5c0a0a;
  text-shadow: 1px 1px 0px #000;
  border-bottom: 1px solid #3a0000;
  padding-bottom: 2px;
}

/* ===== LINKS ===== */
a {
  color: #8b1a1a;
  text-decoration: underline;
}

a:hover {
  color: #ffd6d6;
  background: #3a0000;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 9px;
}

::-webkit-scrollbar-thumb {
  background: #3a0000;
  border: 1px solid #000;
}

::-webkit-scrollbar-track {
  background: #000;
}
</style>