@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&display=swap');*{margin:0;padding:0;box-sizing:border-box;}body,html{height:100%;font-family:'Montserrat', sans-serif;background:linear-gradient(135deg, #001f3f 0%, #004d66 100%);color:#e0e0e0;display:flex;justify-content:center;align-items:center;min-height:100vh;}main{width:90%;max-width:900px;padding:2rem;}section.hero{display:flex;justify-content:center;align-items:center;min-height:70vh;text-align:center;}section.hero .glass-container{background:rgba(255 255 255 / 0.1);backdrop-filter:blur(15px) saturate(150%);-webkit-backdrop-filter:blur(15px) saturate(150%);border:1px solid rgba(255 255 255 / 0.25);border-radius:20px;box-shadow:0 4px 30px rgba(0 0 0 0.1);padding:3rem 2rem;max-width:600px;animation:fadeInSlideUp 1s ease forwards;transform:translateY(20px);opacity:0;}h1{font-weight:700;color:#30d5c8;font-size:3rem;letter-spacing:1px;margin-bottom:1rem;text-shadow:0 0 10px #30d5c8;}p{font-weight:500;color:#e0e0e0;font-size:1.25rem;line-height:1.6;text-shadow:0 0 5px rgba(0,77,102,0.5);}::-webkit-scrollbar{width:8px;}::-webkit-scrollbar-thumb{background:rgba(48,213,200,0.7);border-radius:10px;}::-webkit-scrollbar-track{background:transparent;}@keyframes fadeInSlideUp{to{transform:none;opacity:1;}}