/* Gaming Otaku LLP - Global Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', sans-serif; background: #0a0a0f; color: #fff; overflow-x: hidden; }

.bg-particles { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; background: radial-gradient(ellipse at 50% 0%, #0f0a2e 0%, #0a0a0f 70%); }
.bg-particles::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Ccircle cx='50' cy='50' r='1' fill='%239b59b633'/%3E%3Ccircle cx='150' cy='100' r='0.5' fill='%2300d4ff22'/%3E%3Ccircle cx='250' cy='150' r='1.5' fill='%239b59b611'/%3E%3Ccircle cx='350' cy='50' r='0.8' fill='%2300d4ff22'/%3E%3Ccircle cx='100' cy='300' r='1' fill='%239b59b633'/%3E%3Ccircle cx='300' cy='350' r='0.5' fill='%2300d4ff22'/%3E%3C/svg%3E"); animation: drift 20s linear infinite; }
@keyframes drift { from { transform: translateY(0); } to { transform: translateY(-400px); } }

nav { position: fixed; top: 0; width: 100%; padding: 20px 60px; display: flex; justify-content: space-between; align-items: center; z-index: 100; backdrop-filter: blur(10px); background: rgba(10,10,15,0.8); border-bottom: 1px solid rgba(155,89,182,0.1); transition: background 0.3s, border-color 0.3s; }
nav.transparent { background: transparent; backdrop-filter: none; border-bottom-color: transparent; }
.logo { font-size: 1.8rem; font-weight: 900; background: linear-gradient(135deg, #9b59b6, #00d4ff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: 2px; text-decoration: none; }
.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a { color: #ccc; text-decoration: none; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; transition: color 0.3s; }
.nav-links a:hover, .nav-links a.active { color: #00d4ff; }

section { padding: 120px 60px; max-width: 1400px; margin: 0 auto; }
.section-title { font-size: 3rem; font-weight: 900; margin-bottom: 20px; background: linear-gradient(135deg, #fff, #9b59b6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.section-subtitle { color: #888; font-size: 1.1rem; margin-bottom: 60px; max-width: 600px; }

.cta-btn { padding: 16px 48px; font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; border: none; border-radius: 50px; background: linear-gradient(135deg, #9b59b6, #00d4ff); color: #fff; cursor: pointer; transition: transform 0.3s, box-shadow 0.3s; text-decoration: none; display: inline-block; }
.cta-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 40px rgba(155,89,182,0.4); }

footer { padding: 60px; text-align: center; border-top: 1px solid rgba(155,89,182,0.1); }
footer p { color: #555; font-size: 0.85rem; }
.social-links { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; }
.social-links a { color: #888; text-decoration: none; font-size: 0.9rem; transition: color 0.3s; }
.social-links a:hover { color: #00d4ff; }

@media (max-width: 768px) { nav { padding: 15px 20px; } section { padding: 80px 20px; } .nav-links { display: none; } }
