Changed around line 1
+ :root {
+ --primary: #00c9a7;
+ --secondary: #845ec2;
+ --background: #1a1a1a;
+ --surface: #2d2d2d;
+ --text: #ffffff;
+ --text-secondary: #b3b3b3;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Segoe UI', sans-serif;
+ background-color: var(--background);
+ color: var(--text);
+ line-height: 1.6;
+ min-height: 100vh;
+ display: flex;
+ flex-direction: column;
+ }
+
+ header {
+ background: var(--surface);
+ padding: 1.5rem;
+ text-align: center;
+ }
+
+ h1 {
+ color: var(--primary);
+ font-size: 2.5rem;
+ }
+
+ nav ul {
+ list-style: none;
+ display: flex;
+ justify-content: center;
+ gap: 2rem;
+ margin-top: 1rem;
+ }
+
+ nav a {
+ color: var(--text-secondary);
+ text-decoration: none;
+ transition: color 0.3s;
+ }
+
+ nav a:hover {
+ color: var(--primary);
+ }
+
+ main {
+ flex: 1;
+ padding: 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ width: 100%;
+ }
+
+ .stats-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 1.5rem;
+ margin-top: 1.5rem;
+ }
+
+ .stat-card {
+ background: var(--surface);
+ padding: 1.5rem;
+ border-radius: 8px;
+ text-align: center;
+ }
+
+ .stat-value {
+ font-size: 2rem;
+ color: var(--primary);
+ margin-top: 0.5rem;
+ }
+
+ .trade-table {
+ background: var(--surface);
+ border-radius: 8px;
+ overflow: hidden;
+ margin-top: 1.5rem;
+ }
+
+ .trade-header {
+ display: grid;
+ grid-template-columns: repeat(6, 1fr);
+ padding: 1rem;
+ background: var(--background);
+ font-weight: bold;
+ }
+
+ .trade-entries {
+ padding: 1rem;
+ }
+
+ .add-trade-btn {
+ background: var(--primary);
+ color: var(--background);
+ border: none;
+ padding: 0.75rem 1.5rem;
+ border-radius: 4px;
+ margin-top: 1rem;
+ cursor: pointer;
+ transition: opacity 0.3s;
+ }
+
+ .add-trade-btn:hover {
+ opacity: 0.9;
+ }
+
+ .chart-container {
+ background: var(--surface);
+ padding: 1.5rem;
+ border-radius: 8px;
+ margin-top: 1.5rem;
+ }
+
+ footer {
+ background: var(--surface);
+ padding: 1rem;
+ text-align: center;
+ margin-top: auto;
+ }
+
+ @media (max-width: 768px) {
+ .stats-grid {
+ grid-template-columns: 1fr;
+ }
+
+ .trade-header {
+ grid-template-columns: repeat(3, 1fr);
+ }
+ }