/* Emerald & Gold Design System */ @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@400;500;600;700&display=swap'); :root { --emerald-dark: #0a2b1f; --emerald: #1e4a3a; --emerald-light: #2c6e4f; --gold: #d4af37; --gold-dark: #b38f2a; --gold-light: #f5e6b0; --bg-dark: #0a1a12; --bg-card: rgba(15, 43, 31, 0.92); --text-light: #f8f8f2; --text-dim: #c0c0b0; --glass-border: rgba(212, 175, 55, 0.25); --card-radius: 20px; } * { margin: 0; padding: 0; box-sizing: border-box; } body { background: linear-gradient(135deg, var(--bg-dark) 0%, var(--emerald-dark) 100%); font-family: 'Inter', sans-serif; color: var(--text-light); line-height: 1.6; overflow-x: hidden; } /* Gold accents */ .gold-text { color: var(--gold); } .gold-border { border-color: var(--gold); } .gold-glow { box-shadow: 0 0 15px rgba(212, 175, 55, 0.3); } .bg-gold { background: var(--gold); color: var(--emerald-dark); } /* Glass card */ .glass-card { background: var(--bg-card); backdrop-filter: blur(12px); border: 1px solid var(--glass-border); border-radius: var(--card-radius); transition: all 0.3s ease; } .glass-card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: 0 10px 30px rgba(0,0,0,0.3); } /* Buttons */ .btn { border-radius: 40px; padding: 0.75rem 1.5rem; font-weight: 600; transition: all 0.2s ease; } .btn-primary { background: linear-gradient(135deg, var(--emerald), var(--gold-dark)); border: none; color: #fff; } .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4); } .btn-outline-gold { border: 1px solid var(--gold); background: transparent; color: var(--gold); } .btn-outline-gold:hover { background: var(--gold); color: var(--emerald-dark); } .btn-outline-light { border: 1px solid rgba(255,255,255,0.3); color: var(--text-dim); } .btn-outline-light:hover { background: rgba(255,255,255,0.1); color: white; } /* Form controls */ .form-control, .form-select { background: rgba(0,0,0,0.4); border: 1px solid rgba(212, 175, 55, 0.3); color: var(--text-light); border-radius: 40px; padding: 0.75rem 1.25rem; } .form-control:focus, .form-select:focus { background: rgba(0,0,0,0.6); border-color: var(--gold); box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25); color: var(--text-light); } label { font-weight: 500; margin-bottom: 0.5rem; } /* Upload area */ .upload-area { border: 2px dashed rgba(212, 175, 55, 0.5); border-radius: 24px; transition: all 0.3s ease; cursor: pointer; } .upload-area:hover, .upload-area.drag-over { border-color: var(--gold); background: rgba(212, 175, 55, 0.1); } .upload-area i { font-size: 3rem; color: var(--gold); margin-bottom: 1rem; } /* Sticky sidebar (used in admin) */ .sidebar { position: sticky; top: 0; height: 100vh; overflow-y: auto; background: var(--bg-card); backdrop-filter: blur(12px); border-right: 1px solid var(--glass-border); } .sidebar .nav-link { color: var(--text-dim); padding: 0.75rem 1rem; border-radius: 40px; margin-bottom: 0.5rem; transition: all 0.2s; } .sidebar .nav-link:hover, .sidebar .nav-link.active { background: rgba(212, 175, 55, 0.2); color: var(--gold); } /* Result card */ .result-card { display: flex; flex-wrap: wrap; gap: 2rem; padding: 2rem; } .result-img { width: 240px; height: 240px; object-fit: cover; border-radius: 24px; } .result-title { font-size: 2rem; margin-bottom: 0.5rem; } .stat-card { background: rgba(0,0,0,0.3); border-radius: 24px; padding: 1.5rem; transition: transform 0.2s; } .stat-card:hover { transform: translateY(-4px); } /* Responsive */ @media (max-width: 768px) { .result-card { flex-direction: column; } .result-img { width: 100%; height: auto; } .sidebar { position: relative; height: auto; } }