Changed around line 1
+ :root {
+ --primary: #0a1f44;
+ --background: #000000;
+ --accent: #1faaff;
+ --text: #ffffff;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Arial', sans-serif;
+ background-color: var(--background);
+ color: var(--text);
+ line-height: 1.6;
+ }
+
+ /* Typography */
+ h1, h2, h3, .logo {
+ font-family: 'Orbitron', sans-serif;
+ letter-spacing: 2px;
+ }
+
+ /* Header */
+ header {
+ background-color: var(--primary);
+ padding: 1rem 2rem;
+ position: fixed;
+ width: 100%;
+ top: 0;
+ z-index: 1000;
+ backdrop-filter: blur(10px);
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .logo {
+ font-size: 1.8rem;
+ font-weight: bold;
+ background: linear-gradient(45deg, var(--text), var(--accent));
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .nav-links a {
+ margin-left: 2rem;
+ text-decoration: none;
+ color: var(--text);
+ padding: 0.5rem 1rem;
+ border-radius: 4px;
+ transition: all 0.3s ease;
+ }
+
+ .github-btn, .x-btn {
+ border: 1px solid var(--accent);
+ }
+
+ .nav-links a:hover {
+ background-color: var(--accent);
+ color: var(--background);
+ }
+
+ /* Hero Section */
+ .hero {
+ min-height: 100vh;
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ padding: 6rem 2rem 2rem;
+ background: linear-gradient(135deg, var(--primary), var(--background));
+ position: relative;
+ overflow: hidden;
+ }
+
+ .hero-content {
+ max-width: 600px;
+ z-index: 1;
+ }
+
+ .hero h1 {
+ font-size: 3.5rem;
+ margin-bottom: 1rem;
+ background: linear-gradient(45deg, var(--text), var(--accent));
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .hero-graphic {
+ position: absolute;
+ right: 0;
+ top: 50%;
+ transform: translateY(-50%);
+ width: 500px;
+ height: 500px;
+ background: radial-gradient(circle at center, var(--accent) 0%, transparent 70%);
+ opacity: 0.1;
+ animation: pulse 4s infinite;
+ }
+
+ /* Agents Section */
+ .agents-section {
+ padding: 4rem 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .agents-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .agent-card {
+ background: linear-gradient(145deg, var(--primary), rgba(10, 31, 68, 0.3));
+ padding: 2rem;
+ border-radius: 10px;
+ transition: transform 0.3s ease;
+ cursor: pointer;
+ border: 1px solid transparent;
+ }
+
+ .agent-card:hover {
+ transform: translateY(-5px);
+ border-color: var(--accent);
+ }
+
+ /* Footer */
+ footer {
+ background-color: var(--primary);
+ padding: 2rem;
+ margin-top: 4rem;
+ }
+
+ .footer-content {
+ max-width: 1200px;
+ margin: 0 auto;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ }
+
+ .footer-links a {
+ margin-right: 2rem;
+ color: var(--text);
+ text-decoration: none;
+ }
+
+ /* Animations */
+ @keyframes pulse {
+ 0% { transform: translateY(-50%) scale(1); opacity: 0.1; }
+ 50% { transform: translateY(-50%) scale(1.1); opacity: 0.2; }
+ 100% { transform: translateY(-50%) scale(1); opacity: 0.1; }
+ }
+
+ /* Mobile Responsiveness */
+ @media (max-width: 768px) {
+ .hero {
+ flex-direction: column;
+ text-align: center;
+ }
+
+ .hero h1 {
+ font-size: 2.5rem;
+ }
+
+ .hero-graphic {
+ width: 300px;
+ height: 300px;
+ }
+
+ .nav-links a {
+ margin-left: 1rem;
+ padding: 0.3rem 0.7rem;
+ }
+
+ .footer-content {
+ flex-direction: column;
+ text-align: center;
+ gap: 1rem;
+ }
+ }