/* pokauma.com — Simplified static rebuild
   Original: WordPress + LION BLOG theme
   Accent color from original CSS: #a8cc66 (green) */

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic Medium", YuGothic, "Noto Sans JP", Meiryo, sans-serif;
  line-height: 1.8;
  color: #333;
  background: #f5f5f5;
}

.site-header {
  background: #fff;
  border-bottom: 3px solid #a8cc66;
  padding: 16px 0;
  text-align: center;
}

.site-header .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  text-decoration: none;
}

.site-header .logo span {
  color: #a8cc66;
}

.site-header .tagline {
  font-size: 0.85rem;
  color: #888;
  margin-top: 4px;
}

.content-wrap {
  max-width: 780px;
  margin: 30px auto;
  padding: 0 20px;
}

article {
  background: #fff;
  border-radius: 4px;
  padding: 30px 35px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

article .post-meta {
  font-size: 0.85rem;
  color: #999;
  margin-bottom: 10px;
}

article h1 {
  font-size: 1.6rem;
  line-height: 1.4;
  color: #333;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #a8cc66;
}

article h2 {
  font-size: 1.3rem;
  color: #333;
  margin: 30px 0 15px;
  padding: 8px 0 8px 14px;
  border-left: 4px solid #a8cc66;
}

article h3 {
  font-size: 1.1rem;
  color: #333;
  margin: 25px 0 12px;
}

article h4 {
  font-size: 1rem;
  color: #555;
  margin: 20px 0 10px;
}

article p {
  margin: 0 0 16px;
}

article a {
  color: #5b8c2a;
  text-decoration: underline;
}

article a:hover {
  color: #a8cc66;
}

article img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 16px auto;
  border-radius: 3px;
}

article ul, article ol {
  margin: 0 0 16px 1.5em;
}

article li {
  margin-bottom: 6px;
}

article blockquote {
  border-left: 4px solid #a8cc66;
  background: #f9f9f2;
  padding: 12px 18px;
  margin: 16px 0;
  font-style: italic;
  color: #555;
}

article table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.95rem;
}

article th, article td {
  border: 1px solid #ddd;
  padding: 8px 12px;
  text-align: left;
}

article th {
  background: #a8cc66;
  color: #fff;
  font-weight: bold;
}

article tr:nth-child(even) {
  background: #f9f9f9;
}

/* Info/note boxes (used in poker strategy content) */
.info-box {
  background: #eef6dd;
  border: 1px solid #c5db9e;
  border-radius: 4px;
  padding: 14px 18px;
  margin: 16px 0;
}

.warn-box {
  background: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 4px;
  padding: 14px 18px;
  margin: 16px 0;
}

/* Code / hand notation */
code {
  background: #f0f0f0;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 0.9em;
  font-family: "Source Code Pro", monospace;
}

pre {
  background: #f0f0f0;
  padding: 14px;
  border-radius: 4px;
  overflow-x: auto;
  margin: 16px 0;
  font-size: 0.9rem;
}

/* Poker hand display */
.hand {
  font-weight: bold;
  font-family: "Source Code Pro", monospace;
}
.suit-s { color: #333; }  /* spades */
.suit-c { color: #2a7e2a; }  /* clubs */
.suit-h { color: #cc3333; }  /* hearts */
.suit-d { color: #3366cc; }  /* diamonds */

.site-footer {
  text-align: center;
  padding: 30px 20px;
  font-size: 0.8rem;
  color: #999;
  border-top: 1px solid #e0e0e0;
  margin-top: 40px;
}

/* Category/Tag stub pages */
.stub-page {
  text-align: center;
  padding: 60px 20px;
}

.stub-page h1 {
  border-bottom: none;
  font-size: 1.4rem;
}

.stub-page p {
  color: #888;
}

/* Responsive */
@media (max-width: 600px) {
  article {
    padding: 20px 18px;
  }
  article h1 {
    font-size: 1.3rem;
  }
  article h2 {
    font-size: 1.15rem;
  }
}
