@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'JetBrains Mono', monospace;
}

body {
  background: #1c1c1c;
  color: #fff;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  overflow: hidden;
}

.whitetitle {
  font-size: 50px;
  color: #fff;
  text-shadow: 
    0 0 10px #00bfff,
    0 0 20px #00bfff,
    0 0 30px #1e90ff, 
    0 0 40px #1e90ff, 
    0 0 50px #4169e1,  
    0 0 60px #4169e1;
  font-weight: bold;
  letter-spacing: 3px;
  text-transform: uppercase;
  position: relative;
  top: 0;
  animation: slideIn 2s ease-out forwards;
  margin-bottom: 85vh;
}

.advicewhitetitle {
  font-size: 50px;
  color: #fff;
  text-shadow: 
    0 0 10px #00bfff,
    0 0 20px #00bfff,
    0 0 30px #1e90ff,
    0 0 40px #1e90ff,
    0 0 50px #4169e1,
    0 0 60px #4169e1;
  font-weight: bold;
  letter-spacing: 3px;
  text-transform: uppercase;
  position: absolute;
  left: 50%;
  top: 7vh;
  transform: translateX(-50%);
  animation: slideIn 2s ease-out forwards;
}

@keyframes slideIn {
  0% {
    transform: translateX(-50%) translateY(-100%);
  }
  100% {
    transform: translateX(-50%) translateY(0);
  }
}

.button-list {
  position: absolute;
  display: flex;
  justify-content: center;
  gap: 20px;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.button-list button {
  text-decoration: none;
  padding: 12px 30px;
  font-size: 16px;
  cursor: pointer;
  background-color: transparent;
  color: white;
  border: 2px solid #1e90ff;
  border-radius: 5px;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
}

.button-list button:hover {
  background-color: #1e90ff;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 0 20px #1e90ff, 0 0 30px #1e90ff;
  text-decoration: none;
}

.button-list button a {
  text-decoration: none;
  color: inherit;
}

.button-list button:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 5px;
}

.button-list button:hover:before {
  opacity: 0.5;
}

.divider {
  border-top: 1px solid #1e90ff;
  margin: 10px 0;
}

.guide {
  font-family: 'JetBrains Mono', monospace;
  background-color: #1e2a47;
  color: #b0c9e1;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  max-width: 800px;
  margin: 20px auto;
  line-height: 1.6;
}

.guide h1, .guide h2, .guide h3 {
  color: #a2b8d1;
}

.guide a {
  color: #4fa3f7;
  text-decoration: none;
}

.guide a:hover {
  text-decoration: underline;
}

.guide-containers {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  padding: 20px;
}

.guide {
  background-color: #1e2a47;
  color: #b0c9e1;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  flex: 1 1 calc(50% - 20px);
  max-width: 48%;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .guide {
    flex: 1 1 100%;
  }
}

.button-list {
  margin-top: 30px;
  text-align: center;
}

button {
  background-color: #4fa3f7;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  margin: 5px;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #1e90ff;
}