Changed around line 1
+ :root {
+ --primary-color: #6c5ce7;
+ --secondary-color: #a8a4e6;
+ --background-color: #f8f9fa;
+ --card-background: #ffffff;
+ --text-primary: #2d3436;
+ --text-secondary: #636e72;
+ --success-color: #00b894;
+ --danger-color: #d63031;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Segoe UI', system-ui, sans-serif;
+ background: var(--background-color);
+ color: var(--text-primary);
+ line-height: 1.6;
+ }
+
+ /* Header & Navigation */
+ header {
+ background: var(--primary-color);
+ padding: 1rem;
+ box-shadow: 0 2px 10px rgba(0,0,0,0.1);
+ }
+
+ nav {
+ max-width: 1200px;
+ margin: 0 auto;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ color: white;
+ }
+
+ .nav-links {
+ display: flex;
+ list-style: none;
+ gap: 2rem;
+ }
+
+ .nav-links a {
+ color: white;
+ text-decoration: none;
+ transition: color 0.3s ease;
+ }
+
+ .nav-links a:hover {
+ color: var(--secondary-color);
+ }
+
+ /* Search Section */
+ .search-section {
+ padding: 2rem;
+ background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
+ }
+
+ .search-container {
+ max-width: 600px;
+ margin: 0 auto;
+ display: flex;
+ gap: 1rem;
+ }
+
+ #searchInput {
+ flex: 1;
+ padding: 1rem;
+ border: none;
+ border-radius: 8px;
+ font-size: 1rem;
+ box-shadow: 0 4px 6px rgba(0,0,0,0.1);
+ }
+
+ #searchButton {
+ padding: 1rem 2rem;
+ background: var(--card-background);
+ border: none;
+ border-radius: 8px;
+ color: var(--primary-color);
+ font-weight: bold;
+ cursor: pointer;
+ transition: transform 0.2s ease;
+ }
+
+ #searchButton:hover {
+ transform: translateY(-2px);
+ }
+
+ /* Price Grid */
+ .price-grid {
+ max-width: 1200px;
+ margin: 2rem auto;
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
+ gap: 2rem;
+ padding: 0 1rem;
+ }
+
+ .token-card {
+ background: var(--card-background);
+ border-radius: 12px;
+ padding: 1.5rem;
+ box-shadow: 0 4px 6px rgba(0,0,0,0.1);
+ transition: transform 0.3s ease;
+ }
+
+ .token-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .token-icon {
+ width: 50px;
+ height: 50px;
+ background: var(--primary-color);
+ border-radius: 50%;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ color: white;
+ font-weight: bold;
+ margin-bottom: 1rem;
+ }
+
+ .price {
+ font-size: 1.5rem;
+ font-weight: bold;
+ margin: 0.5rem 0;
+ }
+
+ .change {
+ font-weight: bold;
+ }
+
+ .positive {
+ color: var(--success-color);
+ }
+
+ .negative {
+ color: var(--danger-color);
+ }
+
+ /* Footer */
+ footer {
+ background: var(--text-primary);
+ color: white;
+ padding: 3rem 1rem;
+ margin-top: 4rem;
+ }
+
+ .footer-content {
+ max-width: 1200px;
+ margin: 0 auto;
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ }
+
+ .footer-section h4 {
+ margin-bottom: 1rem;
+ }
+
+ .footer-section ul {
+ list-style: none;
+ }
+
+ .footer-section a {
+ color: var(--secondary-color);
+ text-decoration: none;
+ transition: color 0.3s ease;
+ }
+
+ .footer-section a:hover {
+ color: white;
+ }
+
+ /* Mobile Responsiveness */
+ .menu-toggle {
+ display: none;
+ flex-direction: column;
+ gap: 4px;
+ cursor: pointer;
+ }
+
+ .menu-toggle span {
+ width: 25px;
+ height: 3px;
+ background: white;
+ border-radius: 3px;
+ transition: 0.3s;
+ }
+
+ @media (max-width: 768px) {
+ .menu-toggle {
+ display: flex;
+ }
+
+ .nav-links {
+ display: none;
+ position: absolute;
+ top: 70px;
+ left: 0;
+ right: 0;
+ background: var(--primary-color);
+ flex-direction: column;
+ padding: 1rem;
+ text-align: center;
+ }
+
+ .nav-links.active {
+ display: flex;
+ }
+
+ .search-container {
+ flex-direction: column;
+ }
+
+ .price-grid {
+ grid-template-columns: 1fr;
+ }
+ }