Changed around line 1
+ :root {
+ --primary-color: #2196F3;
+ --secondary-color: #FFC107;
+ --background-color: #f5f5f5;
+ --text-color: #333;
+ --card-bg: #fff;
+ --shadow: 0 2px 8px rgba(0,0,0,0.1);
+ }
+
+ body {
+ font-family: 'Segoe UI', system-ui, sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ background-color: var(--background-color);
+ margin: 0;
+ padding: 0;
+ }
+
+ .hero {
+ background: linear-gradient(135deg, var(--primary-color), #1976D2);
+ color: white;
+ padding: 4rem 1rem;
+ text-align: center;
+ }
+
+ .hero-content h1 {
+ font-size: 2.5rem;
+ margin: 0;
+ }
+
+ .hero-content h2 {
+ font-size: 1.5rem;
+ margin: 0.5rem 0 0;
+ font-weight: 400;
+ }
+
+ .shortcuts {
+ max-width: 1200px;
+ margin: 2rem auto;
+ padding: 0 1rem;
+ }
+
+ .shortcut-category {
+ margin-bottom: 2rem;
+ }
+
+ .shortcut-category h3 {
+ color: var(--primary-color);
+ margin-bottom: 1rem;
+ font-size: 1.25rem;
+ }
+
+ .shortcut-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 1rem;
+ }
+
+ .shortcut {
+ background: var(--card-bg);
+ padding: 1rem;
+ border-radius: 8px;
+ box-shadow: var(--shadow);
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ transition: transform 0.2s;
+ }
+
+ .shortcut:hover {
+ transform: translateY(-4px);
+ }
+
+ .shortcut div:first-child {
+ font-weight: bold;
+ color: var(--primary-color);
+ font-size: 1.1rem;
+ margin-bottom: 0.5rem;
+ }
+
+ .footer-content {
+ text-align: center;
+ padding: 2rem 1rem;
+ color: #666;
+ }
+
+ @media print {
+ body {
+ background: white;
+ color: black;
+ }
+
+ .hero {
+ background: white;
+ color: black;
+ padding: 1rem;
+ }
+
+ .shortcut {
+ box-shadow: none;
+ border: 1px solid #ddd;
+ }
+
+ .footer-content {
+ display: none;
+ }
+ }
+
+ @media (max-width: 600px) {
+ .hero-content h1 {
+ font-size: 2rem;
+ }
+
+ .hero-content h2 {
+ font-size: 1.25rem;
+ }
+
+ .shortcut-grid {
+ grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
+ }
+ }