/*
Theme Name: OnChain Revolution Child
Description: The Block-inspired dark theme for crypto media
Author: OnChainRev Team
Version: 1.0.0
Template: cripton
*/

/* Import parent styles */
@import url('../cripton/style.css');

/* THE BLOCK DARK THEME */
:root {
  --bg-primary: #0b0e11;
  --bg-secondary: #151a21;
  --bg-tertiary: #1a2029;
  --border-color: #2a3441;
  --text-primary: #ffffff;
  --text-secondary: #a0aec0;
  --text-muted: #64748b;
  --accent-orange: #f7931a;
  --accent-purple: #6366f1;
  --positive: #00c853;
  --negative: #ff3d00;
}

/* Base styles */
body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Header */
.site-header {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 2rem;
}

/* Navigation */
.main-navigation {
  background: var(--bg-secondary);
}

.main-navigation a {
  color: var(--text-secondary);
  font-weight: 500;
  padding: 0.75rem 1rem;
}

.main-navigation a:hover {
  color: var(--text-primary);
  background: var(--bg-tertiary);
}

/* Cards */
article, .post, .entry {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Live Ticker */
.live-ticker {
  background: var(--bg-tertiary);
  border-left: 3px solid var(--accent-orange);
  padding: 1rem;
}

/* Buttons */
button, .button {
  background: var(--accent-orange);
  color: var(--bg-primary);
  border: none;
  border-radius: 4px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .site-header { padding: 1rem; }
}
