/*
Theme Name: Bloomingcamellia
Theme URI: https://yourdomain.com
Author: Bloomingcamellia Team
Description: Elegant novel reading platform with coin monetization, gamification & app-like UI
Version: 1.0.0
Text Domain: bloomingcamellia
*/

:root {
  --crimson: #C41E3A;
  --cream: #F5F0E8;
  --text: #2D2420;
  --bg: #F5F0E8;
  --card: #FFFFFF;
  --overlay: rgba(0,0,0,0.65);
  --radius: 12px;
}
[data-theme="dark"] {
  --bg: #1A1A2E;
  --text: #E8E6E3;
  --card: #23233A;
  --crimson: #E63946;
  --overlay: rgba(0,0,0,0.85);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Merriweather', Georgia, serif; background: var(--bg); color: var(--text); line-height: 1.6; }
a { color: var(--crimson); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.btn { display: inline-block; padding: 10px 20px; background: var(--crimson); color: #fff; border-radius: 8px; font-weight: 600; cursor: pointer; border: none; }
.btn:hover { opacity: 0.9; }
.card { background: var(--card); border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.08); transition: transform 0.2s; }
.card:hover { transform: translateY(-4px); }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.badge { display: inline-block; padding: 4px 10px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.badge-free { background: #d4edda; color: #155724; }
.badge-premium { background: #f8d7da; color: #721c24; }
.badge-ongoing { background: #fff3cd; color: #856404; }
.badge-completed { background: #d1ecf1; color: #0c5460; }
/* Mobile */
@media(max-width:768px) {
  .grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .bc-reader-header { flex-wrap: wrap; gap: 10px; }
}