:root { --bg-color: #0a0a0f; --surface-color: #1a1a24; --accent-blue: #00f2ff; --accent-violet: #8a2be2; --text-primary: #ffffff; --text-secondary: #a0a0b0; --gradient-primary: linear-gradient(135deg, #00f2ff 0%, #8a2be2 100%); --card-bg: rgba(26, 26, 36, 0.7); --border-color: rgba(255, 255, 255, 0.1); --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.3); --glass-bg: rgba(255, 255, 255, 0.03); --glass-border: rgba(255, 255, 255, 0.08); } * { box-sizing: border-box; margin: 0; padding: 0; } body { background-color: var(--bg-color); color: var(--text-primary); font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; line-height: 1.6; overflow-x: hidden; } a { text-decoration: none; color: inherit; } .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; } /* Header */ header { padding: 15px 0; position: sticky; top: 0; z-index: 1000; background: rgba(10, 10, 15, 0.85); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border-color); } .logo-container { display: flex; align-items: center; gap: 12px; } .logo-img { width: 32px; height: 32px; } .logo-text { font-size: 22px; font-weight: 800; background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: -0.5px; } .nav-links { display: flex; gap: 25px; } .nav-links a { color: var(--text-secondary); font-weight: 500; font-size: 14px; transition: all 0.3s; position: relative; padding: 5px 0; } .nav-links a:hover, .nav-links a.active { color: var(--text-primary); } .nav-links a.active::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background: var(--gradient-primary); border-radius: 2px; } .btn { padding: 12px 24px; border-radius: 12px; font-weight: 600; cursor: pointer; transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); border: none; display: inline-flex; align-items: center; justify-content: center; gap: 8px; } .btn:active { transform: scale(0.95); } .btn-primary { background: var(--gradient-primary); color: #fff; box-shadow: 0 10px 20px rgba(0, 242, 255, 0.15); } .btn-primary:hover { box-shadow: 0 15px 30px rgba(0, 242, 255, 0.25); transform: translateY(-2px); } .btn-secondary { background: var(--surface-color); color: #fff; border: 1px solid var(--border-color); } .btn-secondary:hover { background: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.2); } /* Hero Section */ .hero { padding: 120px 0; text-align: center; position: relative; } .hero h1 { font-size: 72px; font-weight: 900; margin-bottom: 24px; letter-spacing: -2.5px; line-height: 1; } .hero p { font-size: 22px; color: var(--text-secondary); max-width: 750px; margin: 0 auto 48px; font-weight: 400; } .hero-bg { position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 100%; height: 100%; z-index: -1; overflow: hidden; } .hero-blob { position: absolute; width: 800px; height: 800px; background: radial-gradient(circle, rgba(0, 242, 255, 0.08) 0%, rgba(138, 43, 226, 0.08) 100%); filter: blur(120px); border-radius: 50%; } /* Glass Cards */ .card { background: var(--glass-bg); border: 1px solid var(--glass-border); backdrop-filter: blur(20px); padding: 40px; border-radius: 32px; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); } .card:hover { transform: translateY(-12px); border-color: rgba(0, 242, 255, 0.3); background: rgba(255, 255, 255, 0.05); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4); } /* Enhanced Swipe Buttons */ .swipe-actions { display: flex; gap: 30px; margin-top: 40px; align-items: center; } .action-btn { width: 76px; height: 76px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; cursor: pointer; border: 1px solid var(--border-color); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); position: relative; overflow: hidden; background: var(--surface-color); } .btn-dislike { color: #ff4d4d; background: rgba(255, 77, 77, 0.05); } .btn-dislike:hover { background: #ff4d4d; color: #fff; transform: scale(1.1) rotate(-8deg); box-shadow: 0 15px 30px rgba(255, 77, 77, 0.3); } .btn-like { color: var(--accent-blue); background: rgba(0, 242, 255, 0.05); border-color: var(--accent-blue); } .btn-like:hover { background: var(--gradient-primary); color: #fff; border-color: transparent; transform: scale(1.2) rotate(8deg); box-shadow: 0 15px 35px rgba(138, 43, 226, 0.4); } .action-btn i { z-index: 2; } /* Find Partners Specific Styling */ .partnership-hero { padding: 60px 0 40px; text-align: center; } .match-score-pill { background: rgba(0, 242, 255, 0.1); color: var(--accent-blue); padding: 6px 14px; border-radius: 50px; font-size: 13px; font-weight: 700; border: 1px solid rgba(0, 242, 255, 0.2); display: inline-flex; align-items: center; gap: 6px; } /* Features grid */ .features { padding: 80px 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } /* Footer */ footer { padding: 80px 0 40px; border-top: 1px solid var(--border-color); margin-top: 120px; text-align: center; color: var(--text-secondary); } @media (max-width: 768px) { .hero h1 { font-size: 48px; } .hero p { font-size: 18px; } }