/* content/theme.css */
:root { --bg-deep: #040a10; --bg-card: #0b1c2c; --bg-hover: #11263c; --text-main: #e9ecef; --text-muted: #88929c; --brand-gold: #cfb53b; --border-light: rgba(255, 255, 255, 0.1); }
body { background-color: var(--bg-deep); color: var(--text-main); font-family: sans-serif; margin: 0; line-height: 1.6; }
.content-container { max-width: 1200px; margin: 60px auto; padding: 0 20px; }
.page-header { text-align: center; margin-bottom: 60px; }
.page-title { color: var(--brand-gold); font-family: 'Times New Roman', Times, serif; font-size: 2.8rem; margin: 0 0 15px 0; text-transform: uppercase; }
.page-subtitle { color: var(--text-muted); font-size: 1.2rem; letter-spacing: 1px; text-transform: uppercase; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 30px; margin-bottom: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-bottom: 40px; }
.card { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: 8px; padding: 30px; box-shadow: 0 4px 15px rgba(0,0,0,0.4); }
.card h3 { color: #fff; margin-top: 0; border-bottom: 1px solid var(--border-light); padding-bottom: 15px; margin-bottom: 20px; font-size: 1.3rem; }
.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li { position: relative; padding-left: 25px; margin-bottom: 12px; color: var(--text-main); }
.feature-list li::before { content: '■'; position: absolute; left: 0; top: 0; color: var(--brand-gold); font-size: 0.8rem; }
.highlight-box { background: rgba(207, 181, 59, 0.05); border: 1px dashed var(--brand-gold); border-radius: 8px; padding: 30px; text-align: center; margin-top: 40px; }
.highlight-box h3 { color: var(--brand-gold); margin-top: 0; }
.btn-cta { display: inline-block; background: var(--brand-gold); color: #000; padding: 12px 30px; border-radius: 4px; font-weight: bold; text-decoration: none; margin-top: 20px; text-transform: uppercase; transition: background 0.2s; }
.btn-cta:hover { background: #b8a033; }