Changed around line 1
+ :root {
+ --primary-blue: #1faaff;
+ --dark-bg: #0a0a0a;
+ --text-glow: 0 0 10px var(--primary-blue);
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Arial', sans-serif;
+ background: linear-gradient(45deg, #000, #0a1a2f);
+ color: white;
+ line-height: 1.6;
+ overflow-x: hidden;
+ }
+
+ /* Header Styles */
+ header {
+ position: fixed;
+ width: 100%;
+ top: 0;
+ z-index: 1000;
+ background: rgba(0, 0, 0, 0.8);
+ 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(--primary-blue);
+ text-shadow: var(--text-glow);
+ }
+
+ .nav-links a {
+ color: white;
+ text-decoration: none;
+ margin-left: 2rem;
+ transition: color 0.3s;
+ }
+
+ .nav-links a:hover {
+ color: var(--primary-blue);
+ text-shadow: var(--text-glow);
+ }
+
+ /* Hero Section */
+ .hero {
+ height: 100vh;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ text-align: center;
+ position: relative;
+ padding: 2rem;
+ }
+
+ .particle-container {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ overflow: hidden;
+ }
+
+ h1.glow {
+ font-size: 4rem;
+ color: var(--primary-blue);
+ text-shadow: var(--text-glow);
+ margin-bottom: 1rem;
+ animation: pulse 2s infinite;
+ }
+
+ .tagline {
+ font-size: 1.5rem;
+ margin-bottom: 2rem;
+ color: #fff;
+ }
+
+ /* Buttons */
+ .btn {
+ display: inline-block;
+ padding: 1rem 2rem;
+ margin: 0.5rem;
+ border: 2px solid var(--primary-blue);
+ border-radius: 30px;
+ color: white;
+ text-decoration: none;
+ transition: all 0.3s;
+ background: rgba(31, 170, 255, 0.1);
+ }
+
+ .btn:hover {
+ background: var(--primary-blue);
+ box-shadow: 0 0 20px var(--primary-blue);
+ transform: translateY(-2px);
+ }
+
+ /* Agent Showcase */
+ .showcase {
+ padding: 5rem 2rem;
+ }
+
+ .showcase h2 {
+ text-align: center;
+ margin-bottom: 3rem;
+ color: var(--primary-blue);
+ text-shadow: var(--text-glow);
+ }
+
+ .agent-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ padding: 0 5%;
+ }
+
+ .agent-card {
+ background: rgba(31, 170, 255, 0.05);
+ border: 1px solid var(--primary-blue);
+ border-radius: 10px;
+ padding: 2rem;
+ text-align: center;
+ transition: transform 0.3s;
+ }
+
+ .agent-card:hover {
+ transform: translateY(-10px);
+ box-shadow: 0 0 20px rgba(31, 170, 255, 0.2);
+ }
+
+ /* Footer */
+ footer {
+ background: rgba(0, 0, 0, 0.8);
+ padding: 2rem 5%;
+ }
+
+ .footer-content {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ }
+
+ .footer-nav a {
+ color: white;
+ text-decoration: none;
+ margin-left: 1rem;
+ }
+
+ /* Responsive Design */
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ h1.glow {
+ font-size: 2.5rem;
+ }
+
+ .footer-content {
+ flex-direction: column;
+ gap: 1rem;
+ }
+ }
+
+ @keyframes pulse {
+ 0% { text-shadow: var(--text-glow); }
+ 50% { text-shadow: 0 0 20px var(--primary-blue); }
+ 100% { text-shadow: var(--text-glow); }
+ }