* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Segoe UI', sans-serif;
  height: 100%;
  background: #000;
  color: white;
  overflow-x: hidden;
}

.background {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('https://retrivedmods.neocities.org/assets/back.gif') center center / cover no-repeat;
  filter: blur(8px) brightness(0.4);
  z-index: -1;
}

#loader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #0e0e0e;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 6px solid red;
  border-top: 6px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

.hidden {
  display: none;
}

header {
  text-align: center;
  padding: 40px 20px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid red;
}

header h1 {
  font-size: 3rem;
  color: red;
  text-shadow: 0 0 10px red;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 40px 0;
}

.icon {
  font-size: 1.6rem;
  color: white;
  transition: 0.3s;
  padding: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid red;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none; /* ✅ this removes underline */
}


.icon:hover {
  color: red;
  box-shadow: 0 0 15px red;
  background: rgba(255, 0, 0, 0.1);
}

.categories {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  padding: 40px 20px;
}

.categories button {
  padding: 15px 40px;
  font-size: 1.2rem;
  background: rgba(255, 0, 0, 0.15);
  color: white;
  border: 2px solid red;
  border-radius: 12px;
  transition: all 0.3s;
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.categories button:hover {
  background: red;
  color: #fff;
  box-shadow: 0 0 20px red;
}

.developer {
  margin-top: 50px;
  text-align: center;
  padding: 30px;
  background: rgba(0, 0, 0, 0.4);
  border-top: 2px solid red;
  backdrop-filter: blur(10px);
}

.developer img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid red;
  object-fit: cover;
  margin-bottom: 15px;
}

.dev-info h2 {
  color: red;
  font-size: 1.6rem;
  margin-bottom: 5px;
}

.dev-info p {
  color: #ccc;
  font-size: 1rem;
}

footer {
  text-align: center;
  padding: 15px;
  background: rgba(0, 0, 0, 0.7);
  border-top: 1px solid red;
  font-size: 0.9rem;
}
