
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

:root {
    --primary: #1a73e8; /* Google Blue */
    --text: #202124;
    --text-muted: #5f6368;
    --border: #dadce0;
    --bg: #ffffff;
    --bg-alt: #f8f9fa;
    --link: #1a0dab;
    --radius: 8px;
    --footer-bg: #f8f9fa;
    --footer-text: #3c4043;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Roboto', arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.5;
    font-size: 16px;
}

a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Header - Simple & Clean */
header {
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    background: #fff;
}
header .container { display: flex; align-items: center; justify-content: space-between; }
.logo { font-size: 22px; color: var(--text); text-decoration: none; display: flex; align-items: center; gap: 8px; font-weight: 500; }
.logo:hover { text-decoration: none; }
.logo img { height: 24px; width: 24px; }
.nav-links { display: flex; gap: 24px; font-size: 14px; color: var(--text-muted); }
.nav-links a { color: var(--text-muted); text-decoration: none; }
.nav-links a:hover { color: var(--primary); }

/* Breadcrumb - Text based */
.breadcrumb { padding: 16px 0; font-size: 14px; color: var(--text-muted); }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb span { margin: 0 8px; color: var(--border); }

/* Ad Containers - Explicit Semantic Dimensions */
.ad-container {
    background: #f8f9fa;
    border: 1px solid #f1f3f4;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 24px 0;
    color: #bdc1c6;
    font-size: 11px;
    text-transform: uppercase;
    overflow: hidden;
}
.ad-leaderboard { min-height: 90px; width: 100%; max-width: 970px; margin-left: auto; margin-right: auto; }
.ad-auto-slot { min-height: 250px; margin: 32px 0; border: none; background: transparent; }

/* Hero */
.hero { padding: 40px 0 24px; }
h1 { font-family: 'Google Sans', 'Roboto', sans-serif; font-size: 32px; font-weight: 400; margin-bottom: 12px; color: #202124; }
.lead { font-size: 18px; color: var(--text-muted); max-width: 800px; margin-bottom: 32px; }

/* Stats - Minimalist */
.stats-bar { display: flex; flex-wrap: wrap; gap: 32px; padding: 24px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 40px; }
.stat { display: flex; flex-direction: column; }
.stat strong { font-size: 24px; font-weight: 400; color: var(--primary); }
.stat span { font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); }

/* Grid - High Contrast cards */
.section-title { font-size: 22px; font-weight: 400; margin: 48px 0 24px; border-bottom: 2px solid var(--primary); display: inline-block; padding-bottom: 8px; }
.clean-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 16px; }
.clean-card {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px;
    background: #fff;
    transition: box-shadow 0.2s;
    display: block;
}
.clean-card:hover { box-shadow: 0 1px 3px rgba(60,64,67,0.3); text-decoration: none; border-color: transparent; }
.cc-title { font-size: 16px; font-weight: 500; color: var(--primary); display: block; margin-bottom: 4px; }
.cc-meta { font-size: 13px; color: var(--text-muted); }
.cc-pill { display: inline-block; background: #e8f0fe; color: var(--primary); padding: 2px 8px; border-radius: 12px; font-size: 12px; margin-top: 8px; font-weight: 500; }

/* Data Table */
.table-responsive { width: 100%; overflow-x: auto; border: 1px solid var(--border); border-radius: 8px; margin-top: 24px; }
table { width: 100%; border-collapse: collapse; min-width: 600px; }
th { text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--border); background: #f8f9fa; font-size: 13px; font-weight: 500; color: var(--text-muted); }
td { padding: 12px 16px; border-bottom: 1px solid var(--border); font-size: 14px; }
tr:last-child td { border-bottom: none; }

/* Buttons */
.action-btn {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 500;
    margin-right: 12px;
    margin-bottom: 12px;
}
.action-btn:hover { background: #174ea6; text-decoration: none; box-shadow: 0 1px 2px rgba(60,64,67,0.3); }
.btn-secondary { background: #fff; color: var(--primary); border: 1px solid var(--border); }
.btn-secondary:hover { background: #f8f9fa; }

/* Footer - Legal Strict */
footer { background: var(--footer-bg); border-top: 1px solid var(--border); margin-top: 64px; padding: 48px 0; font-size: 13px; color: var(--text-muted); }
.footer-row { display: flex; flex-wrap: wrap; gap: 48px; border-bottom: 1px solid var(--border); padding-bottom: 32px; margin-bottom: 24px; }
.footer-col h4 { color: #202124; font-size: 14px; font-weight: 500; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.legal-block { color: #70757a; line-height: 1.6; }
