/* Same CSS as index.html */
    :root { --primary: #00f0ff; --secondary: #ff00f0; --dark: #0a0a20; --light: #e0e0ff; --accent: #f0f000; --text: #ffffff; --bg: #121230; } * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Courier New', monospace; } body { background-color: var(--bg); color: var(--text); line-height: 1.6; padding-top: 80px; overflow-x: hidden; } header { position: fixed; top: 0; left: 0; width: 100%; background-color: rgba(10, 10, 32, 0.9); backdrop-filter: blur(10px); z-index: 1000; border-bottom: 1px solid var(--primary); box-shadow: 0 0 20px rgba(0, 240, 255, 0.3); } nav { display: flex; justify-content: space-between; align-items: center; padding: 1rem 2rem; max-width: 1200px; margin: 0 auto; } .logo { font-size: 1.8rem; font-weight: bold; color: var(--primary); text-decoration: none; text-transform: uppercase; letter-spacing: 2px; } .nav-links { display: flex; list-style: none; } .nav-links li { margin-left: 2rem; } .nav-links a { color: var(--light); text-decoration: none; font-weight: bold; transition: color 0.3s; position: relative; } .nav-links a:hover { color: var(--primary); } .nav-links a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -5px; left: 0; background-color: var(--primary); transition: width 0.3s; } .nav-links a:hover::after { width: 100%; } .burger { display: none; cursor: pointer; } .burger div { width: 25px; height: 3px; background-color: var(--primary); margin: 5px; transition: all 0.3s ease; } section { padding: 4rem 2rem; max-width: 1200px; margin: 0 auto; } h1, h2, h3 { margin-bottom: 1.5rem; color: var(--primary); } h1 { font-size: 3rem; line-height: 1.2; text-transform: uppercase; } h2 { font-size: 2rem; border-bottom: 2px solid var(--secondary); padding-bottom: 0.5rem; display: inline-block; } h3 { font-size: 1.5rem; color: var(--accent); } p { margin-bottom: 1rem; } .btn { display: inline-block; background-color: var(--primary); color: var(--dark); padding: 0.8rem 1.5rem; border: none; border-radius: 4px; text-decoration: none; font-weight: bold; cursor: pointer; transition: all 0.3s; text-transform: uppercase; letter-spacing: 1px; box-shadow: 0 0 10px rgba(0, 240, 255, 0.5); } .btn:hover { background-color: var(--secondary); color: var(--text); transform: translateY(-3px); box-shadow: 0 0 20px rgba(255, 0, 240, 0.5); } .policy-content { background-color: rgba(10, 10, 32, 0.7); backdrop-filter: blur(5px); border-radius: 10px; padding: 2rem; margin: 2rem auto; box-shadow: 0 0 30px rgba(0, 240, 255, 0.2); } .policy-section { margin-bottom: 2rem; } .policy-section h3 { margin-bottom: 1rem; } .policy-section ul { margin-left: 2rem; margin-bottom: 1rem; } footer { background-color: var(--dark); padding: 3rem 2rem 1rem; border-top: 1px solid var(--secondary); } .footer-content { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 2rem; } .footer-logo { font-size: 1.5rem; font-weight: bold; color: var(--primary); margin-bottom: 1rem; display: inline-block; } .footer-links h3 { color: var(--primary); margin-bottom: 1.5rem; font-size: 1.2rem; } .footer-links ul { list-style: none; } .footer-links li { margin-bottom: 0.8rem; } .footer-links a { color: var(--light); text-decoration: none; transition: color 0.3s; } .footer-links a:hover { color: var(--primary); } .contact-info { margin-top: 1rem; } .contact-info p { display: flex; align-items: center; margin-bottom: 0.8rem; } .contact-info i { margin-right: 0.5rem; color: var(--primary); } .copyright { text-align: center; padding-top: 1rem; border-top: 1px solid rgba(0, 240, 255, 0.3); font-size: 0.9rem; color: rgba(255, 255, 255, 0.6); } @media (max-width: 768px) { body { padding-top: 70px; } nav { padding: 1rem; } .nav-links { position: absolute; top: 70px; left: 0; width: 100%; background-color: rgba(10, 10, 32, 0.95); flex-direction: column; align-items: center; padding: 1rem 0; clip-path: circle(0px at 90% -10%); transition: clip-path 0.5s ease; pointer-events: none; } .nav-links.active { clip-path: circle(1000px at 90% -10%); pointer-events: all; } .nav-links li { margin: 1rem 0; } .burger { display: block; } .burger.active div:nth-child(1) { transform: rotate(-45deg) translate(-5px, 6px); } .burger.active div:nth-child(2) { opacity: 0; } .burger.active div:nth-child(3) { transform: rotate(45deg) translate(-5px, -6px); } h1 { font-size: 2.2rem; } h2 { font-size: 1.8rem; } section { padding: 3rem 1rem; } }

