Changed around line 1
+ :root {
+ --primary-color: #00f4ff;
+ --background-dark: #0a0a0a;
+ --text-color: #ffffff;
+ --accent-color: #ff124f;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Inter', sans-serif;
+ background-color: var(--background-dark);
+ color: var(--text-color);
+ line-height: 1.6;
+ }
+
+ .main-header {
+ position: fixed;
+ width: 100%;
+ padding: 1rem;
+ background: rgba(10, 10, 10, 0.9);
+ backdrop-filter: blur(10px);
+ z-index: 1000;
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .logo {
+ font-size: 2rem;
+ font-weight: 700;
+ color: var(--primary-color);
+ text-shadow: 0 0 10px var(--primary-color);
+ }
+
+ .nav-links a {
+ color: var(--text-color);
+ text-decoration: none;
+ margin-left: 2rem;
+ transition: color 0.3s ease;
+ }
+
+ .nav-links a:hover {
+ color: var(--primary-color);
+ }
+
+ .hero {
+ height: 100vh;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ text-align: center;
+ padding: 2rem;
+ background: linear-gradient(45deg, rgba(0,0,0,0.9), rgba(0,0,0,0.7));
+ }
+
+ .glitch {
+ font-size: 4rem;
+ font-weight: 700;
+ position: relative;
+ text-shadow: 0.05em 0 0 var(--accent-color),
+ -0.05em -0.025em 0 var(--primary-color);
+ animation: glitch 1s infinite;
+ }
+
+ @keyframes glitch {
+ 0% {
+ text-shadow: 0.05em 0 0 var(--accent-color),
+ -0.05em -0.025em 0 var(--primary-color);
+ }
+ 25% {
+ text-shadow: -0.05em -0.025em 0 var(--accent-color),
+ 0.025em 0.025em 0 var(--primary-color);
+ }
+ 50% {
+ text-shadow: 0.025em 0.05em 0 var(--accent-color),
+ 0.05em 0 0 var(--primary-color);
+ }
+ 100% {
+ text-shadow: -0.05em 0 0 var(--accent-color),
+ -0.025em -0.05em 0 var(--primary-color);
+ }
+ }
+
+ .tagline {
+ font-size: 1.5rem;
+ margin: 2rem 0;
+ color: var(--primary-color);
+ }
+
+ .cta-button {
+ padding: 1rem 2rem;
+ font-size: 1.2rem;
+ background: transparent;
+ border: 2px solid var(--primary-color);
+ color: var(--primary-color);
+ cursor: pointer;
+ transition: all 0.3s ease;
+ }
+
+ .cta-button:hover {
+ background: var(--primary-color);
+ color: var(--background-dark);
+ }
+
+ section {
+ padding: 5rem 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .excerpt-text {
+ border-left: 4px solid var(--primary-color);
+ padding-left: 2rem;
+ font-style: italic;
+ margin: 2rem 0;
+ }
+
+ .author-content {
+ display: grid;
+ grid-template-columns: 1fr 2fr;
+ gap: 2rem;
+ align-items: center;
+ }
+
+ .author-image {
+ width: 100%;
+ aspect-ratio: 1;
+ background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
+ border-radius: 50%;
+ }
+
+ footer {
+ padding: 2rem;
+ background: rgba(10, 10, 10, 0.9);
+ text-align: center;
+ }
+
+ @media (max-width: 768px) {
+ .glitch {
+ font-size: 2.5rem;
+ }
+
+ .author-content {
+ grid-template-columns: 1fr;
+ }
+
+ .nav-links {
+ display: none;
+ }
+ }