* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: #f5f5f5;
  color: #1a1a1a;
  min-height: 100vh;
}

/* Hero Section - Inspired by David Providence's design */
.hero {
  background: #e8e8e8;
  padding: 100px 20px 120px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  opacity: 1;
}

.hero::before {
  top: -150px;
  left: -200px;
  background: radial-gradient(circle, #d0d0d0 2px, transparent 2px);
  background-size: 20px 20px;
}

.hero::after {
  bottom: -100px;
  right: -150px;
  background: radial-gradient(circle, #c0c0c0 2px, transparent 2px);
  background-size: 15px 15px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 96px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 30px;
  letter-spacing: -4px;
  line-height: 0.9;
}

.hero p {
  font-size: 24px;
  color: #1a1a1a;
  margin-bottom: 50px;
  line-height: 1.5;
  max-width: 900px;
  font-weight: 400;
}

.hero-stats {
  display: flex;
  gap: 80px;
  margin-top: 50px;
}

.stat {
  text-align: left;
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: #1a1a1a;
  display: block;
  letter-spacing: -2px;
}

.stat-label {
  font-size: 16px;
  color: #666;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

/* Main Container */
.container {
  max-width: 700px;
  margin: -80px auto 40px;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Post Input Area */
.post-input-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e0e0;
}

.post-input-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #e0e0e0;
}

textarea {
  width: 100%;
  background: #f8f8f8;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  color: #1a1a1a;
  padding: 15px;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  resize: none;
  min-height: 100px;
  margin-bottom: 15px;
  transition: border-color 0.3s;
}

textarea:focus {
  outline: none;
  border-color: #1a1a1a;
  background: white;
}

textarea::placeholder {
  color: #999;
}

.post-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.category-select {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  color: #1a1a1a;
  padding: 10px 15px;
  font-size: 14px;
  cursor: pointer;
}

.post-btn {
  background: #1a1a1a;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.post-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Posts Feed */
.post {
  background: white;
  border-radius: 16px;
  padding: 25px;
  margin-bottom: 20px;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #e0e0e0;
}

.post:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.post-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.post-author {
  flex: 1;
}

.author-name {
  font-weight: 600;
  color: #1a1a1a;
  font-size: 15px;
  margin-bottom: 2px;
}

.post-time {
  font-size: 13px;
  color: #999;
}

.category-badge {
  background: #f0f0f0;
  color: #1a1a1a;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.post-content {
  color: #4a4a4a;
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 15px;
}

.post-actions-bar {
  display: flex;
  gap: 25px;
  padding-top: 15px;
  border-top: 1px solid #e0e0e0;
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  font-size: 14px;
  transition: color 0.2s;
  padding: 0;
}

.action-btn:hover {
  color: #1a1a1a;
}

.action-btn i {
  font-size: 16px;
}

.liked {
  color: #e74c3c !important;
}

.bookmarked {
  color: #f39c12 !important;
}

/* Replies Section */
.replies-section {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}

.reply {
  background: #f8f8f8;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 10px;
}

.reply-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.reply-avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
}

.reply-author {
  font-weight: 600;
  font-size: 14px;
  color: #1a1a1a;
}

.reply-content {
  color: #4a4a4a;
  font-size: 14px;
  line-height: 1.5;
  padding-left: 45px;
}

.hidden {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 42px;
  }

  .hero-stats {
    gap: 30px;
  }

  .stat-number {
    font-size: 28px;
  }
}
