* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  width: 100%;
}

body {
  background: #000000;
  color: #ffffff;
  font-family: "Courier New", monospace;
  font-size: 16px;
  line-height: 1.4;
  overflow: hidden;
  min-height: 100vh;
  position: relative;
}
@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

.original-site {
  display: none;
  background: #000000;
  min-height: 100vh;
  font-family: "Courier New", monospace;
  color: #560505;
  overflow-x: hidden;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(86, 5, 5, 0.1) 2px,
    rgba(86, 5, 5, 0.1) 4px
  );
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
header {
  border-bottom: 1px solid #560505;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  
}
.logo {
  font-size: 18px;
  font-weight: normal;
  color: #560505;
  font-family: "Courier New", monospace;
}
.logo::before {
  content: "cyrix@terminal:~$ ";
  color: #ffffff;
}
nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}
nav a {
  color: #560505;
  text-decoration: none;
  font-weight: normal;
  transition: color 0.3s ease;
  font-family: "Courier New", monospace;
}
nav a:hover {
  color: #ffff00;
  text-decoration: underline;
}
nav a::before {
  content: "[";
  color: #ffffff;
}
nav a::after {
  content: "]";
  color: #ffffff;
}
main {
  padding: 40px 0;
}
.main-content {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 60px;
  border: 1px solid #560505;
  padding: 20px;
  background: rgba(42, 2, 2, 0.05);
}
.text-content {
  flex: 1;
}
.text-content p {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 15px;
  color: #560505;
  font-family: "Courier New", monospace;
}
.intro-text {
  font-size: 18px;
  font-weight: normal;
  color: #560505;
}
.intro-text::before {
  content: "> ";
  color: #560505;
}
.highlight-text {
  color: #560505;
  font-weight: normal;
}
.highlight-text::before {
  content: "$ ";
  color: #560505;
}
.casual-text {
  font-style: normal;
  color: #ffffff;
}
.casual-text::before {
  content: "// ";
  color: #888888;
}
.image-container {
  flex: 0 0 250px;
  border: 1px solid #560505;
  padding: 10px;
  background: rgba(42, 2, 2, 0.05);
}
.image {
  width: 100%;
  height: auto;
  border: none;
  border-radius: 0;
  box-shadow: none;
  filter: contrast(1.2) brightness(0.9);
}
.blog-section {
  margin-top: 60px;
  border: 1px solid #560505;
  padding: 20px;
  background: rgba(42, 2, 2, 0.05);
}

.blog-title {
  font-size: 20px;
  font-weight: normal;
  color: #560505;
  margin-bottom: 20px;
  text-align: left;
  font-family: "Courier New", monospace;
}

.blog-title::before {
  content: "=== ";
  color: #560505;
}

.blog-title::after {
  content: " ===";
  color: #560505;
}

.blog-posts-container {
  background: transparent;
  backdrop-filter: none;
  border-radius: 0;
  padding: 0;
}

.blog-posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.blog-skeleton {
  background: rgba(0, 255, 0, 0.1);
  height: 120px;
  border: 1px solid #560505;
  border-radius: 0;
  animation: pulse 2s infinite;
}

.blog-post {
  background: rgba(0, 255, 0, 0.05);
  border: 1px solid #560505;
  border-radius: 0;
  padding: 15px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-post:hover {
  transform: none;
  box-shadow: none;
  background: rgba(0, 255, 0, 0.1);
  border-color: #560505;
}

.blog-post-title {
  font-size: 16px;
  font-weight: normal;
  color: #560505;
  margin-bottom: 8px;
  font-family: "Courier New", monospace;
}

.blog-post-title::before {
  content: "* ";
  color: #560505;
}

.blog-post-excerpt {
  color: #560505;
  line-height: 1.4;
  font-size: 14px;
  font-family: "Courier New", monospace;
}

.blog-post-date {
  color: #560505;
  font-size: 12px;
  font-weight: normal;
  margin-bottom: 10px;
  font-family: "Courier New", monospace;
}

.blog-post-date::before {
  content: "* ";
  color: #888888;
}
.site-footer {
  border-top: 1px solid #560505;
  padding: 20px 0;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #560505;

  font-family: "Courier New", monospace;
}

.copyright {
  font-size: 12px;
}
.copyright::before {
  content: "(c) ";
  color: #888888;
}
.terms-link {
  color: #560505;
  text-decoration: none;
  font-weight: normal;
}
.terms-link:hover {
  text-decoration: underline;
  color: #ffff00;
}
.terms-link::before {
  content: "[";
  color: #ffffff;
}
.terms-link::after {
  content: "]";
  color: #ffffff;
}
@media (max-width: 768px) {
  .main-content {
    flex-direction: column;
    text-align: left;
    gap: 20px;
  }
  .image-container {
    flex: none;
    max-width: 200px;
  }
  .blog-posts {
    grid-template-columns: 1fr;
  }
  .footer-content {
    flex-direction: column;
    gap: 10px;
    text-align: left;
  }
  nav ul {
    gap: 15px;
  }
  .text-content p {
    font-size: 14px;
  }
  .intro-text {
    font-size: 16px;
  }
}
