/* Light Mode (Default) */ :root { --primary: #6366f1; --primary-hover: #4f46e5; --secondary: rgba(0, 0, 0, 0.05); --bg-color: #f1f5f9; --text-main: #334155; --text-muted: #64748b; --glass-bg: rgba(255, 255, 255, 0.8); --glass-border: rgba(0, 0, 0, 0.1); } /* Dark Mode */ [data-theme="dark"] { --primary: #818cf8; --primary-hover: #6366f1; --secondary: rgba(255, 255, 255, 0.1); --bg-color: #0f172a; --text-main: #f8fafc; --text-muted: #94a3b8; --glass-bg: rgba(30, 41, 59, 0.7); --glass-border: rgba(255, 255, 255, 0.08); } * { box-sizing: border-box; margin: 0; padding: 0; } body { font-family: 'Inter', sans-serif; background-color: var(--bg-color); color: var(--text-main); min-height: 100vh; overflow-x: hidden; position: relative; line-height: 1.5; } .blob-bg { position: fixed; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.15), transparent 60%), radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.15), transparent 50%); z-index: -1; pointer-events: none; } .glass-nav { display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 5%; background: var(--glass-bg); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--glass-border); position: sticky; top: 0; z-index: 100; } .logo { font-size: 1.5rem; font-weight: 800; color: var(--text-main); text-decoration: none; letter-spacing: -0.5px; } .logo span { color: var(--primary); } .nav-links { display: flex; align-items: center; gap: 1.5rem; } .welcome-text { color: var(--text-muted); font-size: 0.95rem; } .btn-primary, .btn-primary-small, .btn-danger, .btn-secondary { background: var(--primary); color: white; border: none; border-radius: 8px; font-weight: 600; cursor: pointer; transition: all 0.2s ease; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; } .btn-primary:hover, .btn-primary-small:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3); } .btn-primary { padding: 0.875rem 1.5rem; width: 100%; font-size: 1rem; margin-top: 1rem; } .btn-primary-small { padding: 0.5rem 1rem; font-size: 0.9rem; } .btn-secondary { background: var(--secondary); margin-top: 1rem; padding: 0.875rem 1.5rem; width: 100%; } .btn-secondary:hover { background: rgba(255, 255, 255, 0.2); } .btn-danger { background: #ef4444; } .btn-danger:hover { background: #dc2626; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3); } .btn-secondary-small { background: transparent; color: var(--text-main); border: 1px solid var(--glass-border); border-radius: 8px; padding: 0.5rem 1rem; font-size: 0.9rem; cursor: pointer; text-decoration: none; transition: all 0.2s; } .btn-secondary-small:hover { background: var(--secondary); border-color: rgba(255, 255, 255, 0.2); } .container { max-width: 1200px; margin: 3rem auto; padding: 0 5%; } .glassmorphism { background: var(--glass-bg); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid var(--glass-border); border-radius: 16px; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); } .auth-card { max-width: 420px; margin: 4rem auto; padding: 2.5rem; } .auth-card h2 { font-size: 1.75rem; margin-bottom: 0.5rem; font-weight: 800; } .subtitle { color: var(--text-muted); margin-bottom: 2rem; font-size: 0.95rem; } .auth-form p { margin-bottom: 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; } .auth-form label { font-size: 0.9rem; color: var(--text-muted); font-weight: 600; } .auth-form input, .auth-form textarea { width: 100%; padding: 0.75rem 1rem; background: var(--bg-color); border: 1px solid var(--glass-border); border-radius: 8px; color: var(--text-main); font-family: inherit; transition: all 0.2s; } .auth-form input:focus, .auth-form textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2); } .auth-form ul.errorlist { color: #ef4444; list-style: none; font-size: 0.85rem; margin-top: 0.25rem; } .auth-footer { margin-top: 1.5rem; text-align: center; font-size: 0.9rem; color: var(--text-muted); } .auth-footer a { color: var(--primary); text-decoration: none; font-weight: 600; } .auth-footer a:hover { text-decoration: underline; } /* Base layouts for later use */ .item-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem; } .item-card { padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; transition: transform 0.3s ease, box-shadow 0.3s ease; } .item-card:hover { transform: translateY(-5px); box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3); } .item-img { width: 100%; height: 200px; object-fit: cover; border-radius: 8px; background: var(--bg-color); }