Changed around line 1
+ :root {
+ --primary-color: #2c3e50;
+ --secondary-color: #3498db;
+ --accent-color: #e67e22;
+ --background-color: #f5f6fa;
+ --text-color: #2c3e50;
+ --white: #ffffff;
+ --shadow: 0 2px 10px 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;
+ }
+
+ header {
+ background: var(--primary-color);
+ color: var(--white);
+ padding: 2rem;
+ text-align: center;
+ }
+
+ h1 {
+ font-size: 2.5rem;
+ margin: 0;
+ }
+
+ h2 {
+ color: var(--primary-color);
+ margin-bottom: 1.5rem;
+ }
+
+ main {
+ max-width: 1200px;
+ margin: 2rem auto;
+ padding: 0 1rem;
+ }
+
+ .stats-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 1.5rem;
+ margin-bottom: 3rem;
+ }
+
+ .stat-card {
+ background: var(--white);
+ padding: 1.5rem;
+ border-radius: 8px;
+ box-shadow: var(--shadow);
+ text-align: center;
+ }
+
+ .stat-value {
+ font-size: 2rem;
+ color: var(--secondary-color);
+ margin: 0.5rem 0;
+ }
+
+ .shares-chart {
+ background: var(--white);
+ padding: 2rem;
+ border-radius: 8px;
+ box-shadow: var(--shadow);
+ margin-bottom: 3rem;
+ }
+
+ .chart-bar {
+ background: var(--accent-color);
+ width: 100%;
+ border-radius: 4px;
+ transition: height 0.3s ease;
+ }
+
+ .chart-labels {
+ display: flex;
+ justify-content: space-between;
+ margin-top: 0.5rem;
+ color: var(--text-color);
+ }
+
+ table {
+ width: 100%;
+ border-collapse: collapse;
+ background: var(--white);
+ box-shadow: var(--shadow);
+ border-radius: 8px;
+ overflow: hidden;
+ }
+
+ th, td {
+ padding: 1rem;
+ text-align: left;
+ }
+
+ th {
+ background: var(--primary-color);
+ color: var(--white);
+ }
+
+ tr:nth-child(even) {
+ background: var(--background-color);
+ }
+
+ footer {
+ text-align: center;
+ padding: 1.5rem;
+ background: var(--primary-color);
+ color: var(--white);
+ margin-top: 3rem;
+ }
+
+ @media (max-width: 768px) {
+ h1 {
+ font-size: 2rem;
+ }
+
+ .stats-grid {
+ grid-template-columns: 1fr;
+ }
+
+ table {
+ display: block;
+ overflow-x: auto;
+ }
+ }