      body {
      margin: 0;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      background: #1c1c1c;
      font-family: 'Press Start 2P', cursive;
      color: #ffffff;
      font-size: 0.6rem;
    }

  #copy-btn:hover, #copy-btn-2:hover {
  filter: brightness(1.3);
  transform: scale(1.05);
  transition: all 0.2s ease;
}


    header, #footer {
      width: 100%;
      text-align: center;
      background: #2b2b2b;
      padding: 70px 0;
    }

    h1 {
      margin: 0;
      color: #800000;
      font-size: 1.5rem;
      text-shadow: 2px 2px #ffcccc;
    }

    nav {
      margin-top: 10px;
    }

    nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      justify-content: center;
      gap: 20px;
    }

    nav a {
      text-decoration: none;
      color: #ff4d4d;
      font-size: 0.6rem;
      transition: color 0.3s;
    }

    nav a:hover {
      color: #ffffff;
    }

    main {
      flex: 1;
      max-width: 600px;
      margin: 20px auto;
      padding: 15px;
      background: #2b2b2b;
      border-radius: 8px;
      box-shadow: 0 0 6px rgba(0,0,0,0.4);
    }

    p, ul {
      font-size: 0.6rem;
      line-height: 1.4;
    }

    ul li {
      margin-bottom: 6px;
    }

    .login-circle {
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: 50px;
      height: 50px;
      background-color: #ff4d4d;
      border-radius: 50%;
      box-shadow: 0 0 10px rgba(255, 77, 77, 0.6);
      cursor: pointer;
      z-index: 999;
      transition: background 0.3s;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
    }

    .login-circle:hover {
      background-color: #ffffff;
      box-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
    }

    .login-circle span {
      font-size: 1.2rem;
      color: #800000;
    }

    #menu-toggle {
      position: absolute;
      top: 20px;
      left: 20px;
      font-size: 1rem;
      color: #ff4d4d;
      cursor: pointer;
      z-index: 1000;
    }

    #menu-box {
      position: absolute;
      top: 60px;
      left: 20px;
      background: #2b2b2b;
      border: 2px solid #800000;
      border-radius: 8px;
      padding: 12px;
      display: none;
      font-size: 0.6rem;
      box-shadow: 0 0 8px rgba(255, 77, 77, 0.4);
      z-index: 999;
    }

    #menu-box a {
      display: block;
      color: #ffffff;
      text-decoration: none;
      margin-bottom: 8px;
    }

    #menu-box a:hover {
      color: #ed8282;
    }

    #menu-toggle {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 30px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1000;
}

#menu-toggle .bar {
  height: 4px;
  background-color: #ff4d4d;
  border-radius: 2px;
  box-shadow: 0 0 4px #ff4d4d;
  transition: background 0.3s, box-shadow 0.3s;
}

#menu-toggle:hover .bar {
  background-color: #ffffff;
  box-shadow: 0 0 6px #ffffff;
}

#discord {
  color: #ff7300;
}

#discord:hover {
  color: #d0200d;
}
#ip-value {
  color:#df531b;
}
#port-value {
  color:#df531b;
}
#copy-btn {
  color:#ffffff;
  background-color:#ff4d4d;
  margin-left: 10px;
  padding: 5px 10px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: 0.2s;
}

#copy-btn:hover {
  background-color:#ffffff;
  color:#ff4d4d;
}
#copy-btn-2 {
  color:#ffffff;
  background-color:#ff4d4d;
  margin-left: 10px;
  padding: 5px 10px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: 0.2s;
}

#copy-btn-2:hover {
  background-color:#ffffff;
  color:#ff4d4d;
}

#copy-test {
  background-color:#e57906;
  margin-left: 10px;
  padding: 5px 10px;
  border-radius: 6px;
  border: none;
}

.countdown-wrapper {
  display: flex;
  justify-content: top left;
  align-items: flex-start; /* Align to top instead of center */
  height: 50px;
  padding-top: 20px; /* Push it down slightly from the top */
}

#countdown {
  font-family: 'Press Start 2P', cursive;
  font-size: 12px;
  color: #c11d00;
  background-color: #111;
  padding: 10px 20px;
  border: 2px solid #e11700;
  border-radius: 8px;
  display: inline-block;
  animation: pulse 1.5s infinite;
  text-align: center;
}

@keyframes pulse {
  0% { box-shadow: 0 0 5px #ff0000; }
  50% { box-shadow: 0 0 20px #ff0000; }
  100% { box-shadow: 0 0 5px #ff0000; }
}

