/*
Theme Name: Crypto Darsan
Theme URI: https://example.com/crypto-darsan
Author: samundra
Author URI: https://samundrabogati.com.np/
Description: Modern bright crypto blog theme with ticker, chart widget, and PDF downloads resources page.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: crypto-darsan
Tags: blog, news, custom-menu, featured-images, translation-ready, one-column, two-columns

This file is required by WordPress. It provides theme metadata and can include base styles.
*/

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');


:root {
  --cd-bg: #ffffff;
  --cd-text: #0b1220;
  --cd-muted: #5a6475;
  --cd-card: #ffffff;
  --cd-border: rgba(15, 23, 42, 0.10);
  --cd-accent: #2f6bff; /* Accent color used sparingly */
  --cd-accent-2: #22c55e;
  --cd-radius: 16px;
  --cd-shadow: 0 10px 30px rgba(2,6,23,0.08);
}

body {
  margin: 0;
  background: var(--cd-bg);
  color: var(--cd-text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  line-height: 1.6;
}

.cd-single {
  font-family: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, Inter, Arial, sans-serif;
}
a { color: var(--cd-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.card {
  background: var(--cd-card);
  border: 1px solid var(--cd-border);
  border-radius: var(--cd-radius);
  box-shadow: var(--cd-shadow);
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--cd-border);
  background: #fff;
  color: var(--cd-text);
  font-weight: 600;
}

.button.primary {
  background: var(--cd-accent);
  border-color: var(--cd-accent);
  color: #fff;
}

.small { font-size: 0.92rem; color: var(--cd-muted); }

