.material-symbols-outlined { font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24; } .glass-panel { background: rgba(31, 31, 36, 0.6); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); } .glass-card { background: rgba(31, 31, 36, 0.6); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); } .neon-glow:hover { box-shadow: 0 0 8px rgba(250, 189, 0, 0.5); } .bg-mesh { background-image: radial-gradient(at 0% 0%, rgba(205, 189, 255, 0.15) 0px, transparent 50%), radial-gradient(at 100% 100%, rgba(0, 104, 237, 0.15) 0px, transparent 50%); } .text-glow { text-shadow: 0 0 15px rgba(250, 189, 0, 0.3); } .btn-primary { background: linear-gradient(to right, #cdbdff, #5d21df); color: #20005f; font-weight: bold; padding: 0.75rem 2rem; border-radius: 9999px; transition: all 0.3s; transform: scale(1); } .btn-primary:hover { box-shadow: 0 0 8px rgba(250, 189, 0, 0.5); } .btn-primary:active { transform: scale(0.95); } .btn-secondary { background: rgba(31, 31, 36, 0.6); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); color: #e4e1e9; font-weight: bold; padding: 0.75rem 2rem; border-radius: 9999px; border: 1px solid rgba(255, 255, 255, 0.05); transition: all 0.3s; } .btn-secondary:hover { background: #35343a; } .section-title { font-size: 3rem; font-weight: 800; font-family: 'Epilogue', sans-serif; letter-spacing: -0.025em; } .section-subtitle { font-size: 0.875rem; font-family: 'Space Grotesk', sans-serif; text-transform: uppercase; letter-spacing: 0.1em; } .card-base { background: #1b1b20; border-radius: 2rem; padding: 2.5rem; border: 1px solid rgba(73, 68, 86, 0.1); } .card-elevated { background: #2a292f; border-radius: 2rem; padding: 2.5rem; } .card-highest { background: #35343a; border-radius: 2rem; padding: 2.5rem; } .nav-link { color: #d4d4d4; font-weight: 500; transition: color 0.2s; } .nav-link:hover { color: #e9d5ff; } .nav-link-active { color: #fbbf24; font-weight: bold; border-bottom: 2px solid #fbbf24; padding-bottom: 0.25rem; } .hero-title { font-size: 4.5rem; font-weight: 900; font-family: 'Epilogue', sans-serif; letter-spacing: -0.025em; line-height: 1.1; } @media (max-width: 768px) { .hero-title { font-size: 3rem; } .section-title { font-size: 2rem; } } @keyframes pulse-glow { 0%, 100% { box-shadow: 0 0 8px rgba(250, 189, 0, 0.3); } 50% { box-shadow: 0 0 20px rgba(250, 189, 0, 0.6); } } .animate-pulse-glow { animation: pulse-glow 2s ease-in-out infinite; } .fade-in { animation: fadeIn 0.5s ease-in; } @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }