* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: #050505;
  color: #eee;
  overflow-x: hidden;
}


#typing::after {
  content: ".";
  animation: blink 1s infinite;
  color: #050505;
}

@keyframes blink {
  50% { opacity: 0; }
}

.noise {
  position: fixed;
  inset: 0;
  background: url('https://grainy-gradients.vercel.app/noise.svg');
  opacity: 0.04;
  pointer-events: none;
}

.hero {
  padding: 100px 20px 60px;
  text-align: center;
}

.hero h1 {
  font-size: 64px;
  letter-spacing: 3px;
  margin: 0;
}

.hero p {
  color: #aaa;
}

main {
  max-width: 900px;
  margin: auto;
  padding: 20px;
}

.glass {
  background: rgba(15, 15, 15, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid #222;
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 30px;
  animation: fade 0.6s ease;
}

.glass h2 {
  margin-top: 0;
  border-left: 4px solid #00ffd5;
  padding-left: 12px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
}

.grid div {
  background: #0c0c0c;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s;
}

.grid div:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 20px #00ffd533;
}

.danger h2 {
  border-color: #ff4444;
}

.case {
  margin-top: 15px;
  padding: 16px;
  background: #0b0b0b;
  border-left: 4px solid #ff4444;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.case:hover {
  background: #141414;
  box-shadow: 0 0 15px #ff444433;
}

footer {
  text-align: center;
  color: #555;
  padding: 40px 10px;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Socials */

.socials h2 {
  border-left: 5px solid #00ffd5;
  padding-left: 12px;
  margin-top: 0;
}

.social-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
}

.social {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 12px;
  background: #0c0c0c;
  color: #eee;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.social:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 15px #0c423944;
}

.social.github:hover {
  box-shadow: 0 0 15px #1b64da;
}

.social.discord:hover {
  box-shadow: 0 0 15px #7289da;
}

.social.twitter:hover {
  box-shadow: 0 0 15px #1da1f2;
}

.social.linkedin:hover {
  box-shadow: 0 0 15px #0077b5;
}

