:root {
    --primary: #00b67a;
    --primary-dark: #009a65;
    --secondary: #1a1f36;
    --gray-bg: #f8f9fa;
    --border-radius: 12px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', system-ui, -apple-system, sans-serif; background: var(--gray-bg); color: #1e293b; line-height: 1.5; }
h1, h2, h3, h4, h5, h6 { font-weight: 700; letter-spacing: -0.02em; }
a { text-decoration: none; transition: all 0.2s ease; }
.btn-primary { background-color: var(--primary); border-color: var(--primary); }
.btn-primary:hover, .btn-primary:focus { background-color: var(--primary-dark); border-color: var(--primary-dark); }
.btn-outline-primary { border-color: var(--primary); color: var(--primary); }
.btn-outline-primary:hover { background-color: var(--primary); border-color: var(--primary); color: white; }
.card { border: none; border-radius: var(--border-radius); box-shadow: var(--box-shadow); transition: transform 0.2s, box-shadow 0.2s; }
.card:hover { transform: translateY(-2px); box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08); }
.star-rating { color: #ffb800; font-size: 1rem; letter-spacing: 2px; }
.search-box { border-radius: 60px; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
.search-box input { border: none; padding: 0.9rem 1.5rem; }
.search-box input:focus { outline: none; box-shadow: none; }
.search-box button { background: var(--primary); border: none; padding: 0 2rem; color: white; font-weight: 600; }
.search-box button:hover { background: var(--primary-dark); }
.badge-sponsored { background: #ffedd5; color: #b45309; font-size: 0.7rem; padding: 4px 10px; border-radius: 20px; font-weight: 500; }
.avatar-group img { width: 36px; height: 36px; border-radius: 50%; border: 2px solid white; margin-left: -10px; }
.avatar-group img:first-child { margin-left: 0; }
.footer { background: #0b1120; color: #9ca3af; }
.footer a { color: #9ca3af; transition: color 0.2s; }
.footer a:hover { color: white; }
.sidebar { position: fixed; top: 0; left: 0; height: 100vh; width: 260px; background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%); color: white; z-index: 1000; }
.sidebar a { color: #cbd5e1; }
.sidebar a:hover, .sidebar a.active { background: rgba(255,255,255,0.1); color: white; }
.main-content { margin-left: 260px; padding: 1.5rem; }
.stat-card { background: white; border-radius: 20px; padding: 1.25rem; box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
.rounded-4 { border-radius: 1rem !important; }
.shadow-soft { box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); }
@media (max-width: 768px) {
    .sidebar { transform: translateX(-100%); transition: transform 0.3s; }
    .sidebar.open { transform: translateX(0); }
    .main-content { margin-left: 0; }
}