:root {
  --bg: #0b0c10;
  --bg-alt: #111320;
  --text: #f5f5f7;
  --accent: #f4c542;
  --accent-soft: #2b2f4a;
  --link: #7ac7ff;
  --border-subtle: #2c2f3b;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "Fira Code", "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

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

body {
  margin: 0;
  font-family: var(--font-sans);
  background: radial-gradient(circle at top, #14172b, #050608);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: var(--link);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

.container {
  width: min(1100px, 100% - 2rem);
  margin: 0 auto;
}

.site-header {
  background: rgba(5, 6, 12, 0.9);
  border-bottom: 1px solid var(--border-subtle);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.site-title a {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.site-title .tagline {
  display: block;
  font-size: 0.8rem;
  color: #a0a3c0;
}

.main-nav a {
  margin-left: 1rem;
  font-size: 0.95rem;
}

.main-nav a:hover {
  color: var(--accent);
}

.site-main {
  padding: 1.5rem 0 3rem;
}

.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 1.5rem 0 2rem;
  background: #050608;
  font-size: 0.85rem;
  color: #a0a3c0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.home-start {
  margin-bottom: 2rem;
}

.home-start h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.home-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.home-grid article {
  background: linear-gradient(145deg, var(--bg-alt), #14172b);
  border-radius: 1rem;
  padding: 1rem 1.2rem;
  border: 1px solid var(--border-subtle);
}

.home-grid h2 {
  margin-top: 0;
  font-size: 1.1rem;
  color: var(--accent);
}

.post {
  background: rgba(9, 10, 20, 0.95);
  border-radius: 1rem;
  padding: 1.5rem 1.5rem 1.75rem;
  border: 1px solid var(--border-subtle);
}

.post h1 {
  margin-top: 0;
}

.post .meta {
  font-size: 0.85rem;
  color: #a0a3c0;
}

.post-content {
  margin-top: 1rem;
}

.post-content pre,
.post-content code {
  font-family: var(--font-mono);
}

.post-content pre {
  background: #050608;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  overflow-x: auto;
  border: 1px solid var(--border-subtle);
}

.post-content code {
  background: #14172b;
  padding: 0.1rem 0.3rem;
  border-radius: 0.25rem;
}

.post-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.post-list li {
  padding: 0.5rem 0;
  border-bottom: 1px dashed var(--border-subtle);
}

.post-list li:last-child {
  border-bottom: none;
}

.post-list .meta {
  display: block;
  font-size: 0.8rem;
  color: #a0a3c0;
}
.big-img{
	width:auto;
}
@media (max-width: 700px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}
