body {
  margin: 0; background: #0f0f0f; color: #f2f2f2;
  font-family: 'Poppins', sans-serif;
}
#particles-js { position: fixed; width: 100%; height: 100%; z-index: -1; top: 0; left: 0; }
header {
  background: url('../image/dis2.png') center/cover no-repeat;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}
header::after {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
}
header h1, header p, header a {
  position: relative; z-index: 1;
}
header h1 {
  font-size: 4rem; color: #ff4c00; margin: 0;
  text-shadow: 0 0 15px #ff4c00;
}
#typing-animation {
  font-family: 'Source Code Pro', monospace;
  font-size: 1.3rem; color: #f2f2f2;
  margin-top: 20px; white-space: pre;
}
header a {
  display: inline-block; padding: 12px 24px; background: #ff4c00; color: #fff;
  text-decoration: none; border-radius: 4px; margin-top: 30px;
  box-shadow: 0 0 10px #ff4c00;
}
header a:hover {
  background: #e04800;
  box-shadow: 0 0 20px #ff4c00;
}
section {
  padding: 60px 20px; max-width: 1100px; margin: auto;
}
h2 {
  color: #ff4c00; border-bottom: 2px solid #ff4c00; padding-bottom: 8px; margin-bottom: 30px;
  text-shadow: 0 0 10px #ff4c00;
}
.services, .projects {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px;
}
.card {
  background: #1a1a1a; border-radius: 6px; overflow: hidden; position: relative;
  box-shadow: 0 0 12px rgba(255,76,0,0.3);
  transition: 0.4s ease;
}
.card:hover {
  box-shadow: 0 0 20px rgba(255,76,0,0.6);
  transform: translateY(-5px);
}
.card img {
  width: 100%; height: 160px; object-fit: cover; opacity: 0.5;
}
.card h3 { padding: 20px; margin: 0; }
footer {
  text-align: center; padding: 30px; background: #1a1a1a; color: #ccc; margin-top: 50px;
}
.cookie-banner {
  position: fixed; bottom: 0; width: 100%; background: #1a1a1a; color: #f2f2f2; padding: 15px;
  text-align: center; border-top: 2px solid #ff4c00;
}
.cookie-banner button {
  background: #ff4c00; border: none; color: #fff; padding: 8px 14px; margin-left: 10px;
  border-radius: 4px; cursor: pointer;
}

#contact img {
  box-shadow: 0 0 10px #ff4c00;
}
#contact a {
  text-decoration: none;
  font-weight: 600;
}
#contact a:hover {
  text-shadow: 0 0 10px #ff4c00;
}
#tweets iframe {
  border-radius: 10px;
}
#cursor {
  font-family: 'Source Code Pro', monospace;
  color: #ff4c00;
  font-size: 1.3rem;
  animation: blink 0.8s infinite;
  margin-left: 2px;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  50.01%, 100% { opacity: 0; }
}

#typing-container {
  max-width: 90%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  text-align: center;
  margin: 0 auto;
  display: inline-block;
  word-break: break-word;
}

#typing-animation {
  display: inline;
  word-wrap: break-word;
  word-break: break-word;
}

#cursor {
  font-family: 'Source Code Pro', monospace;
  color: #ff4c00;
  font-size: 1.3rem;
  animation: blink 0.8s infinite;
  margin-left: 2px;
  display: inline;
}

@media screen and (max-width: 600px) {
  #typing-animation {
    font-size: 1rem;
  }
  #cursor {
    font-size: 1rem;
  }
}

.cookie-banner a {
  color: #ff4c00;
  text-decoration: underline;
  margin: 0 5px;
}
.cookie-banner a:hover {
  text-shadow: 0 0 5px #ff4c00;
}

header::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.02) 0px,
    rgba(255,255,255,0.02) 1px,
    transparent 1px,
    transparent 3px
  );
  z-index: 0;
  mix-blend-mode: overlay;
  pointer-events: none;
  animation: glitchMove 1.5s infinite linear;
}

@keyframes glitchMove {
  0% { background-position: 0 0; }
  50% { background-position: 0 2px; }
  100% { background-position: 0 0; }
}


