/* =====================================================================
   JAHN C.P.A. -- OFFICIAL WORLD WIDE WEB STYLE SHEET
   Hand-coded in vi on a 486 DX2/66.  Best viewed at 800x600 in
   Netscape Navigator 4.  This page complies with HTML 3.2 Final.
   Last revised: May 15, 2026.
   ===================================================================== */

/* ---------- GLOBAL PAGE ---------- */
body {
  background-color: #008080;       /* the Windows 95 teal we all loved */
  color: #000000;
  font-family: "Times New Roman", Times, serif;
  font-size: 16px;
  margin: 0;
  padding: 14px;
  /* tiled "stars on teal" background, no GIF needed */
  background-image:
    radial-gradient(rgba(255,255,255,0.85) 1px, transparent 1.5px),
    radial-gradient(rgba(255,255,0,0.55)  1px, transparent 1.5px),
    radial-gradient(rgba(255,255,255,0.35) 1px, transparent 1.5px);
  background-size: 60px 60px, 90px 90px, 30px 30px;
  background-position: 0 0, 20px 30px, 12px 8px;
}

a:link    { color: #0000ee; text-decoration: underline; }
a:visited { color: #551a8b; text-decoration: underline; }
a:hover   { color: #ff0000; background-color: #ffff00; }
a:active  { color: #ff0000; }

h1, h2, h3, h4 {
  font-family: "Times New Roman", Times, serif;
  font-weight: bold;
  margin: 6px 0;
}
h1 { font-size: 34px; }
h2 { font-size: 22px; color: #000080; border-bottom: 2px dotted #000080; }
h3 { font-size: 17px; color: #800000; }
h4 { font-size: 15px; color: #008000; }

p { margin: 8px 0; line-height: 1.45; }

/* ---------- WINDOWS 3.1 / 95 "BEVEL" PANELS ---------- */
.bevel {
  background-color: #c0c0c0;
  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  border-right: 2px solid #808080;
  border-bottom: 2px solid #808080;
  padding: 8px;
  margin: 8px 0;
  box-shadow: 2px 2px 0 #404040;
}

.bevel-inset {
  background-color: #ffffff;
  border-top: 2px solid #808080;
  border-left: 2px solid #808080;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  padding: 10px;
}

.titlebar {
  background: linear-gradient(to right, #000080 0%, #1084d0 100%);
  color: #ffffff;
  font-family: "MS Sans Serif", "Arial", sans-serif;
  font-weight: bold;
  padding: 3px 6px;
  margin: -8px -8px 8px -8px;
  font-size: 14px;
  letter-spacing: 0.5px;
}

/* small "system close" gizmo in the corner of the titlebar */
.titlebar::after {
  content: "[X]";
  float: right;
  font-family: "Courier New", monospace;
  font-size: 12px;
  background: #c0c0c0;
  color: #000000;
  padding: 0 4px;
  margin-top: -1px;
  border-top: 1px solid #ffffff;
  border-left: 1px solid #ffffff;
  border-right: 1px solid #404040;
  border-bottom: 1px solid #404040;
}

/* ---------- THE WORLD-FAMOUS RAINBOW HEADING ---------- */
.rainbow {
  font-weight: bold;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.25);
}
.rainbow span:nth-child(7n+1) { color: #ff0000; }
.rainbow span:nth-child(7n+2) { color: #ff8000; }
.rainbow span:nth-child(7n+3) { color: #cccc00; }
.rainbow span:nth-child(7n+4) { color: #008000; }
.rainbow span:nth-child(7n+5) { color: #0000ff; }
.rainbow span:nth-child(7n+6) { color: #4b0082; }
.rainbow span:nth-child(7n+7) { color: #8000ff; }
.rainbow span {
  display: inline-block;
  animation: hop 1.6s ease-in-out infinite;
}
.rainbow span:nth-child(2n)  { animation-delay: 0.15s; }
.rainbow span:nth-child(3n)  { animation-delay: 0.30s; }
.rainbow span:nth-child(4n)  { animation-delay: 0.45s; }
.rainbow span:nth-child(5n)  { animation-delay: 0.60s; }
@keyframes hop {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-4px); }
}

/* ---------- OLD-SCHOOL BLINK ---------- */
.blink { animation: blink 1s steps(2, start) infinite; }
@keyframes blink { to { visibility: hidden; } }

/* ---------- LED HIT COUNTER ---------- */
.counter {
  display: inline-block;
  background-color: #000000;
  color: #00ff66;
  font-family: "Courier New", Courier, monospace;
  font-weight: bold;
  font-size: 26px;
  padding: 4px 8px;
  letter-spacing: 5px;
  border: 2px inset #808080;
  text-shadow: 0 0 6px #00ff66;
}

/* ---------- UNDER CONSTRUCTION SIGN ---------- */
.construction {
  display: inline-block;
  width: 220px;
  height: 70px;
  background:
    repeating-linear-gradient(
      45deg,
      #ffcc00 0px, #ffcc00 14px,
      #000000 14px, #000000 28px
    );
  border: 3px solid #000000;
  position: relative;
  margin: 6px;
  vertical-align: middle;
}
.construction span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffcc00;
  color: #000000;
  font-family: "Arial Black", "Arial", sans-serif;
  font-weight: 900;
  padding: 4px 10px;
  border: 2px solid #000000;
  white-space: nowrap;
}

/* ---------- "NEW!" BADGE ---------- */
.new-badge {
  display: inline-block;
  background-color: #ff0000;
  color: #ffff00;
  font-family: "Arial Black", "Impact", sans-serif;
  font-weight: 900;
  font-size: 11px;
  padding: 2px 5px;
  border: 1px solid #000000;
  transform: rotate(-8deg);
  margin: 0 4px;
  animation: pulse 1.2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { transform: rotate(-8deg) scale(1.0); }
  50%     { transform: rotate(-8deg) scale(1.15); }
}

.hot-badge {
  display: inline-block;
  background: #ff8000;
  color: #ffff00;
  font-family: "Arial Black", sans-serif;
  font-size: 11px;
  padding: 2px 5px;
  border: 1px solid #000000;
  transform: rotate(4deg);
  margin: 0 4px;
}

/* ---------- NAV BAR ---------- */
.navbar {
  text-align: center;
  font-family: "Times New Roman", Times, serif;
  font-size: 16px;
  padding: 6px;
}
.navbar a { margin: 0 6px; }

/* ---------- 3-D BUTTONS ---------- */
.btn {
  display: inline-block;
  background-color: #c0c0c0;
  color: #000000 !important;
  text-decoration: none;
  font-family: "MS Sans Serif", Arial, sans-serif;
  font-weight: bold;
  padding: 6px 14px;
  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  border-right: 2px solid #404040;
  border-bottom: 2px solid #404040;
  margin: 4px;
}
.btn:hover { background-color: #d4d0c8; }
.btn:active {
  border-top: 2px solid #404040;
  border-left: 2px solid #404040;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
}

/* ---------- SPARKLES ---------- */
.sparkle {
  color: #ffff00;
  text-shadow: 1px 1px 0 #ff8000, -1px -1px 0 #ff0000;
  display: inline-block;
  animation: twinkle 1.4s ease-in-out infinite;
}
@keyframes twinkle {
  0%,100% { transform: scale(1) rotate(0deg);  opacity: 1; }
  50%     { transform: scale(1.4) rotate(180deg); opacity: 0.6; }
}

/* ---------- FOOTER ---------- */
.footer {
  text-align: center;
  font-size: 12px;
  margin-top: 14px;
  padding: 10px;
  color: #ffffff;
  text-shadow: 1px 1px 0 #000000;
}
.footer a { color: #ffff00; }
.footer a:visited { color: #ffcc00; }

/* ---------- TABLES ---------- */
table.layout { width: 100%; border-collapse: collapse; }
table.data {
  border: 2px ridge #808080;
  background-color: #ffffff;
  width: 100%;
}
table.data th {
  background-color: #000080;
  color: #ffffff;
  padding: 5px 8px;
  border: 1px solid #000000;
  text-align: left;
}
table.data td {
  padding: 5px 8px;
  border: 1px solid #c0c0c0;
}
table.data tr:nth-child(even) td { background-color: #f0f0f0; }

/* ---------- MARQUEES ---------- */
marquee {
  background: linear-gradient(to right, #000080, #1084d0, #000080);
  color: #ffff00;
  font-family: "Courier New", Courier, monospace;
  font-weight: bold;
  padding: 5px 0;
  border-top: 2px solid #ffffff;
  border-bottom: 2px solid #404040;
  font-size: 15px;
}
marquee.alert {
  background: #cc0000;
  color: #ffff00;
}

/* ---------- RAINBOW RULE ---------- */
hr.fancy {
  border: 0;
  height: 4px;
  background: linear-gradient(
    to right,
    #800000 0%, #ff0000 16%, #ff8000 33%, #ffff00 50%,
    #00ff00 66%, #0000ff 83%, #800080 100%
  );
  margin: 12px 0;
}
hr.dotted {
  border: 0;
  border-top: 2px dashed #404040;
  margin: 8px 0;
}

/* ---------- AWARDS / 88x31 BUTTONS ---------- */
.button88 {
  display: inline-block;
  width: 88px;
  height: 31px;
  margin: 4px;
  border: 1px solid #000000;
  font-family: "MS Sans Serif", Arial, sans-serif;
  font-size: 10px;
  font-weight: bold;
  text-align: center;
  text-decoration: none !important;
  line-height: 1.05;
  padding: 0;
  vertical-align: middle;
  overflow: hidden;
  position: relative;
  color: #ffffff !important;
}
.button88 b { display: block; font-size: 13px; line-height: 1.1; padding-top: 3px; }
.button88 i { display: block; font-style: normal; font-size: 9px; padding-top: 1px; }

.btn-netscape   { background: linear-gradient(#666666,#000000); color: #ffff00 !important; }
.btn-netscape b { color: #ffffff; }
.btn-ie         { background: linear-gradient(#0066cc,#000080); }
.btn-validate   { background: linear-gradient(#ffffff,#cccccc); color: #000000 !important; border: 1px solid #808080; }
.btn-validate b { color: #cc0000; }
.btn-html32     { background: linear-gradient(#ff8000,#cc4400); }
.btn-css        { background: linear-gradient(#0099cc,#003366); }
.btn-acrobat    { background: linear-gradient(#cc0000,#660000); }
.btn-quicktime  { background: linear-gradient(#444444,#000000); color: #00ccff !important; }
.btn-realaudio  { background: linear-gradient(#222222,#000000); color: #ff6600 !important; }
.btn-irs        { background: linear-gradient(#003366,#001133); color: #ffcc00 !important; }
.btn-aicpa      { background: linear-gradient(#000080,#000040); }
.btn-y2k        { background: linear-gradient(#00cc00,#006600); }
.btn-no-frames  { background: linear-gradient(#990000,#330000); color: #ffff00 !important; }
.btn-geocities  { background: linear-gradient(#ffcc00,#996600); color: #000000 !important; }
.btn-webring    { background: linear-gradient(#660099,#220033); }

/* ---------- ASCII / PRE BOX ---------- */
pre.ascii {
  background: #000000;
  color: #00ff66;
  font-family: "Courier New", Courier, monospace;
  padding: 12px;
  border: 2px inset #808080;
  font-size: 13px;
  line-height: 1.2;
  overflow-x: auto;
  text-shadow: 0 0 4px #00ff66;
}

/* ---------- "TICKER" BOX (mock stock ticker) ---------- */
.ticker {
  background: #000000;
  color: #00ff66;
  font-family: "Courier New", monospace;
  border: 2px inset #808080;
  padding: 4px;
}

/* ---------- FAUX EMAIL / SPINNING @ ---------- */
.at-spinner {
  display: inline-block;
  width: 22px; height: 22px;
  line-height: 22px;
  text-align: center;
  background: #ffff00;
  color: #cc0000;
  border: 2px outset #ffcc00;
  font-family: "Arial Black", sans-serif;
  font-weight: 900;
  border-radius: 50%;
  animation: spin 2.4s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- "FLAMING TEXT" effect for big WELCOME ---------- */
.flame {
  font-family: "Impact", "Arial Black", sans-serif;
  font-weight: 900;
  background: linear-gradient(to top, #ff0000, #ff8000, #ffff00);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: 2px 2px 0 #800000;
  letter-spacing: 2px;
}

/* ---------- "GLITTER" TEXT ---------- */
.glitter {
  background-image: linear-gradient(
    45deg,
    #ff00ff 0%, #ffff00 25%, #00ffff 50%, #ff00ff 75%, #ffff00 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shimmer 2s linear infinite;
  font-weight: bold;
}
@keyframes shimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* ---------- AWARD RIBBON ---------- */
.ribbon {
  display: inline-block;
  background: gold;
  color: #800000;
  padding: 6px 12px;
  border: 2px ridge #cc9900;
  font-family: "Times New Roman", serif;
  font-weight: bold;
  font-style: italic;
  margin: 4px;
  position: relative;
  box-shadow: 2px 2px 0 #404040;
}
.ribbon::before, .ribbon::after {
  content: "*";
  margin: 0 6px;
  color: #cc0000;
}

/* ---------- WEBRING WIDGET ---------- */
.webring {
  background: #000000;
  color: #ffff00;
  border: 3px ridge #ffcc00;
  padding: 8px;
  font-family: "Courier New", monospace;
  font-size: 13px;
  display: inline-block;
}
.webring a { color: #00ffff; }
.webring a:visited { color: #ff66ff; }

/* ---------- "NETSCAPE NOW" SIGN ---------- */
.netscape-now {
  display: inline-block;
  width: 160px;
  padding: 10px 0;
  background: linear-gradient(#000000 0%, #404040 100%);
  color: #ffffff;
  text-align: center;
  border: 2px outset #808080;
  font-family: "Times New Roman", serif;
  font-weight: bold;
  font-size: 14px;
}
.netscape-now span { color: #00ff00; font-style: italic; display: block; font-size: 11px; }

/* ---------- "CONSTRUCTION GUY" -- a tiny CSS hard hat ---------- */
.hat {
  display: inline-block;
  width: 28px; height: 18px;
  background: #ffcc00;
  border: 2px solid #000000;
  border-radius: 14px 14px 2px 2px;
  position: relative;
  vertical-align: middle;
  margin: 0 4px;
}
.hat::after {
  content: "";
  position: absolute; left: -6px; right: -6px; bottom: -3px;
  height: 4px;
  background: #ffcc00;
  border: 2px solid #000000;
  border-radius: 2px;
}

/* ---------- TIP / NOTE / ALERT BOXES ---------- */
.tip {
  background: #ffffcc;
  border: 2px ridge #ffcc00;
  padding: 8px 10px;
  margin: 8px 0;
}
.tip::before {
  content: "TIP: ";
  font-weight: bold;
  color: #cc6600;
  font-family: "Arial Black", sans-serif;
}
.alert {
  background: #ffe0e0;
  border: 2px ridge #cc0000;
  padding: 8px 10px;
  margin: 8px 0;
}
.alert::before {
  content: "!! ALERT !! ";
  font-weight: bold;
  color: #cc0000;
  font-family: "Arial Black", sans-serif;
}
.note {
  background: #e0ffe0;
  border: 2px ridge #006600;
  padding: 8px 10px;
  margin: 8px 0;
}

/* ---------- "FLOPPY DISK" mailto icon drawn in CSS ---------- */
.floppy {
  display: inline-block;
  width: 18px; height: 18px;
  background: #000080;
  border: 1px solid #000000;
  position: relative;
  vertical-align: middle;
  margin-right: 4px;
}
.floppy::before {
  content: "";
  position: absolute; top: 1px; left: 3px; right: 3px; height: 7px;
  background: #c0c0c0;
}
.floppy::after {
  content: "";
  position: absolute; bottom: 1px; left: 2px; right: 2px; height: 7px;
  background: #ffffff;
  border: 1px solid #808080;
}

/* ---------- FORM ELEMENTS ---------- */
input[type=text], input[type=email], textarea, select {
  font-family: "MS Sans Serif", Arial, sans-serif;
  font-size: 14px;
  border-top: 2px solid #808080;
  border-left: 2px solid #808080;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  background-color: #ffffff;
  padding: 3px;
}
input[type=submit], input[type=reset], button {
  font-family: "MS Sans Serif", Arial, sans-serif;
  font-weight: bold;
  font-size: 13px;
  padding: 4px 14px;
  background-color: #c0c0c0;
  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  border-right: 2px solid #404040;
  border-bottom: 2px solid #404040;
  cursor: pointer;
}
input[type=submit]:active, input[type=reset]:active {
  border-top: 2px solid #404040;
  border-left: 2px solid #404040;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
}

/* ---------- CRT SCANLINE OVERLAY (faint) ---------- */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0,0,0,0.04) 0,
    rgba(0,0,0,0.04) 1px,
    transparent 1px,
    transparent 3px
  );
  pointer-events: none;
  z-index: 9999;
}

/* ---------- UTILITIES ---------- */
.center  { text-align: center; }
.small   { font-size: 12px; }
.tiny    { font-size: 11px; }
.right   { text-align: right; }
.nowrap  { white-space: nowrap; }
.mono    { font-family: "Courier New", Courier, monospace; }
