* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  display: none;
}

body {
  background-color: #050505;
  color: #e0e0e0;
  font-family: 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  padding: 20px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto 30px auto;
  padding: 15px 0;
}

.logo {
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: 2px;
  text-decoration: none;
  color: #ccc;
}

.accent {
  color: #4ade80;
}

.menu {
  display: flex;
  list-style: none;
  gap: 25px;
}

.link {
  text-decoration: none;
  color: #888;
  font-size: 0.9rem;
  font-weight: 500;
}

.link:hover {
  color: #fff;
}

.wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.tile {
  background: #111;
  border: 1px solid #222;
  border-radius: 24px;
  padding: 30px;
}

.label {
  font-family: monospace;
  color: #444;
  margin-bottom: 15px;
  font-size: 0.8rem;
  text-transform: uppercase;
 
}

.header {
  grid-column: span 2;
  display: flex;
  align-items: center;
  gap: 30px;
}

.pic {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #333;
}

.name {
  font-family: monospace;
  font-size: xxx-large;
  color: lightblue;
  margin-bottom: 10px;
  display: block;
}

.badge {
  color: #4ade80;
  font-family: monospace;
  font-size: medium;
  display: block;
  margin-bottom: 10px;
}

.bio {
  font-size: 1.1rem;
  color: #ccc;
}

.story {
  grid-column: span 1;
}

.story h3 {
  margin-bottom: 10px;
  color: #fff;
}

.story p {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 10px;
}

.stack {
  grid-column: span 1;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tags span {
  background: #1a1a1a;
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  border: 1px solid #333;
}

.gallery {
  grid-column: span 2;
}

.item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #222;
}

.item h4 {
  color: #fff;
  margin-bottom: 5px;
}

.item p {
  color: #888;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.source {
  text-decoration: none;
  color: #4ade80;
  font-size: 0.8rem;
  font-weight: bold;
}

.comments {
  grid-column: span 2;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}

.input,
.area {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 12px;
  color: #fff;
  font-family: inherit;
}

.area {
  min-height: 80px;
  resize: vertical;
}

.button {
  background: #4ade80;
  color: #050505;
  border: none;
  padding: 12px;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
}

.button:hover {
  background: #22c55e;
}

.reach {
  grid-column: span 1;
  text-align: center;
}
.reach .label{
    text-align: left;
}

.email {
  display: block;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  margin: 15px 0;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.platform {
  text-decoration: none;
  color: #888;
  padding: 8px 15px;
  border: 1px solid #333;
  border-radius: 10px;
  font-size: 0.8rem;
}

.footer {
  text-align: center;
  padding: 40px;
  color: #333;
  font-size: 0.8rem;
}

@media (max-width: 900px) {
  .wrapper {
    grid-template-columns: 1fr;
  }

  .header,
  .gallery,
  .comments {
    grid-column: span 1;
  }

  .header {
    flex-direction: column;
    text-align: center;
  }
}
