Changed around line 1
+ :root {
+ --primary-color: #6c5ce7;
+ --secondary-color: #a8a4e6;
+ --background-dark: #1a1a2e;
+ --text-light: #ffffff;
+ --text-dark: #16161a;
+ --accent-color: #00d2d3;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Inter', sans-serif;
+ background: var(--background-dark);
+ color: var(--text-light);
+ line-height: 1.6;
+ }
+
+ .main-nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 2rem;
+ background: rgba(26, 26, 46, 0.95);
+ backdrop-filter: blur(10px);
+ position: fixed;
+ width: 100%;
+ top: 0;
+ z-index: 1000;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ align-items: center;
+ }
+
+ .nav-links a {
+ color: var(--text-light);
+ text-decoration: none;
+ transition: color 0.3s ease;
+ }
+
+ .nav-links a:hover {
+ color: var(--accent-color);
+ }
+
+ .connect-wallet {
+ background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
+ border: none;
+ padding: 0.5rem 1.5rem;
+ border-radius: 25px;
+ color: var(--text-light);
+ cursor: pointer;
+ transition: transform 0.3s ease;
+ }
+
+ .connect-wallet:hover {
+ transform: translateY(-2px);
+ }
+
+ .hero {
+ height: 100vh;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ text-align: center;
+ padding: 2rem;
+ background: linear-gradient(rgba(26, 26, 46, 0.8), rgba(26, 26, 46, 0.9)),
+ url('data:image/svg+xml,
');
+ background-size: cover;
+ background-position: center;
+ }
+
+ .hero h1 {
+ font-size: 4rem;
+ margin-bottom: 1rem;
+ background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .prediction-cards {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ padding: 2rem;
+ }
+
+ .prediction-card {
+ background: rgba(255, 255, 255, 0.05);
+ border-radius: 15px;
+ padding: 2rem;
+ backdrop-filter: blur(10px);
+ transition: transform 0.3s ease;
+ }
+
+ .prediction-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .crypto-icon {
+ font-size: 2rem;
+ margin-bottom: 1rem;
+ }
+
+ .prediction-meter {
+ height: 10px;
+ background: rgba(255, 255, 255, 0.1);
+ border-radius: 5px;
+ margin: 1rem 0;
+ overflow: hidden;
+ }
+
+ .meter-fill {
+ height: 100%;
+ background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
+ width: 0;
+ transition: width 1s ease;
+ }
+
+ .wallet-container {
+ background: rgba(255, 255, 255, 0.05);
+ border-radius: 15px;
+ padding: 2rem;
+ margin: 2rem;
+ }
+
+ .wallet-actions {
+ display: flex;
+ gap: 1rem;
+ margin: 2rem 0;
+ }
+
+ .action-btn {
+ flex: 1;
+ padding: 1rem;
+ border: none;
+ border-radius: 10px;
+ background: var(--primary-color);
+ color: var(--text-light);
+ cursor: pointer;
+ transition: transform 0.3s ease;
+ }
+
+ .action-btn:hover {
+ transform: translateY(-2px);
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ .hero h1 {
+ font-size: 2.5rem;
+ }
+
+ .prediction-cards {
+ grid-template-columns: 1fr;
+ }
+ }