* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color palette - adjust to match your brand */
    --text-primary: #1a1a1a;
    --text-secondary: #666;
    --text-muted: #999;
    --accent-color: #2563eb;
    --accent-hover: #1d4ed8;
    --bg-code: #f5f5f5;
    --bg-highlight: #fef3c7;
    --bg-callout: #eff6ff;
    --border-color: #e5e5e5;
    --border-callout: #93c5fd;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background: #fafafa;
}

.article-container {
    display: flex;
    position: absolute;
    top: 35px;
    width: 100%;
    justify-content: center;
    padding: 40px 20px;
    gap: 40px;
}

.blog-article {
    max-width: 750px;
    width: 100%;
    background: white;
    padding: 60px 80px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* ============================================
   ARTICLE HEADER
   ============================================ */
.article-header {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
}

.article-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text-primary);
    font-family: 'Montserrat', sans-serif;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.article-separator {
    color: var(--text-muted);
}

.article-date,
.article-read-time,
.article-author {
    font-weight: 400;
}

/* Optional article summary/subtitle */
.article-summary {
    margin-top: 20px;
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-secondary);
    font-weight: 300;
}

/* ============================================
   ARTICLE CONTENT - TYPOGRAPHY
   ============================================ */
.article-content {
    font-size: 1.05rem;
}

/* Headings */
.article-content h2 {
    font-size: 1.875rem;
    font-weight: 600;
    margin: 48px 0 10px 0;
    line-height: 1.3;
    color: var(--text-primary);
}

.article-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 16px 0 16px 0;
    line-height: 1.3;
    color: var(--text-primary);
}

.article-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 28px 0 12px 0;
    line-height: 1.4;
    color: var(--text-primary);
}

/* First h2 shouldn't have top margin */
.article-content h2:first-child {
    margin-top: 0;
}

/* Paragraphs */
.article-content p {
    margin-bottom: 15px;
    line-height: 1.7;
    font-family: 'Roboto Slab', sans-serif;
}
.article-content p:last-child {
    margin-bottom: 25px;
}

/* Lists */
.article-content ul,
.article-content ol {
    margin: 20px 0;
    padding-left: 28px;
}

.article-content li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.article-content ul ul,
.article-content ol ol,
.article-content ul ol,
.article-content ol ul {
    margin: 8px 0;
}

/* ============================================
   INLINE TEXT FORMATTING
   ============================================ */
.article-content strong,
.article-content b {
    font-weight: 600;
    color: var(--text-primary);
    font-family: inherit;
}

.article-content em,
.article-content i {
    font-style: italic;
}

.article-content a {
    color: var(--accent-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.article-content a:hover {
    border-bottom-color: var(--accent-color);
}

/* Inline code */
.article-content code {
    font-family: 'Roboto Mono', 'Courier New', monospace;
    font-size: 0.9em;
    background: var(--bg-code);
    padding: 2px 6px;
    border-radius: 3px;
    color: #d73a49;
}

/* Code blocks */
.article-content pre {
    background: var(--bg-code);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 20px;
    margin: 24px 0;
    overflow-x: auto;
    font-size: 0.9rem;
    line-height: 1.5;
}

.article-content pre code {
    background: none;
    padding: 0;
    color: var(--text-primary);
    font-size: 1em;
}

/* ============================================
   SPECIAL CONTENT BLOCKS
   ============================================ */

/* Blockquotes */
.article-content blockquote {
    margin: 28px 0;
    padding: 16px 24px;
    border-left: 4px solid var(--accent-color);
    background: var(--bg-code);
    font-style: italic;
    color: var(--text-secondary);
}

.article-content blockquote p:last-child {
    margin-bottom: 0;
}

/* Callout boxes - great for tips, warnings, examples */
.callout {
    margin: 28px 0;
    padding: 20px 24px;
    border-radius: 6px;
    border-left: 4px solid;
}

.callout-info {
    background: var(--bg-callout);
    border-color: var(--border-callout);
}

.callout-tip {
    background: #f0fdf4;
    border-color: #86efac;
}

.callout-warning {
    background: #fef3c7;
    border-color: #fbbf24;
}

.callout-example {
    background: #faf5ff;
    border-color: #c084fc;
}

.callout-title {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.callout p:last-child {
    margin-bottom: 0;
}

/* Tables */
.article-content table {
    width: 100%;
    margin: 28px 0;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.article-content th,
.article-content td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.article-content th {
    background: var(--bg-code);
    font-weight: 600;
    color: var(--text-primary);
}

.article-content tr:last-child td {
    border-bottom: none;
}

/* Images */
.article-content img {
    max-width: 100%;
    height: auto;
    margin: 32px 0;
    border-radius: 6px;
}

.article-content figure {
    margin: 32px 0;
}

.article-content figcaption {
    margin-top: 12px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
    font-style: italic;
}

/* Horizontal rule */
.article-content hr {
    margin: 48px 0;
    border: none;
    border-top: 1px solid var(--border-color);
}

/* ============================================
   POKER-SPECIFIC ELEMENTS
   ============================================ */

/* Hand ranges in monospace */
.hand-range {
    font-family: 'Roboto Mono', monospace;
    font-weight: 500;
    color: var(--accent-color);
    font-size: 0.95em;
}

/* Stats/percentages */
.stat {
    font-weight: 600;
    color: var(--accent-color);
}

/* Position labels */
.position {
    display: inline-block;
    padding: 2px 8px;
    background: var(--bg-code);
    border-radius: 4px;
    font-size: 0.9em;
    font-weight: 500;
    text-transform: uppercase;
}

/* Action labels (raise, call, fold, etc) */
.action {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9em;
}

.action-raise { color: #dc2626; }
.action-call { color: #16a34a; }
.action-fold { color: #64748b; }
.action-check { color: #0891b2; }

/* ============================================
   ARTICLE FOOTER
   ============================================ */
.article-footer {
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.article-tag {
    display: inline-block;
    padding: 6px 12px;
    background: var(--bg-code);
    color: var(--text-secondary);
    border-radius: 16px;
    font-size: 0.875rem;
    text-decoration: none;
    transition: background 0.2s;
}

.article-tag:hover {
    background: #e5e5e5;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .article-container {
        padding: 20px 10px;
    }

    .blog-article {
        padding: 32px 24px;
    }

    .article-header h1 {
        font-size: 2rem;
    }

    .article-content {
        font-size: 1rem;
    }

    .article-content h2 {
        font-size: 1.5rem;
        margin: 32px 0 16px 0;
    }

    .article-content h3 {
        font-size: 1.25rem;
        margin: 24px 0 12px 0;
    }

    .article-content pre {
        padding: 12px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .blog-article {
        padding: 24px 16px;
    }

    .article-header h1 {
        font-size: 1.75rem;
    }

    .article-meta {
        flex-wrap: wrap;
    }
}