Changed around line 1
+ :root {
+ --deep-blue: #001830;
+ --ocean-blue: #003366;
+ --biolum: #00ffff;
+ --text-light: #ffffff;
+ --text-dark: #333333;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Arial', sans-serif;
+ line-height: 1.6;
+ color: var(--text-light);
+ background: var(--deep-blue);
+ }
+
+ .main-header {
+ position: fixed;
+ width: 100%;
+ z-index: 1000;
+ background: rgba(0, 24, 48, 0.9);
+ backdrop-filter: blur(10px);
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 5%;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ color: var(--biolum);
+ text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
+ }
+
+ .nav-links {
+ display: flex;
+ list-style: none;
+ gap: 2rem;
+ }
+
+ .nav-links a {
+ color: var(--text-light);
+ text-decoration: none;
+ transition: color 0.3s ease;
+ }
+
+ .nav-links a:hover {
+ color: var(--biolum);
+ }
+
+ .menu-toggle {
+ display: none;
+ }
+
+ .hero {
+ height: 100vh;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ text-align: center;
+ position: relative;
+ overflow: hidden;
+ }
+
+ .parallax-bg {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ background: linear-gradient(180deg, var(--ocean-blue) 0%, var(--deep-blue) 100%);
+ z-index: -1;
+ }
+
+ .hero h1 {
+ font-size: 4rem;
+ margin-bottom: 1rem;
+ text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
+ }
+
+ .cards {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ padding: 2rem;
+ }
+
+ .card {
+ background: rgba(255, 255, 255, 0.1);
+ padding: 2rem;
+ border-radius: 15px;
+ backdrop-filter: blur(5px);
+ transition: transform 0.3s ease;
+ }
+
+ .card:hover {
+ transform: translateY(-10px);
+ }
+
+ .creature-gallery {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 2rem;
+ padding: 2rem;
+ }
+
+ .creature {
+ aspect-ratio: 1;
+ position: relative;
+ overflow: hidden;
+ border-radius: 10px;
+ cursor: pointer;
+ }
+
+ .creature-inner {
+ width: 100%;
+ height: 100%;
+ background: rgba(0, 255, 255, 0.1);
+ transition: transform 0.5s ease;
+ }
+
+ .creature:hover .creature-inner {
+ transform: scale(1.1);
+ }
+
+ footer {
+ background: rgba(0, 24, 48, 0.9);
+ padding: 3rem 5%;
+ }
+
+ .footer-content {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 2rem;
+ }
+
+ @media (max-width: 768px) {
+ .menu-toggle {
+ display: block;
+ background: none;
+ border: none;
+ cursor: pointer;
+ }
+
+ .menu-toggle span {
+ display: block;
+ width: 25px;
+ height: 3px;
+ background: var(--text-light);
+ margin: 5px 0;
+ transition: 0.3s;
+ }
+
+ .nav-links {
+ display: none;
+ position: absolute;
+ top: 100%;
+ left: 0;
+ width: 100%;
+ background: var(--deep-blue);
+ flex-direction: column;
+ padding: 1rem 0;
+ text-align: center;
+ }
+
+ .nav-links.active {
+ display: flex;
+ }
+
+ .hero h1 {
+ font-size: 2.5rem;
+ }
+ }