* { margin: 0; padding: 0; box-sizing: border-box; } :root { --primary: #6366f1; --secondary: #8b5cf6; --dark: #0a0a1a; --dark-light: #1a1a3a; --text: #ffffff; --text-muted: rgba(255, 255, 255, 0.7); --accent: #10b981; } body { font-family: 'Space Grotesk', sans-serif; background: var(--dark); color: var(--text); overflow-x: hidden; line-height: 1.6; } .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; } /* Plexus Background */ #plexus { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -1; pointer-events: none; } /* Navigation */ .navbar { position: fixed; top: 0; left: 0; right: 0; background: rgba(10, 10, 26, 0.9); backdrop-filter: blur(10px); padding: 1rem 0; z-index: 100; border-bottom: 1px solid rgba(99, 102, 241, 0.2); } .navbar .container { display: flex; justify-content: space-between; align-items: center; } .logo { font-size: 1.5rem; font-weight: 700; color: var(--primary); } .nav-links { display: flex; list-style: none; gap: 2rem; } .nav-links a { color: var(--text-muted); text-decoration: none; transition: color 0.3s; font-weight: 500; } .nav-links a:hover { color: var(--primary); } /* Hero Section */ .hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 100px 20px 50px; position: relative; } .hero-content { max-width: 900px; } .hero-title { font-size: 5rem; font-weight: 700; margin-bottom: 1rem; background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: glow 2s ease-in-out infinite alternate; } @keyframes glow { from { filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.5)); } to { filter: drop-shadow(0 0 40px rgba(139, 92, 246, 0.8)); } } .hero-subtitle { font-size: 1.8rem; font-weight: 500; color: var(--text); margin-bottom: 1rem; } .hero-description { font-size: 1.2rem; font-weight: 400; color: var(--text-muted); margin-bottom: 2rem; } .hero-buttons { display: flex; gap: 1rem; justify-content: center; margin-bottom: 2rem; } .btn { padding: 0.9rem 2rem; border-radius: 8px; text-decoration: none; font-weight: 600; transition: all 0.3s; display: inline-block; border: 2px solid transparent; } .btn-primary { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: white; } .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4); } .btn-secondary { background: transparent; border-color: var(--primary); color: var(--primary); } .btn-secondary:hover { background: var(--primary); color: white; transform: translateY(-2px); } .hero-badges { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; } .badge { background: rgba(99, 102, 241, 0.2); border: 1px solid rgba(99, 102, 241, 0.5); padding: 0.5rem 1rem; border-radius: 20px; font-size: 0.9rem; font-weight: 500; color: var(--text-muted); } /* Tagline */ .tagline { padding: 4rem 0; background: rgba(99, 102, 241, 0.05); border-top: 1px solid rgba(99, 102, 241, 0.2); border-bottom: 1px solid rgba(99, 102, 241, 0.2); } .tagline-text { text-align: center; font-size: 2rem; font-weight: 400; font-style: italic; color: var(--text-muted); } /* Section Styles */ section { padding: 5rem 0; } .section-title { font-size: 2.5rem; font-weight: 700; text-align: center; margin-bottom: 1rem; color: var(--text); } .section-subtitle { text-align: center; color: var(--text-muted); font-size: 1.1rem; font-weight: 400; margin-bottom: 3rem; } /* Features */ .features { background: rgba(26, 26, 58, 0.3); } .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; } .feature-card { background: rgba(99, 102, 241, 0.1); border: 1px solid rgba(99, 102, 241, 0.3); padding: 2rem; border-radius: 12px; transition: all 0.3s; } .feature-card:hover { transform: translateY(-5px); border-color: var(--primary); box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3); } .feature-icon { font-size: 3rem; margin-bottom: 1rem; } .feature-card h3 { font-size: 1.4rem; font-weight: 600; margin-bottom: 1rem; color: var(--text); } .feature-card p { color: var(--text-muted); font-weight: 400; line-height: 1.6; } .feature-card code { background: rgba(0, 0, 0, 0.3); padding: 2px 6px; border-radius: 4px; color: var(--accent); font-family: 'Courier New', monospace; } /* How It Works */ .steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem; margin-bottom: 4rem; } .step { text-align: center; } .step-number { width: 60px; height: 60px; background: linear-gradient(135deg, var(--primary), var(--secondary)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; font-weight: 700; margin: 0 auto 1.5rem; } .step h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: 1rem; } .step p { color: var(--text-muted); font-weight: 400; } .step code { background: rgba(0, 0, 0, 0.3); padding: 2px 6px; border-radius: 4px; color: var(--accent); font-family: 'Courier New', monospace; } .code-example { background: rgba(0, 0, 0, 0.5); border: 1px solid rgba(99, 102, 241, 0.3); border-radius: 12px; padding: 2rem; max-width: 600px; margin: 0 auto; } .code-example h3 { margin-bottom: 1rem; font-weight: 600; color: var(--primary); } .code-example pre { background: rgba(0, 0, 0, 0.3); padding: 1.5rem; border-radius: 8px; overflow-x: auto; } .code-example code { color: var(--accent); font-family: 'Courier New', monospace; line-height: 1.8; } /* About */ .about { background: rgba(26, 26, 58, 0.3); } .about-content { max-width: 800px; margin: 0 auto; text-align: center; } .about-content p { font-size: 1.1rem; font-weight: 400; color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.8; } /* Code of Conduct */ .conduct-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; } .conduct-item { background: rgba(99, 102, 241, 0.05); border: 1px solid rgba(99, 102, 241, 0.2); padding: 2rem; border-radius: 12px; text-align: center; } .conduct-icon { font-size: 2.5rem; margin-bottom: 1rem; } .conduct-item h3 { font-size: 1.3rem; font-weight: 600; margin-bottom: 1rem; color: var(--text); } .conduct-item p { color: var(--text-muted); font-weight: 400; } /* Collaborate */ .collaborate { background: rgba(26, 26, 58, 0.3); } .section-intro { text-align: center; font-size: 1.1rem; font-weight: 400; color: var(--text-muted); max-width: 800px; margin: 0 auto 3rem; } .collab-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 3rem; } .collab-card { background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1)); border: 1px solid rgba(99, 102, 241, 0.3); padding: 2rem; border-radius: 12px; text-align: center; transition: all 0.3s; } .collab-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3); } .collab-card h3 { font-size: 1.3rem; font-weight: 600; margin-bottom: 0.5rem; } .collab-card p { color: var(--text-muted); font-weight: 400; } .collab-footer { text-align: center; font-size: 1.2rem; font-weight: 500; color: var(--text); font-style: italic; max-width: 700px; margin: 0 auto; } /* Join Us */ .join-intro { text-align: center; font-size: 1.1rem; font-weight: 400; color: var(--text-muted); margin-bottom: 2rem; } .join-highlight { text-align: center; font-size: 1.3rem; font-weight: 500; color: var(--accent); margin-bottom: 3rem; } .legend-card { background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2)); border: 2px solid var(--primary); padding: 3rem; border-radius: 16px; text-align: center; max-width: 700px; margin: 0 auto; } .legend-card h3 { font-size: 2rem; font-weight: 700; margin-bottom: 0.5rem; } .legend-subtitle { color: var(--text-muted); font-size: 1.1rem; font-weight: 500; margin-bottom: 1.5rem; } .legend-card p { color: var(--text-muted); font-weight: 400; margin-bottom: 2rem; line-height: 1.8; } /* Footer */ .footer { background: rgba(10, 10, 26, 0.9); padding: 2rem 0; text-align: center; border-top: 1px solid rgba(99, 102, 241, 0.2); } .footer p { color: var(--text-muted); font-weight: 400; } .about-logo{ display: block; margin: 1rem auto 2rem; max-width: 150px; border-radius: 50%; border: 3px solid var(--primary); } .banner-img{ width: 100%; margin-top: -4rem; margin-bottom: 2rem; border-radius: 12px; box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3); } /* Responsive */ @media (max-width: 768px) { .hero-title { font-size: 3rem; } .hero-subtitle { font-size: 1.3rem; } .nav-links { gap: 1rem; } .hero-buttons { flex-direction: column; } .features-grid, .steps, .conduct-grid, .collab-grid { grid-template-columns: 1fr; } }