Changed around line 1
+ :root {
+ --primary: #ff5722;
+ --secondary: #3f51b5;
+ --accent: #ffc107;
+ --dark: #1a1a1a;
+ --light: #f5f5f5;
+ }
+
+ body {
+ font-family: 'Pirata One', cursive;
+ background: linear-gradient(135deg, #0a0a23, #1c1c3d);
+ color: var(--light);
+ line-height: 1.6;
+ }
+
+ .hero {
+ background: url('ship.jpg') center/cover;
+ min-height: 100vh;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ text-align: center;
+ padding: 2rem;
+ }
+
+ .logo {
+ font-size: 2.5rem;
+ font-weight: bold;
+ color: var(--accent);
+ text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ margin-top: 1rem;
+ }
+
+ .hero-content h1 {
+ font-size: 4rem;
+ margin-bottom: 1rem;
+ text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
+ }
+
+ .primary-button {
+ background: var(--primary);
+ padding: 1rem 2rem;
+ border-radius: 25px;
+ text-transform: uppercase;
+ font-weight: bold;
+ transition: all 0.3s ease;
+ }
+
+ .primary-button:hover {
+ transform: scale(1.05);
+ box-shadow: 0 0 20px rgba(255,87,34,0.6);
+ }
+
+ .features {
+ padding: 4rem 2rem;
+ background: var(--dark);
+ }
+
+ .feature-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .feature-card {
+ background: rgba(255,255,255,0.05);
+ padding: 2rem;
+ border-radius: 15px;
+ transition: all 0.3s ease;
+ }
+
+ .feature-card:hover {
+ transform: translateY(-10px);
+ box-shadow: 0 10px 20px rgba(0,0,0,0.3);
+ }
+
+ .feature-icon {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ }
+
+ .tokenomics {
+ padding: 4rem 2rem;
+ background: var(--secondary);
+ }
+
+ .token-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .token-card {
+ background: rgba(255,255,255,0.1);
+ padding: 1.5rem;
+ border-radius: 10px;
+ text-align: center;
+ }
+
+ .join {
+ padding: 4rem 2rem;
+ text-align: center;
+ }
+
+ .exchange-buttons {
+ display: flex;
+ justify-content: center;
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .exchange-button {
+ background: var(--accent);
+ padding: 1rem 2rem;
+ border-radius: 25px;
+ color: var(--dark);
+ font-weight: bold;
+ transition: all 0.3s ease;
+ }
+
+ .exchange-button:hover {
+ transform: scale(1.05);
+ box-shadow: 0 0 20px rgba(255,193,7,0.6);
+ }
+
+ footer {
+ background: var(--dark);
+ padding: 2rem;
+ text-align: center;
+ }
+
+ .footer-links {
+ display: flex;
+ justify-content: center;
+ gap: 2rem;
+ margin-bottom: 1rem;
+ }
+
+ @media (max-width: 768px) {
+ .hero-content h1 {
+ font-size: 3rem;
+ }
+
+ .nav-links {
+ flex-direction: column;
+ gap: 1rem;
+ }
+
+ .feature-grid, .token-grid {
+ grid-template-columns: 1fr;
+ }
+
+ .exchange-buttons {
+ flex-direction: column;
+ gap: 1rem;
+ }
+ }