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

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh;
}

body {
  background-color: #000000;
  font-family: "Inter", sans-serif;
  color: #ffffff;
  display: flex;
  flex-direction: column;
}
body::-webkit-scrollbar {
  width: 8px;
}
body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
}
body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
}
body::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.12);
}

main {
  flex: 1;
  width: 100%;
}

.home-page {
  width: 100%;
}

.home-hero {
  position: relative;
  width: 100%;
  min-height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  overflow: hidden;
}

.home-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(78, 201, 176, 0.05) 0%, transparent 50%), radial-gradient(ellipse at 70% 50%, rgba(78, 201, 176, 0.03) 0%, transparent 50%);
  animation: heroGlow 6s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  from {
    opacity: 0.7;
  }
  to {
    opacity: 1;
  }
}
.home-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

.home-hero-title {
  font-size: clamp(36px, 8vw, 64px);
  font-weight: 900;
  letter-spacing: 4px;
}
.home-hero-title .hero-bracket {
  color: #4ec9b0;
  font-weight: 300;
}
.home-hero-title {
  background: linear-gradient(135deg, #fff 0%, #4ec9b0 50%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.home-hero-subtitle {
  font-size: clamp(16px, 3vw, 20px);
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  max-width: 500px;
}

.home-hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
}

.hero-btn {
  padding: 14px 30px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.hero-btn-primary {
  background: linear-gradient(135deg, #4ec9b0, rgb(53.2987012987, 174.7012987013, 150.025974026));
  color: #000;
}
.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(78, 201, 176, 0.3);
}

.hero-btn-secondary {
  background: transparent;
  color: #4ec9b0;
  border: 1px solid rgba(78, 201, 176, 0.3);
}
.hero-btn-secondary:hover {
  background: rgba(78, 201, 176, 0.08);
  transform: translateY(-3px);
}

.home-posts {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 25px 80px;
}

.home-posts-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 25px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(78, 201, 176, 0.15);
  position: relative;
}
.home-posts-title::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 60px;
  height: 2px;
  background: #4ec9b0;
}

.home-empty {
  text-align: center;
  padding: 40px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 16px;
}

.home-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}
@media (max-width: 400px) {
  .home-posts-grid {
    grid-template-columns: 1fr;
  }
}

.home-post-card {
  display: flex;
  flex-direction: column;
  padding: 25px;
  background: rgba(20, 20, 20, 0.7);
  border: 1px solid rgba(78, 201, 176, 0.08);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.home-post-card:hover {
  border-color: rgba(78, 201, 176, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  background: rgba(25, 25, 25, 0.8);
}

.home-post-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-post-card-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}
.home-post-card-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.home-post-card-avatar {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(78, 201, 176, 0.2);
}

.home-post-card-excerpt {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin: 0 0 15px;
  flex: 1;
}

.home-post-card-stats {
  display: flex;
  gap: 15px;
}
.home-post-card-stats span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}/*# sourceMappingURL=index.css.map */