@charset "UTF-8";
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  line-height: 1.6;
  color: #333333;
  background-color: #FFF5E6;
  transition: background-color 0.3s;
}

h1, h2, h3, h4, h5, h6 {
  color: #333333;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.site-header {
  border-bottom: 2px solid #FF3B3B;
  background-color: #FFF5E6;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.site-header .site-title {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -1px;
  color: #333333;
  text-decoration: none;
  transition: color 0.3s;
}
.site-header .site-title:hover {
  color: #FF3B3B;
}
.site-header .site-nav .page-link {
  color: #333333;
  font-weight: 500;
  text-decoration: none;
  margin-left: 2rem;
  position: relative;
  transition: color 0.3s;
}
.site-header .site-nav .page-link:hover {
  color: #FF3B3B;
}
.site-header .site-nav .page-link:hover::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #FF3B3B;
  transform: scaleX(1);
}

.post {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.post:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.post .post-header {
  margin-bottom: 2rem;
}
.post .post-header .post-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #333333;
  position: relative;
  padding-bottom: 0.5rem;
}
.post .post-header .post-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #FF3B3B;
}
.post .post-header .post-meta {
  color: #666666;
  font-size: 0.9rem;
}
.post .post-featured-image {
  margin-bottom: 2rem;
}
.post .post-featured-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}
.post .post-featured-image img:hover {
  transform: scale(1.02);
}
.post .post-content h2 {
  font-size: 1.8rem;
  margin: 2rem 0 1rem;
  color: #333333;
  position: relative;
  padding-bottom: 0.5rem;
}
.post .post-content h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #FF3B3B;
}
.post .post-content h3 {
  font-size: 1.5rem;
  margin: 1.5rem 0 1rem;
  color: #333333;
}
.post .post-content ul, .post .post-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}
.post .post-content ul li, .post .post-content ol li {
  margin-bottom: 0.5rem;
}
.post .post-content a {
  color: #FF3B3B;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s;
}
.post .post-content a:hover {
  border-bottom-color: #FF3B3B;
}

.cta-banner {
  background: linear-gradient(135deg, #FF3B3B, #FF6B6B);
  border-radius: 12px;
  padding: 2.5rem;
  margin: 3rem 0;
  text-align: center;
  color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}
.cta-banner:hover {
  transform: translateY(-4px);
}
.cta-banner .cta-content {
  max-width: 600px;
  margin: 0 auto;
}
.cta-banner h2 {
  color: white;
  margin-bottom: 1.5rem;
}
.cta-banner .cta-features {
  text-align: left;
  margin: 1.5rem 0;
}
.cta-banner .cta-features ul {
  list-style: none;
  padding: 0;
}
.cta-banner .cta-features li {
  margin: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
}
.cta-banner .cta-features li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #FFD700;
}
.cta-banner .cta-button {
  display: inline-block;
  background: #FFD700;
  color: #333333;
  padding: 1rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.cta-banner .cta-button:hover {
  background: #ccac00;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.home {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}
.home .post-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.home .post-list li {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #FF3B3B;
}
.home .post-list li:last-child {
  border-bottom: none;
}
.home .post-list .post-link {
  font-size: 1.8rem;
  font-weight: 600;
  color: #333333;
  text-decoration: none;
  line-height: 1.3;
  transition: color 0.3s;
}
.home .post-list .post-link:hover {
  color: #FF3B3B;
}
.home .pagination {
  text-align: center;
  margin-top: 3rem;
}
.home .pagination .previous, .home .pagination .next {
  padding: 0.75rem 1.5rem;
  background: #FF3B3B;
  border-radius: 6px;
  text-decoration: none;
  color: white;
  transition: all 0.3s;
}
.home .pagination .previous:hover, .home .pagination .next:hover {
  background: #ff0808;
  transform: translateY(-2px);
}
.home .pagination .page_number {
  margin: 0 1rem;
  color: #666666;
}

@media screen and (max-width: 600px) {
  .site-header .wrapper {
    flex-direction: column;
    padding: 1rem;
  }
  .site-header .site-nav {
    margin-top: 1rem;
  }
  .site-header .site-nav .page-link {
    margin: 0 1rem;
  }
  .post {
    margin: 1rem;
    padding: 1.5rem;
  }
}

/*# sourceMappingURL=style.css.map */