<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* æ”¹å–„ã•ã‚ŒãŸå®Ÿç¸¾ã‚¦ã‚£ã‚¸ã‚§ãƒƒãƒˆ */
.stats-card {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.03), rgba(59, 130, 246, 0.05));
    border-radius: 12px;
    overflow: hidden;
}

.stats-header {
    background: var(--color-primary);
    color: white;
    padding: 12px 15px;
    text-align: center;
}

.stats-title {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 2px;
}

.stats-period {
    font-size: 12px;
    opacity: 0.9;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 15px;
    gap: 10px;
}

.stat-item {
    text-align: center;
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
}

.stat-item:hover {
    transform: translateY(-2px);
}

.stat-item.highlight {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.stat-value {
    font-size: 22px;
    font-weight: 800;
    font-family: var(--font-mono);
    margin-bottom: 3px;
    line-height: 1;
}

.stat-label {
    font-size: 11px;
    color: var(--color-text-muted);
    font-weight: 600;
}

.stats-note {
    padding: 0 15px 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.transparency-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(16, 185, 129, 0.1);
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 11px;
    color: var(--color-success);
}

.badge-icon {
    font-weight: bold;
}

.stats-link {
    text-align: center;
    padding: 8px;
    background: var(--color-primary);
    color: white;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    display: block;
}

.stats-link:hover {
    background: var(--color-accent);
    transform: translateY(-1px);
}

/* æ”¹å–„ã•ã‚ŒãŸäººæ°—è¨˜äº‹ã‚¦ã‚£ã‚¸ã‚§ãƒƒãƒˆ */
.popular-posts-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.compact-post {
    padding: 10px 12px;
    background: var(--color-bg-light);
    border-radius: 8px;
    border-left: 3px solid var(--color-primary);
    transition: all 0.2s ease;
}

.compact-post:hover {
    background: white;
    transform: translateX(3px);
    border-left-color: var(--color-accent);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.compact-post-meta {
    margin-bottom: 3px;
}

.compact-post-title {
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
}

.compact-post-title a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.2s ease;
}

.compact-post-title a:hover {
    color: var(--color-primary);
}

.view-all-link {
    display: block;
    text-align: center;
    padding: 8px;
    margin-top: 12px;
    background: var(--color-bg-light);
    border-radius: 6px;
    color: var(--color-primary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.view-all-link:hover {
    background: var(--color-primary);
    color: white;
}

/* ä»Šé€±ã®å®Ÿç¸¾ã‚¦ã‚£ã‚¸ã‚§ãƒƒãƒˆ - æž&nbsp;ãªã—ãƒ•ãƒ«ãƒ¯ã‚¤ãƒ‰ãƒ‡ã‚¶ã‚¤ãƒ³ */
.widget-current-stats {
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
    margin-bottom: var(--spacing-xl);
}

.widget-current-stats .widget-title {
    margin-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--color-accent);
    padding-bottom: var(--spacing-xs);
}

/* å®Ÿç¸¾ã‚«ãƒ¼ãƒ‰å…¨ä½“ */
.stats-card {
    border-radius: 12px;
    overflow: hidden;
}

/* ãƒ˜ãƒƒãƒ€ãƒ¼éƒ¨åˆ† - æ¨ªå¹…ã„ã£ã±ã„ */
.stats-header {
    background: var(--color-primary);
    color: white;
    padding: 15px;
    text-align: center;
    border-radius: 12px 12px 0 0;
}

.stats-title {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 2px;
}

.stats-period {
    font-size: 12px;
    opacity: 0.9;
}

/* çµ±è¨ˆã‚°ãƒªãƒƒãƒ‰ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: white;
    border-left: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
}

.stat-item {
    text-align: center;
    padding: 15px 10px;
    transition: transform 0.2s ease;
    border-right: 1px solid var(--color-border);
}

.stat-item:last-child {
    border-right: none;
}

.stat-item.highlight {
    background: rgba(245, 158, 11, 0.1);
}

.stat-value {
    font-size: 24px;
    font-weight: 800;
    font-family: var(--font-mono);
    margin-bottom: 5px;
    line-height: 1;
}

.stat-value.success {
    color: var(--color-success);
}

.stat-value.primary {
    color: var(--color-primary);
}

.stat-value.accent {
    color: var(--color-accent);
}

.stat-label {
    font-size: 12px;
    color: var(--color-text-muted);
    font-weight: 600;
}

/* ä¸‹éƒ¨ã‚¨ãƒªã‚¢ */
.stats-note {
    background: white;
    padding: 12px 15px 15px;
    border-radius: 0 0 12px 12px;
    border: 1px solid var(--color-border);
    border-top: none;
}

.transparency-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: rgba(16, 185, 129, 0.1);
    padding: 8px 10px;
    border-radius: 20px;
    font-size: 12px;
    color: var(--color-success);
    margin-bottom: 10px;
}

.badge-icon {
    font-weight: bold;
}

.stats-link {
    text-align: center;
    padding: 10px;
    background: var(--color-primary);
    color: white;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    display: block;
}

.stats-link:hover {
    background: var(--color-accent);
    transform: translateY(-1px);
}
</pre></body></html>