@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-main: #030712;
    --bg-card: #0F172A;
    --bg-card-hover: #1E293B;
    --text-main: #F8FAFC;
    --text-muted: #94A3B8;
    --accent-green: #10B981;
    --accent-blue: #3B82F6;
    --gradient-primary: linear-gradient(135deg, #10B981 0%, #3B82F6 100%);
    --gradient-glow: linear-gradient(90deg, #10B981, #3B82F6, #8B5CF6, #10B981);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Plus Jakarta Sans', sans-serif; }
body { background-color: var(--bg-main); color: var(--text-main); overflow-x: hidden; line-height: 1.6; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-main); }
::-webkit-scrollbar-thumb { background: var(--bg-card-hover); border-radius: 4px; }

.glass-header { position: fixed; top: 0; left: 0; right: 0; background: rgba(3, 7, 18, 0.8); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,255,255,0.05); z-index: 9999; padding: 15px 5%; display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 24px; font-weight: 800; color: var(--text-main); text-decoration: none; letter-spacing: -0.5px; z-index: 10001; }
.logo span { background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.nav-wrapper { display: flex; align-items: center; gap: 40px; }
.nav-links { display: flex; gap: 30px; list-style: none; align-items: center; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-weight: 500; font-size: 15px; transition: 0.3s; }
.nav-links a:hover, .nav-active { color: var(--text-main) !important; }

.dropdown { position: relative; display: inline-block; padding: 10px 0; }
.dropdown-content { display: none; position: absolute; top: 100%; left: 0; background: rgba(15, 23, 42, 0.95); backdrop-filter: blur(15px); min-width: 180px; border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.5); z-index: 1000; padding: 8px 0; }
.dropdown-content a { color: var(--text-muted); padding: 12px 20px; display: block; font-size: 14px; transition: 0.3s; }
.dropdown-content a:hover { background: rgba(255,255,255,0.05); color: var(--text-main) !important; }
.dropdown:hover .dropdown-content { display: block; }

.header-actions { display: flex; align-items: center; gap: 24px; }
.login-link { color: var(--text-main); text-decoration: none; font-weight: 600; font-size: 15px; transition: 0.3s; }
.login-link:hover { color: var(--accent-green); }
.btn-gradient { background: var(--gradient-primary); color: #fff; padding: 12px 28px; border-radius: 100px; text-decoration: none; font-weight: 600; font-size: 15px; border: none; cursor: pointer; transition: 0.3s; display: inline-block; text-align: center; }
.btn-gradient:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3); }
.mobile-toggle { display: none; background: transparent; border: none; color: #fff; font-size: 28px; cursor: pointer; z-index: 10001; }

footer { background: var(--bg-card); padding: 80px 5% 40px; border-top: 1px solid rgba(255,255,255,0.05); }
.new-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
.footer-brand p { color: var(--text-muted); margin-top: 20px; max-width: 300px; font-size: 15px; }
.footer-links h4 { font-size: 18px; margin-bottom: 24px; color: var(--text-main); }
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 12px; }
.footer-links ul li a { color: var(--text-muted); text-decoration: none; transition: 0.3s; font-size: 15px; }
.footer-links ul li a:hover { color: var(--accent-green); }

.social-icons { display: flex; gap: 15px; align-items: center; }
.social-icons a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; color: var(--text-muted); transition: all 0.3s ease; }
.social-icons a:hover { color: #fff; background: var(--accent-blue); border-color: var(--accent-blue); transform: translateY(-3px); }
.social-icons svg { width: 16px; height: 16px; fill: currentColor; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 30px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 15px; color: var(--text-muted); font-size: 14px; }
.footer-bottom a { color: var(--accent-green); text-decoration: none; font-weight: 600; transition: 0.3s; }
.footer-bottom a:hover { color: var(--accent-blue); }

@media (max-width: 1024px) {
    .mobile-toggle { display: block; }
    .nav-wrapper { position: fixed; top: 0; right: -100%; width: 100%; height: 100vh; background: rgba(3,7,18,0.98); flex-direction: column; justify-content: center; align-items: center; transition: 0.4s ease-in-out; gap: 40px; z-index: 10000; }
    .nav-wrapper.active { right: 0; }
    .nav-links { flex-direction: column; align-items: center; gap: 25px; }
    .nav-links a { font-size: 20px; }
    .dropdown:hover .dropdown-content, .dropdown:focus-within .dropdown-content { display: flex; flex-direction: column; position: static; background: transparent; box-shadow: none; border: none; padding: 0; margin-top: 10px; align-items: center; }
    .dropdown-content a { font-size: 16px; padding: 8px; }
    .header-actions { flex-direction: column; gap: 20px; }
    
    .new-footer-grid { grid-template-columns: repeat(3, 1fr); gap: 40px 30px; }
    .footer-brand { grid-column: span 3; text-align: center; display: flex; flex-direction: column; align-items: center; }
}

@media (max-width: 768px) {
    .glass-header { padding: 15px 20px; }
    .new-footer-grid { grid-template-columns: 1fr; text-align: center; gap: 35px; }
    .footer-brand { grid-column: span 1; }
    .social-icons { justify-content: center; }
    .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 12px; }
}
