* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", "Roboto", sans-serif;
}

body {
  background-color: #000000;
  color: #ffffff;
  line-height: 1.6;
  padding: 40px;
  padding-top: 0;
  font-weight: 300;
}

.site-header {
  background-color: #dbbc34;
  padding: 15px 0;
  text-align: center;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.site-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 30px;
  display: grid;
  grid-gap: 24px;
}

h2, h3, h4 {
  font-weight: 600;
  margin-bottom: 16px;
  color: #f0f0f0;
}

h2 {
  font-size: 2.5rem;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 2rem;
  border-bottom: 2px solid #333333;
  padding-bottom: 12px;
  margin-bottom: 24px;
}

h4 {
  font-size: 1.2rem;
}

.post {
  background-color: #1a1a1a;
  border: 1px solid #333333;
  padding: 24px;
  margin-bottom: 40px;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.post:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(255, 255, 255, 0.1);
}

.post-header, .comment-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 16px;
  border: 2px solid #dbbc34;
  transition: transform 0.3s ease;
}
.avatar:hover {
  transform: scale(1.1);
}

.username {
  color: #dbbc34;
  font-weight: 500;
}

.post-content, .comment-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #b0b0b0;
}

.comments {
  display: grid;
  grid-gap: 24px;
}

.comment {
  background-color: #1a1a1a;
  border: 1px solid #333333;
  padding: 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.comment:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(255, 255, 255, 0.05);
}
.comment .avatar {
  width: 40px;
  height: 40px;
}

@media (max-width: 600px) {
  .site-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  }
  body {
    padding: 20px;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  .post-content, .comment-content {
    font-size: 1rem;
  }
}
.post, .comment {
  position: relative;
  overflow: hidden;
}
.post::after, .comment::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, rgba(52, 152, 219, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.post:hover::after, .comment:hover::after {
  opacity: 1;
}

::-moz-selection {
  background-color: #dbbc34;
  color: #ffffff;
}

::selection {
  background-color: #dbbc34;
  color: #ffffff;
}/*# sourceMappingURL=main.css.map */
