/* Moboax Main CSS - Tailwind-inspired Shadcn style */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Host+Grotesk:wght@300;400;500;600;700;800&display=swap');

:root {
    --background: #f8fafc;
    --foreground: #0f172a;
    --primary: #e11d48;
    --primary-foreground: #ffffff;
    --muted: #f1f5f9;
    --muted-foreground: #64748b;
    --border: #e2e8f0;
    --radius: 0.75rem;
    --font-sans: 'Inter', sans-serif;
    --font-display: 'Host Grotesk', sans-serif;
}

body {
    font-family: var(--font-sans);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* AdSense Optimization: Content Widths */
.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.content-area {
    max-width: 800px; /* Optimized for readability and ad placement in sidebars */
    margin-left: auto;
    margin-right: auto;
}

.text-primary { color: var(--primary); }
.bg-primary { background-color: var(--primary); }
.text-muted-foreground { color: var(--muted-foreground); }
.bg-muted { background-color: var(--muted); }
.border-b { border-bottom: 1px solid var(--border); }
.border-t { border-top: 1px solid var(--border); }
.border-y { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* Custom Utilities */
.tracking-tighter { letter-spacing: -0.05em; }
.tracking-widest { letter-spacing: 0.1em; }

/* Prose Styles */
.prose img {
    border-radius: var(--radius);
    margin-bottom: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.prose p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

/* Pagination */
.nav-links {
    display: flex;
    gap: 0.5rem;
}

.page-numbers {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.2s;
}

.page-numbers.current {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

.page-numbers:hover:not(.current) {
    background-color: var(--muted);
}
