* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; color: #1a1a2e; line-height: 1.7; background: #f5f6fa; }
.header { background: linear-gradient(135deg, #0f3460, #16213e); color: #fff; padding: 2.5rem 1.5rem; text-align: center; }
.header h1 { font-size: 2.2rem; margin-bottom: 0.3rem; letter-spacing: -0.5px; }
.header p { opacity: 0.85; font-size: 1.05rem; }
.nav { background: #fff; padding: 0.7rem 1.5rem; box-shadow: 0 2px 8px rgba(0,0,0,0.06); display: flex; gap: 1.2rem; flex-wrap: wrap; justify-content: center; position: sticky; top: 0; z-index: 100; }
.nav a { color: #0f3460; text-decoration: none; font-weight: 500; font-size: 0.9rem; padding: 0.3rem 0.6rem; border-radius: 6px; transition: background 0.2s; }
.nav a:hover { background: #e8eaf6; }
.container { max-width: 1140px; margin: 2rem auto; padding: 0 1.5rem; }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.card { background: #fff; border-radius: 14px; padding: 1.5rem; text-decoration: none; color: #1a1a2e; box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: transform 0.2s, box-shadow 0.2s; display: block; border: 1px solid #eee; }
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.card-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.card-top img { border-radius: 10px; background: #f0f0f0; flex-shrink: 0; }
.card-name { font-weight: 700; font-size: 1.1rem; }
.card-cat { font-size: 0.8rem; color: #888; }
.card-stats { display: flex; gap: 1rem; margin: 10px 0; font-size: 0.85rem; }
.stat { background: #f5f6fa; padding: 4px 10px; border-radius: 6px; }
.stat-label { color: #888; font-size: 0.75rem; }
.stat-value { font-weight: 700; color: #0f3460; }
.card-cta { display: inline-block; margin-top: 10px; background: #0f3460; color: #fff; padding: 8px 20px; border-radius: 8px; font-weight: 600; font-size: 0.9rem; text-align: center; width: 100%; }
.card-cta:hover { background: #1a4a8a; }
.card-cta.pending { background: #ccc; color: #666; }
.section-title { font-size: 1.5rem; font-weight: 700; margin: 2.5rem 0 1rem; color: #0f3460; border-bottom: 3px solid #0f3460; padding-bottom: 0.5rem; display: inline-block; }
.breadcrumb { padding: 1rem 0; font-size: 0.85rem; color: #999; }
.breadcrumb a { color: #0f3460; text-decoration: none; }
.intro { margin-bottom: 2rem; font-size: 1.05rem; color: #555; max-width: 800px; }
.footer { text-align: center; padding: 2.5rem 1rem; color: #999; font-size: 0.85rem; border-top: 1px solid #eee; margin-top: 3rem; background: #fff; }
.footer a { color: #0f3460; text-decoration: none; }
.hero-stats { display: flex; gap: 2rem; justify-content: center; margin-top: 1.5rem; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat-num { font-size: 2rem; font-weight: 800; }
.hero-stat-label { font-size: 0.85rem; opacity: 0.8; }
.review-detail { max-width: 800px; margin: 0 auto; }
.review-header { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 2rem; }
.review-header img { border-radius: 14px; background: #f0f0f0; }
.review-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.5rem 0; }
.meta-item { background: #f5f6fa; padding: 1rem; border-radius: 10px; }
.meta-label { font-size: 0.8rem; color: #888; text-transform: uppercase; letter-spacing: 0.5px; }
.meta-value { font-size: 1.1rem; font-weight: 700; color: #0f3460; }
.review-body { line-height: 1.8; font-size: 1.02rem; }
.review-body h2 { color: #0f3460; margin: 1.5rem 0 0.8rem; font-size: 1.3rem; }
.review-body p { margin-bottom: 1rem; color: #444; }
.review-body ul { margin: 0.5rem 0 1rem 1.5rem; }
.review-body li { margin-bottom: 0.4rem; color: #444; }
.cta-box { background: linear-gradient(135deg, #0f3460, #1a4a8a); color: #fff; padding: 2rem; border-radius: 14px; text-align: center; margin: 2rem 0; }
.cta-box a { display: inline-block; background: #fff; color: #0f3460; padding: 12px 32px; border-radius: 10px; font-weight: 700; text-decoration: none; font-size: 1.1rem; margin-top: 1rem; }
.related { margin-top: 2rem; }
.related h3 { color: #0f3460; margin-bottom: 1rem; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; }
.related-card { background: #fff; padding: 1rem; border-radius: 10px; text-decoration: none; color: #333; box-shadow: 0 2px 6px rgba(0,0,0,0.06); display: flex; align-items: center; gap: 10px; }
.related-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
@media (max-width: 600px) { .grid { grid-template-columns: 1fr; } .review-meta { grid-template-columns: 1fr; } .hero-stats { gap: 1rem; } }