:root {
  --bg: #0f0f0f;
  --code-bg: #1a1a1a;
  --notice1-bg: #091f27;
  --notice2-bg: #16191d;
  --notice3-bg: #1a1a1a;
  --heading: #0ff;
  --text: #ccc;
  --code: #fff;
  --link: #3b82f6;
  --link-active: #0ff;
  --blockquote: #aaa;
  --notice1-accent: #06b6d4;
  --notice2-accent: #3b82f6;
  --notice3-accent: #777;
  --separator: #333;
  --border: #333;
  --font: 'Orbitron', sans-serif;
  --monospace-font: 'Courier New', monospace;
}

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&display=swap');

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 1em;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.5px;
}

h1, h2, h4, h5, h6 {
  color: var(--heading);
  text-shadow: 0 0 6px var(--heading);
  animation: pulse 3s infinite;
  display: inline-block;
  outline: none;
  border: none;
  box-shadow: none;
  /* text-shadow: 0 0 8px rgba(255, 255, 255, 0.8); */
  background: transparent;
  line-height: 0.3;
}

a {
  color: var(--link);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--link-active);
  text-shadow: 0 0 4px var(--link-active);
  text-decoration: underline;
}

.content {
  padding: 2em;
  background-color: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  box-shadow: 0 0 12px #0ff3;
}

.content img {
  max-width: 100%;
  border-radius: 4px;
  box-shadow: 0 0 10px #3b82f655;
}

.content code {
  background-color: var(--code-bg);
  color: var(--code);
  padding: 0.3em 0.6em;
  border-radius: 4px;
  box-shadow: inset 0 0 4px #06b6d4;
}

.content pre {
  background-color: var(--code-bg);
  color: var(--code);
  padding: 1em;
  overflow-x: auto;
  border-radius: 8px;
}

.card {
  background: linear-gradient(135deg, #111, #1a1a1a);
  border: 1px solid #06b6d4;
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 0 20px #06b6d455;
}

.card h3 {
  color: #0ff;
  margin-top: 0;
  font-size: 1.4em;
  text-shadow: 0 0 5px #0ff;
  font-height: 0;
  /*line-height: 0.5;*/
}

footer {
  text-align: center;
  padding: 30px;
  font-size: 0.9em;
  color: #888;
  background-color: #111;
  border-top: 1px solid #06b6d4;
}
@keyframes pulse {
  0% { box-shadow: 0 0 25px #0ff; }
  50% { box-shadow: 0 0 45px #06b6d4; }
  100% { box-shadow: 0 0 23px #0ff; }
}

header {
  width: 250px;
  height: 100px;
  border-radius: 70%;
  background: linear-gradient(to right, #06b6d4, #3b82f6);
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2em;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px #0ff;
  margin: 40px auto;
  animation: pulse 5s infinite;
}

    body {
      margin: 0;
      font-family: 'Orbitron', sans-serif;
      background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
      color: #ffffff;
      overflow-x: hidden;
    }
    section {
      padding: 50px;
      max-width: 1000px;
      margin: auto;
    }
    .title {
      font-size: 2em;
      margin-bottom: 20px;
      text-transform: uppercase;
      color: #3b82f6;
    }
    .card {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 10px;
      padding: 20px;
      margin-bottom: 30px;
      box-shadow: 0 0 15px #06b6d4;
    }
    .card h3 {
      margin-top: 0;
      color: #06b6d4;
    }
    footer {
      text-align: center;
      padding: 20px;
      background: #111;
      font-size: 0.9em;
      color: #ccc;
    }
    a {
      color: #0ff;
      text-decoration: none;
    }
    a:hover {
      text-decoration: underline;
    }
    .blended-gif {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      mix-blend-mode: lighten;
      opacity: 0.8;
      pointer-events: none;
    }

.navigation {
  margin: 1em auto;
  padding: 0.6em 1em;
  background: linear-gradient(90deg, #0f0f0f, #1a1a1a);
  border-radius: 70px;
  box-shadow: 0 0 20px #06b6d4aa;
  max-width: 900px;
  text-align: center;
  font-family: 'Orbitron', sans-serif;
}

.navigation ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1em;
  padding: 0;
  margin: 0;
  list-style: none;
}

.navigation li {
  position: relative;
  cursor: pointer;
}

.navigation a {
  display: inline-block;
  padding: 0.7em 1em;
  color: #0ff;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  background-color: rgba(255,255,255,0.03);
}

.navigation a:hover {
  background-color: #06b6d4;
  color: #000;
  box-shadow: 0 0 10px #0ff;
}

.navigation a.active,
.navigation a[aria-current="page"] {
  background-color: #3b82f6;
  color: #fff;
  font-weight: bold;
  box-shadow: 0 0 10px #3b82f6;
}

.navigation ul li ul {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #111;
  padding: 0.5em;
  border: 1px solid #06b6d4;
  border-radius: 80px;
  box-shadow: 0 0 12px #06b6d4aa;
  display: none;
  min-width: 7em;
}

.navigation ul li:hover ul {
  display: block;
}

.navigation ul li ul li a {
  display: block;
  padding: 0.5em;
  text-align: left;
}

blockquote {
  background: linear-gradient(to right, #330000, #660000);
  border-left: 5px solid #ff0033;
  color: #ff6666;
  padding: 1.2em 1.5em;
  margin: 2em auto;
  max-width: 700px;
  font-style: italic;
  font-family: 'Orbitron', sans-serif;
  text-shadow: 0 0 3px #ff0033;
  box-shadow: 0 0 20px #ff003399;
  border-radius: 8px;
}

p {
  font-family: 'Orbitron', sans-serif;
  font-size: 1em;
  color: #e0e0e0;
  line-height: 1.8;
  letter-spacing: 0.3px;
  max-width: 800px;
  margin: 1.2em auto;
  padding: 0.2em 0.6em;
  background-color: rgba(255, 255, 255, 0.025);
  border-left: 3px solid #3b82f6;
  border-radius: 6px;
  box-shadow: 0 0 8px #3b82f633;
}

.notice1 {
  background-color: #e0b0ff; /* Bubble gum violet */
  border-left: 6px solid #c678dd; /* Slightly deeper violet accent */
  padding: 12px 20px;
  margin: 20px 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 18px;
  color: #2c003e; /* Deep plum for contrast */
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.notice1 p {
    color: #40E0D0;
}
.notice1:hover {
  background-color: #d8a0ff; /* Slightly brighter violet on hover */
}

  /* Popup container styling */
    #adblock-popup {
      display: none; /* Hidden by default */
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 300px;
      padding: 20px;
      background-color: white;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      border-radius: 8px;
      z-index: 1000;
      text-align: center;
    }

    /* Close button styling */
    #adblock-popup .close-btn {
      position: absolute;
      top: 10px;
      right: 10px;
      background: none;
      border: none;
      font-size: 16px;
      cursor: pointer;
    }

    /* Overlay styling */
    #popup-overlay {
      display: none; /* Hidden by default */
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 999;
    }

  