рдмрдВрдж

    ЁЯУК рдбреЕрд╢рдмреЛрд░реНрдб

    Dashboard :root { --bg-page: #eef3f8; --bg-box: rgba(255, 255, 255, 0.8); --border-box: #d0dce9; --accent: #4a90e2; --text-primary: #1f2d3a; --text-secondary: #6c8ca3; --shadow: 0 12px 30px -8px rgba(74, 144, 226, 0.2); --shadow-hover: 0 16px 40px -10px rgba(74, 144, 226, 0.35); } * { box-sizing: border-box; transition: background-color 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s; } body { margin: 0; font-family: 'Segoe UI', Roboto, sans-serif; background-color: var(--bg-page); color: var(--text-primary); } .dashboard-heading { text-align: center; font-size: clamp(2rem, 5vw, 2.6rem); font-weight: 800; margin: 2rem 1rem; } .box-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; max-width: 1300px; margin: 0 auto; padding: 0 1rem 3rem; } .box-item { position: relative; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 32px 20px; min-height: 170px; border: 1px solid var(--border-box); border-radius: 16px; background: var(--bg-box); backdrop-filter: blur(10px); box-shadow: var(--shadow); color: var(--text-primary); text-decoration: none; transition: all 0.35s ease; overflow: hidden; } .box-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); border-color: var(--accent); } .box-icon { font-size: 50px; margin-bottom: 12px; z-index: 1; } .box-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 6px; z-index: 1; } .box-desc { font-size: 1rem; color: var(--text-secondary); z-index: 1; }

    ЁЯУКрдбреЕрд╢рдмреЛрд░реНрдб