:root {
    --bg-color: #0b0f19;
    --bg-light: #1e293b;
    --primary: #06b6d4;
    --secondary: #f97316;
    --glass-bg: rgba(17, 24, 39, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
}
* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Outfit', sans-serif; }
body {
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
    scroll-behavior: smooth;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.glow-wrapper { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -1; overflow: hidden; pointer-events: none; }
.glow-circle { position: absolute; width: 600px; height: 600px; border-radius: 50%; filter: blur(120px); opacity: 0.15; }
.glow-1 { top: -100px; left: -100px; background: var(--primary); }
.glow-2 { top: 40%; right: -150px; background: var(--secondary); }
.glow-3 { bottom: -100px; left: 20%; background: #3b82f6; }
nav {
    padding: 20px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(11, 15, 25, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--glass-border);
}
.logo a { font-size: 2rem; font-weight: 800; letter-spacing: 1px; color: var(--text-main); text-decoration: none; }
.logo span { color: var(--primary); }
.nav-links { display: flex; gap: 30px; align-items: center; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--text-main); text-decoration: none; font-weight: 600; font-size: 1.1rem; transition: color 0.3s ease; }
.nav-links a:hover { color: var(--primary); }
.hamburger { display: none; flex-direction: column; gap: 6px; cursor: pointer; }
.hamburger span { width: 30px; height: 3px; background-color: var(--text-main); border-radius: 2px; transition: 0.3s ease; }
@media (max-width: 900px) {
    .nav-links {
        position: absolute;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: var(--bg-light);
        width: 100%;
        text-align: center;
        padding: 30px 0;
        transition: 0.3s ease;
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    }
    .nav-links.active { left: 0; }
    .hamburger { display: flex; }
    .hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
}
main { flex: 1; width: 100%; }
.page-container { padding: 80px 5%; max-width: 1200px; margin: 0 auto; width: 100%; }
.page-title { font-size: 3rem; margin-bottom: 30px; color: var(--primary); text-align: center; }
.page-content { font-size: 1.1rem; line-height: 1.8; color: var(--text-muted); background: var(--glass-bg); padding: 40px; border-radius: 24px; border: 1px solid var(--glass-border); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.page-content h2 { color: #fff; margin: 30px 0 15px 0; font-size: 1.8rem; }
.page-content p { margin-bottom: 20px; }
.page-content ul { margin-left: 20px; margin-bottom: 20px; color: var(--text-main); }
.page-content ul li { margin-bottom: 10px; }
.cta-button {
    display: inline-block;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), #3b82f6);
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(6, 182, 212, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}
.cta-button:hover { transform: translateY(-3px); box-shadow: 0 15px 35px rgba(6, 182, 212, 0.6); color: #fff;}
footer {
    padding: 60px 5% 20px 5%;
    background: var(--bg-light);
    border-top: 1px solid var(--glass-border);
    margin-top: auto;
    width: 100%;
}
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-col h3 { font-size: 1.4rem; margin-bottom: 20px; color: #fff; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: var(--text-muted); text-decoration: none; transition: color 0.3s ease; }
.footer-col ul li a:hover { color: var(--primary); }
.social-icons { display: flex; gap: 15px; }
.social-icons a { display: inline-block; width: 40px; height: 40px; border-radius: 50%; background: var(--bg-color); display: flex; align-items: center; justify-content: center; color: #fff; text-decoration: none; transition: 0.3s ease; border: 1px solid var(--glass-border); font-weight: bold;}
.social-icons a:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-3px); }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid var(--glass-border); color: var(--text-muted); font-size: 0.9rem; }
@media (max-width: 480px) {
    .page-title { font-size: 2.2rem; }
    .page-content { padding: 20px; font-size: 1rem; }
    .cta-button { padding: 14px 30px; font-size: 1rem; }
    footer { padding-top: 40px; }
}
