body {
  background-color: #121212;
  color: #e0e0e0;
  font-family: 'Courier New', monospace;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  background: linear-gradient(to bottom, #212121, #1a1a1a);
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

header h1 {
  color: #ff3333;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  animation: flicker 2s infinite;
}

@keyframes flicker {
  0%, 100% { text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); }
  50% { text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); }
}

nav a {
  color: #c0c0c0;
  text-decoration: none;
  margin: 0 15px;
  transition: color 0.3s ease, transform 0.2s ease;
}

nav a:hover {
  color: #ff3333;
  transform: scale(1.1);
}

main {
  padding: 20px;
  animation: fadeIn 1s ease-out;
  flex: 1;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero {
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
  padding: 40px;
  text-align: center;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
}

.hero h2 {
  color: #ff3333;
  margin-bottom: 10px;
}

.circuit-message {
  font-size: 8px;
  font-family: Arial, sans-serif;
  color: gray;
}

.button {
  background-color: #ff3333;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.button:hover {
  background-color: #d32f2f;
  transform: translateY(-3px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.6);
}

.folder-container {
  margin-top: 20px;
}

.folder {
  border: 1px solid #333;
  margin-bottom: 10px;
  border-radius: 6px;
  overflow: hidden;
}

.folder-title {
  background: linear-gradient(to right, #2a2a2a, #1a1a1a);
  color: #c0c0c0;
  padding: 12px;
  width: 100%;
  text-align: left;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.folder-title:hover {
  background: linear-gradient(to right, #333, #222);
}

.folder-content {
  background-color: #1a1a1a;
  padding: 10px;
  display: none;
  overflow: hidden;
  max-height: 200px;
  transition: max-height 0.4s ease-out;
  overflow-y: scroll;
  scrollbar-width: none;
}

.folder-content::-webkit-scrollbar {
  display: none;
}

.folder-content a {
  display: block;
  color: #c0c0c0;
  text-decoration: none;
  padding: 8px 0;
  transition: color 0.3s ease, transform 0.2s ease;
}

.folder-content a:hover {
  color: #ff3333;
  transform: translateX(5px);
}

section {
  margin-bottom: 20px;
  padding: 15px;
  border-radius: 6px;
  background-color: #1a1a1a;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

section h3 {
  color: #ff3333;
  margin-bottom: 10px;
}

footer {
  background-color: #1a1a1a;
  text-align: center;
  padding: 15px;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.5);
  flex-shrink: 0;
}

.button-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 20px;
  background: transparent;
  
}

.link-button {
  padding: 16px 30px;
  font-size: 18px;
  background: linear-gradient(to right, #ff3333, #d32f2f);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  font-family: 'Courier New', monospace;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.link-button:hover {
  background: linear-gradient(to right, #d32f2f, #b71c1c);
  transform: translateY(-4px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.7);
}

.info-box {
  position: absolute;
  right: 5%;
  top: 45%;
  width: 300px;
  padding: 15px;
  background: #222;
  color: #fff;
  font-size: 14px;
  border-radius: 8px;
  border: 2px solid #ff3333;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.invite a {
  color: red;
  text-decoration: none;
}

.invite a:visited,
.invite a:active,
.invite a:hover {
  color: red;
}