/*
Theme Name: AdSense Fast Approval
Theme URI: http://example.com/adsense-fast
Author: Antigravity
Description: A lightweight, SEO-optimized theme designed specifically for Google AdSense approval. High speed, mobile-first.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: blog, one-column, right-sidebar, accessibility-ready
*/

/* Reset & Base */
:root {
    --primary: #2c3e50;
    --accent: #3498db;
    --bg: #f8f9fa;
    --text: #333;
    --white: #ffffff;
    --max-width: 1100px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    margin: 0;
    padding: 0;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* AdSense Placeholders - Critical for User Visibility */
.ad-slot {
    background: #e9ecef;
    border: 1px dashed #ccc;
    text-align: center;
    padding: 20px;
    margin: 20px 0;
    color: #777;
    font-size: 0.9em;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ad-label { font-weight: bold; display: block; margin-bottom: 5px; text-transform: uppercase; font-size: 0.7em; }

/* Layout */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr; /* Content + Sidebar */
    gap: 40px;
}

header.site-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 20px 0;
    margin-bottom: 30px;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.site-title a {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
}

/* Navigation */
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

/* Main Content */
article.post {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    margin-bottom: 30px;
}

.post-title { margin-top: 0; color: var(--primary); }
.post-meta { font-size: 0.85em; color: #888; margin-bottom: 15px; }

/* Sidebar */
aside.sidebar {
    padding-top: 0;
}
.widget {
    background: var(--white);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
}
.widget-title { border-bottom: 2px solid var(--accent); padding-bottom: 10px; margin-bottom: 15px; font-size: 1.1em; }

/* Footer */
footer.site-footer {
    background: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 40px 0;
    margin-top: 50px;
}
footer a { color: #bdc3c7; }

/* Responsive */
@media (max-width: 768px) {
    .container { grid-template-columns: 1fr; }
    .header-inner { flex-direction: column; text-align: center; gap: 15px; }
}
