/* Cloud's Blog - Minimal with Personality */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
  background: #0a0a0a;
  color: #e0e0e0;
  line-height: 1.8;
  font-size: 18px;
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

header {
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #333;
}

.site-header {
  margin-bottom: 0.5rem;
}

.cloud-icon {
  font-size: 2rem;
  display: inline-block;
  margin-right: 0.5rem;
}

.site-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #00ccff;
  display: inline;
}

.site-title a {
  color: #00ccff;
  text-decoration: none;
  border-bottom: none;
}

.site-title a:hover {
  color: #00ffff;
}

.tagline {
  color: #888;
  font-size: 0.95rem;
  font-style: italic;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.about-snippet {
  color: #aaa;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 1rem;
  padding: 1rem;
  background: #111;
  border-left: 3px solid #00ccff;
  border-radius: 4px;
}

nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
  margin-top: 1rem;
}

nav a {
  color: #666;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.2s;
}

nav a:hover {
  color: #00ccff;
  border-bottom-color: #00ccff;
}

h1, h2, h3 {
  color: #00ccff;
  margin: 2rem 0 1rem 0;
  font-weight: 600;
  line-height: 1.3;
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.2rem; color: #e0e0e0; }

article h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin: 1.2rem 0;
}

a {
  color: #00ccff;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

a:hover {
  border-bottom-color: #00ccff;
}

.post-meta {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

code {
  background: #1a1a1a;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  font-size: 0.9em;
  color: #00ffaa;
  font-family: 'SF Mono', 'Monaco', 'Courier New', monospace;
}

pre {
  background: #0d0d0d;
  padding: 1.5rem;
  overflow-x: auto;
  border-left: 3px solid #00ccff;
  margin: 1.5rem 0;
  border-radius: 4px;
}

pre code {
  padding: 0;
  background: none;
  color: #e0e0e0;
}

ul, ol {
  margin: 1rem 0 1rem 2rem;
}

li {
  margin: 0.5rem 0;
}

strong {
  color: #fff;
  font-weight: 600;
}

em {
  color: #ccc;
  font-style: italic;
}

blockquote {
  border-left: 3px solid #444;
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  color: #999;
  font-style: italic;
}

hr {
  border: none;
  border-top: 1px solid #333;
  margin: 3rem 0;
}

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

.post-item {
  margin: 3rem 0;
  padding-bottom: 3rem;
  border-bottom: 1px solid #222;
}

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

.post-title {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.post-excerpt {
  color: #999;
  margin-top: 0.8rem;
  line-height: 1.6;
}

.support-box {
  background: #0f0f0f;
  border: 1px solid #222;
  border-radius: 6px;
  padding: 1.5rem;
  margin: 3rem 0;
  text-align: center;
}

.support-box h3 {
  color: #00ccff;
  font-size: 1.1rem;
  margin: 0 0 0.5rem 0;
}

.support-box p {
  color: #888;
  font-size: 0.9rem;
  margin: 0.5rem 0;
}

.support-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.support-btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 4px;
  color: #00ccff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.support-btn:hover {
  background: #222;
  border-color: #00ccff;
  transform: translateY(-1px);
}

.pixel-ad {
  background: #0d0d0d;
  border: 1px dashed #333;
  border-radius: 4px;
  padding: 1rem;
  margin: 2rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: #666;
}

.pixel-ad a {
  color: #888;
  font-size: 0.8rem;
}

footer {
  margin-top: 5rem;
  padding-top: 2rem;
  border-top: 1px solid #333;
  color: #666;
  font-size: 0.9rem;
  text-align: center;
}

footer p {
  margin: 0.5rem 0;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1rem;
}

@media (max-width: 600px) {
  body {
    padding: 2rem 1rem;
    font-size: 16px;
  }
  
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }
  
  .support-links {
    flex-direction: column;
  }
  
  .support-btn {
    width: 100%;
  }
}

/* Fun Easter egg for the observant */
.secret {
  opacity: 0;
  transition: opacity 0.3s;
}

.secret:hover {
  opacity: 1;
}
