
:root { --bg: #030014; --primary: #f59e0b; --text: #f8fafc; --card: rgba(255, 255, 255, 0.03); --border: rgba(255, 255, 255, 0.1); }
body { margin: 0; background: var(--bg); color: var(--text); font-family: 'Outfit', sans-serif; background-image: radial-gradient(circle at 50% -20%, #451a03, transparent); background-attachment: fixed; }
a, a:visited { color: var(--primary) !important; text-decoration: none; transition: 0.3s; }
a:hover { filter: brightness(1.2) !important; text-decoration: underline !important; }
.container { max-width: 1100px; margin: 0 auto; padding: 40px 20px; }
.glass-nav { position: sticky; top: 0; z-index: 1000; backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); background: rgba(3, 0, 20, 0.8); }
.nav-content { display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; max-width: 1100px; margin: 0 auto; }
.logo { font-size: 1.5rem; font-weight: 800; text-decoration: none; color: white !important; }
.logo span { color: var(--primary) !important; }
.nav-links a, .nav-links a:visited { margin-left: 20px; color: #94a3b8 !important; font-weight: 600; text-decoration: none !important; }
.nav-links a:hover { color: var(--primary) !important; }
.nav-cta, .nav-cta:visited { background: var(--primary) !important; padding: 10px 20px; border-radius: 30px; color: #000 !important; font-weight: 800; display: inline-block; }
.hero { text-align: center; margin-bottom: 60px; }
h1 { font-size: 3.5rem; margin: 10px 0; background: linear-gradient(to right, #fff, var(--primary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; border-radius: 20px; overflow: hidden; border: 1px solid var(--border); margin-bottom: 30px; }
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.glass-box { background: var(--card); border: 1px solid var(--border); border-radius: 24px; padding: 30px; backdrop-filter: blur(10px); }
.btn-main, .btn-main:visited { display: inline-block; background: var(--primary) !important; color: #000 !important; padding: 15px 30px; border-radius: 12px; font-weight: 800; text-decoration: none !important; margin-top: 20px; transition: 0.3s; }
.btn-main:hover { transform: scale(1.05); box-shadow: 0 0 20px rgba(245, 158, 11, 0.4); }
.content-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 30px; margin-top: 40px; }
.link-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 15px; margin-top: 30px; }
.link-grid a, .link-grid a:visited { padding: 15px; background: var(--card); border: 1px solid var(--border); border-radius: 12px; text-decoration: none !important; color: #94a3b8 !important; font-size: 0.9rem; display: block; }
.link-grid a:hover { color: white !important; border-color: var(--primary) !important; }
.glass-footer { padding: 60px 20px; border-top: 1px solid var(--border); margin-top: 100px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; max-width: 1100px; margin: 0 auto; }
.glass-footer ul { list-style: none; padding: 0; }
.glass-footer ul li { margin-bottom: 10px; }
.glass-footer a, .glass-footer a:visited { color: #94a3b8 !important; }
.glass-footer a:hover { color: var(--primary) !important; }
.disclosure { text-align: center; margin-top: 40px; font-size: 0.8rem; color: #475569; }
@media (max-width: 768px) { h1 { font-size: 2.2rem; } .content-grid { grid-template-columns: 1fr; } }
