Changed around line 1
+ :root {
+ --primary: #2a4494;
+ --secondary: #4f6fd9;
+ --accent: #8c9eff;
+ --background: #f5f7ff;
+ --text: #2c3e50;
+ --card-bg: #ffffff;
+ --shadow: rgba(0,0,0,0.1);
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: system-ui, -apple-system, sans-serif;
+ line-height: 1.6;
+ color: var(--text);
+ background: var(--background);
+ }
+
+ header {
+ background: var(--primary);
+ padding: 1rem;
+ position: sticky;
+ top: 0;
+ z-index: 100;
+ box-shadow: 0 2px 8px var(--shadow);
+ }
+
+ nav ul {
+ list-style: none;
+ display: flex;
+ justify-content: center;
+ gap: 2rem;
+ }
+
+ nav a {
+ color: white;
+ text-decoration: none;
+ font-weight: 500;
+ transition: color 0.3s;
+ }
+
+ nav a:hover {
+ color: var(--accent);
+ }
+
+ main {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 2rem;
+ }
+
+ h1 {
+ text-align: center;
+ color: var(--primary);
+ margin-bottom: 3rem;
+ font-size: 2.5rem;
+ }
+
+ .format-cards {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .format-card {
+ background: var(--card-bg);
+ border-radius: 12px;
+ padding: 2rem;
+ box-shadow: 0 4px 12px var(--shadow);
+ transition: transform 0.3s;
+ }
+
+ .format-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .format-card h3 {
+ color: var(--primary);
+ margin-bottom: 1rem;
+ }
+
+ .meter {
+ height: 8px;
+ background: #eee;
+ border-radius: 4px;
+ margin: 1rem 0;
+ overflow: hidden;
+ }
+
+ .fill {
+ height: 100%;
+ border-radius: 4px;
+ animation: fillAnimation 1.5s ease-out forwards;
+ }
+
+ .xml { background: #ff9800; width: 75%; }
+ .json { background: #4caf50; width: 90%; }
+ .scroll { background: #2196f3; width: 85%; }
+ .markdown { background: #9c27b0; width: 80%; }
+
+ @keyframes fillAnimation {
+ from { transform: scaleX(0); }
+ to { transform: scaleX(1); }
+ }
+
+ footer {
+ text-align: center;
+ padding: 2rem;
+ background: var(--primary);
+ color: white;
+ margin-top: 4rem;
+ }
+
+ @media (max-width: 768px) {
+ nav ul {
+ gap: 1rem;
+ flex-wrap: wrap;
+ }
+
+ main {
+ padding: 1rem;
+ }
+
+ h1 {
+ font-size: 2rem;
+ }
+
+ .format-cards {
+ grid-template-columns: 1fr;
+ }
+ }