/* Comments Section */
.gh-comments-area {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px solid rgba(255,255,255,0.1);
}

.gh-comments-header {
  margin-bottom: 32px;
}

.gh-comments-title {
  margin: 0 0 24px 0;
  font-size: 28px;
  font-weight: 700;
  color: #e6edf3;
  letter-spacing: -0.5px;
}

.gh-comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gh-comment-item {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.gh-comment-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.gh-comment-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gh-comment-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.gh-comment-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(229,9,20,0.3);
  flex-shrink: 0;
}

.gh-comment-author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gh-comment-author-name {
  font-size: 16px;
  font-weight: 600;
  color: #e6edf3;
  font-style: normal;
  margin: 0;
}

.gh-comment-author-name a {
  color: #e6edf3;
  text-decoration: none;
  transition: color 0.2s ease;
}

.gh-comment-author-name a:hover {
  color: #e50914;
}

.gh-comment-time {
  font-size: 13px;
  color: #8b949e;
  font-weight: 400;
}

.gh-comment-content {
  margin-left: 64px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  border-left: 3px solid rgba(229,9,20,0.5);
  line-height: 1.6;
  color: #e6edf3;
}

.gh-comment-content p {
  margin: 0 0 12px 0;
  font-size: 15px;
  line-height: 1.6;
}

.gh-comment-content p:last-child {
  margin-bottom: 0;
}

.gh-comment-actions {
  margin-left: 64px;
  display: flex;
  gap: 16px;
}

.gh-comment-reply a,
.gh-comment-edit-link {
  font-size: 13px;
  color: #40bdf4;
  text-decoration: none;
  font-weight: 500;
  padding: 6px 12px;
  background: rgba(64,189,244,0.1);
  border-radius: 6px;
  transition: all 0.2s ease;
  display: inline-block;
}

.gh-comment-reply a:hover,
.gh-comment-edit-link:hover {
  background: rgba(64,189,244,0.2);
  color: #e50914;
}

.gh-no-comments {
  text-align: center;
  padding: 40px 20px;
  color: #8b949e;
  font-size: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
}

/* Comment Form */
.gh-comment-respond {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 2px solid rgba(255,255,255,0.1);
}

.gh-comment-respond .gh-comment-title {
  margin: 0 0 8px 0;
  font-size: 24px;
  font-weight: 700;
  color: #e6edf3;
  letter-spacing: -0.5px;
}

.gh-comment-respond .gh-cancel-reply {
  margin-left: 16px;
  font-size: 14px;
}

.gh-comment-respond .gh-cancel-reply a {
  color: #8b949e;
  text-decoration: none;
  padding: 4px 12px;
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  transition: all 0.2s ease;
}

.gh-comment-respond .gh-cancel-reply a:hover {
  background: rgba(229,9,20,0.2);
  color: #e50914;
}

.gh-comment-notes {
  margin: 0 0 24px 0;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  font-size: 13px;
  color: #8b949e;
  line-height: 1.5;
}

.gh-comment-form {
  margin-top: 24px;
}

.gh-comment-form .gh-form-group {
  margin-bottom: 24px;
}

.gh-comment-form .gh-form-label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #e6edf3;
}

.gh-comment-form .gh-form-label .required {
  color: #e50914;
  margin-left: 2px;
}

.gh-comment-form .gh-form-input,
.gh-comment-form .gh-form-textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  color: #e6edf3;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.gh-comment-form .gh-form-input:focus,
.gh-comment-form .gh-form-textarea:focus {
  outline: none;
  background: rgba(255,255,255,0.08);
  border-color: rgba(229,9,20,0.5);
  box-shadow: 0 0 0 3px rgba(229,9,20,0.1);
}

.gh-comment-form .gh-form-input::placeholder,
.gh-comment-form .gh-form-textarea::placeholder {
  color: #6e7681;
}

.gh-comment-form .gh-form-textarea {
  min-height: 150px;
  resize: vertical;
  line-height: 1.6;
}

.gh-comment-form .gh-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.gh-comment-form .gh-btn-submit {
  margin-top: 8px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  background: #e50914;
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.gh-comment-form .gh-btn-submit:hover {
  background: #ff1a2a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(229,9,20,0.3);
}

.gh-comment-form .gh-btn-submit:active {
  transform: translateY(0);
}

/* Comment Cookies Checkbox */
.gh-comment-form .comment-form-cookies-consent {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
}

.gh-comment-form .comment-form-cookies-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #e50914;
  flex-shrink: 0;
}

.gh-comment-form .comment-form-cookies-consent label {
  font-size: 13px;
  color: #8b949e;
  cursor: pointer;
  line-height: 1.5;
  margin: 0;
}

/* Comment Pagination */
.gh-comments-pagination {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.gh-pagination-prev,
.gh-pagination-next {
  padding: 10px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: #e6edf3;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.gh-pagination-prev:hover,
.gh-pagination-next:hover {
  background: rgba(229,9,20,0.2);
  border-color: rgba(229,9,20,0.5);
  color: #fff;
}

/* Responsive Comments */
@media (max-width: 768px) {
  .gh-comment-content,
  .gh-comment-actions {
    margin-left: 0;
  }
  
  .gh-comment-author {
    flex-wrap: wrap;
  }
  
  .gh-comment-form .gh-form-row {
    grid-template-columns: 1fr;
  }
  
  .gh-comments-pagination {
    flex-direction: column;
  }
}

