Changed around line 1
+ :root {
+ --primary-color: #0a192f;
+ --accent-color: #64ffda;
+ --text-color: #ccd6f6;
+ --background-color: #020c1b;
+ --transition: all 0.3s ease-in-out;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Inter', sans-serif;
+ background-color: var(--background-color);
+ color: var(--text-color);
+ line-height: 1.6;
+ }
+
+ .main-header {
+ position: fixed;
+ width: 100%;
+ z-index: 1000;
+ background: rgba(2, 12, 27, 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: 700;
+ color: var(--accent-color);
+ letter-spacing: 2px;
+ }
+
+ .nav-links {
+ display: flex;
+ list-style: none;
+ gap: 2rem;
+ }
+
+ .nav-links a {
+ color: var(--text-color);
+ text-decoration: none;
+ transition: var(--transition);
+ }
+
+ .nav-links a:hover {
+ color: var(--accent-color);
+ }
+
+ .menu-toggle {
+ display: none;
+ }
+
+ .hero {
+ height: 100vh;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ position: relative;
+ overflow: hidden;
+ }
+
+ .hero-content {
+ text-align: center;
+ z-index: 2;
+ }
+
+ .hero h1 {
+ font-size: 4rem;
+ margin-bottom: 1rem;
+ animation: fadeInUp 1s ease-out;
+ }
+
+ .tagline {
+ font-size: 1.5rem;
+ margin-bottom: 2rem;
+ animation: fadeInUp 1s ease-out 0.3s backwards;
+ }
+
+ .star-field {
+ position: absolute;
+ width: 100%;
+ height: 100%;
+ animation: rotate 100s linear infinite;
+ }
+
+ .cta-button {
+ padding: 1rem 2rem;
+ font-size: 1.1rem;
+ background: transparent;
+ border: 2px solid var(--accent-color);
+ color: var(--accent-color);
+ cursor: pointer;
+ transition: var(--transition);
+ }
+
+ .cta-button:hover {
+ background: rgba(100, 255, 218, 0.1);
+ transform: translateY(-3px);
+ }
+
+ section {
+ padding: 5rem 10%;
+ }
+
+ .character-card {
+ background: rgba(10, 25, 47, 0.7);
+ border-radius: 10px;
+ padding: 2rem;
+ margin: 2rem 0;
+ border: 1px solid var(--accent-color);
+ }
+
+ .chapter-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .chapter-card {
+ background: rgba(10, 25, 47, 0.7);
+ padding: 1.5rem;
+ border-radius: 8px;
+ transition: var(--transition);
+ }
+
+ .chapter-card:hover {
+ transform: translateY(-5px);
+ box-shadow: 0 10px 20px rgba(100, 255, 218, 0.1);
+ }
+
+ .subscribe-form {
+ display: flex;
+ gap: 1rem;
+ max-width: 500px;
+ margin: 2rem auto;
+ }
+
+ .subscribe-form input {
+ flex: 1;
+ padding: 0.8rem;
+ border: none;
+ border-radius: 4px;
+ background: rgba(255, 255, 255, 0.1);
+ color: var(--text-color);
+ }
+
+ .subscribe-form button {
+ padding: 0.8rem 1.5rem;
+ background: var(--accent-color);
+ border: none;
+ border-radius: 4px;
+ color: var(--primary-color);
+ cursor: pointer;
+ transition: var(--transition);
+ }
+
+ footer {
+ padding: 2rem 5%;
+ background: var(--primary-color);
+ text-align: center;
+ }
+
+ .footer-links {
+ display: flex;
+ justify-content: center;
+ gap: 2rem;
+ }
+
+ .footer-links a {
+ color: var(--text-color);
+ text-decoration: none;
+ transition: var(--transition);
+ }
+
+ @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(--accent-color);
+ margin: 5px 0;
+ transition: var(--transition);
+ }
+
+ .nav-links {
+ display: none;
+ position: absolute;
+ top: 100%;
+ left: 0;
+ width: 100%;
+ background: var(--primary-color);
+ flex-direction: column;
+ text-align: center;
+ padding: 1rem 0;
+ }
+
+ .nav-links.active {
+ display: flex;
+ }
+
+ .hero h1 {
+ font-size: 2.5rem;
+ }
+
+ .tagline {
+ font-size: 1.2rem;
+ }
+
+ .subscribe-form {
+ flex-direction: column;
+ }
+ }
+
+ @keyframes fadeInUp {
+ from {
+ opacity: 0;
+ transform: translateY(20px);
+ }
+ to {
+ opacity: 1;
+ transform: translateY(0);
+ }
+ }
+
+ @keyframes rotate {
+ from {
+ transform: rotate(0deg);
+ }
+ to {
+ transform: rotate(360deg);
+ }
+ }