@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;700;900&display=swap');
:root { --bg: #090e17; --surface: rgba(30, 41, 59, 0.7); --primary: #00aaff; --primary-glow: rgba(0, 170, 255, 0.4); --text: #f1f5f9; --text-muted: #94a3b8; --border: rgba(255, 255, 255, 0.1); --tg: #229ED9; }
* { box-sizing: border-box; }
body { font-family: 'Outfit', sans-serif; background: var(--bg); background-image: radial-gradient(circle at 50% 0%, #1e293b 0%, var(--bg) 50%); color: var(--text); margin:0; padding:0; line-height: 1.6; min-height: 100vh; }
.nav { background: rgba(9, 14, 23, 0.8); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; padding: 15px 20px; }
.nav__inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.nav__logo { color: #fff; text-decoration: none; font-weight: 900; font-size: 1.5rem; letter-spacing: -0.5px; display: flex; align-items: center; gap: 8px; text-shadow: 0 0 10px var(--primary-glow); }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 24px; border-radius: 8px; text-decoration: none; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
.btn--register { background: linear-gradient(135deg, #00aaff, #0077ff); color: #fff; border: 1px solid rgba(255,255,255,0.2); box-shadow: 0 0 20px var(--primary-glow); }
.btn--register:hover { transform: translateY(-2px); box-shadow: 0 0 30px var(--primary-glow); filter: brightness(1.1); color: #fff; }
.btn--telegram { background: linear-gradient(135deg, #229ED9, #1a7eb3); color: #fff; }
.btn--telegram:hover { transform: translateY(-2px); box-shadow: 0 0 20px rgba(34, 158, 217, 0.4); color: #fff; }
.btn--sm { padding: 8px 16px; font-size: 0.9rem; }
a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: #fff; text-shadow: 0 0 8px var(--primary-glow); }
.breadcrumb { background: rgba(255,255,255,0.02); padding: 10px 20px; font-size: 0.9rem; color: var(--text-muted); border-bottom: 1px solid var(--border); }
.container { max-width: 1200px; margin: 0 auto; }
.breadcrumb a { color: var(--text-muted); }
.hero--sub { padding: 60px 20px; position: relative; }
.hero--sub::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent, var(--bg) 90%); z-index: 0; pointer-events: none; }
.article { max-width: 800px; margin: 0 auto; position: relative; z-index: 1; }
.article h1 { font-size: 2.8rem; line-height: 1.2; margin-bottom: 15px; font-weight: 900; background: linear-gradient(to right, #fff, #94a3b8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.article > p:first-of-type { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 40px; }
.inline-cta { margin: 40px 0; padding: 40px 30px; background: var(--surface); border: 1px solid rgba(0, 170, 255, 0.3); border-radius: 16px; text-align: center; backdrop-filter: blur(10px); box-shadow: 0 10px 40px rgba(0,0,0,0.5), inset 0 0 20px rgba(0, 170, 255, 0.1); }
.inline-cta__buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.article h2 { font-size: 2rem; margin-top: 50px; margin-bottom: 20px; font-weight: 700; color: #fff; display: flex; align-items: center; gap: 10px; }
.article h2::before { content: ''; display: block; width: 4px; height: 24px; background: var(--primary); border-radius: 2px; box-shadow: 0 0 10px var(--primary-glow); }
.article p { font-size: 1.1rem; color: #cbd5e1; margin-bottom: 20px; }
.article ul { list-style: none; padding: 0; }
.article li { background: var(--surface); margin-bottom: 15px; padding: 25px; border-radius: 12px; border: 1px solid var(--border); transition: transform 0.2s; box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
.article li:hover { transform: translateX(5px); border-color: rgba(0, 170, 255, 0.3); background: rgba(40, 53, 75, 0.8); }
.article li strong { display: block; color: #fff; font-size: 1.2rem; margin-bottom: 10px; }
.geo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; margin-top: 30px; }
.geo-card { position: relative; background: var(--surface); padding: 25px 20px; border-radius: 12px; text-align: center; border: 1px solid var(--border); transition: all 0.3s ease; box-shadow: 0 5px 15px rgba(0,0,0,0.3); }
.geo-card:hover { transform: translateY(-5px); border-color: var(--primary); box-shadow: 0 15px 30px rgba(0,0,0,0.4), 0 0 15px var(--primary-glow); background: rgba(30, 41, 59, 0.9); }
.geo-card h3 { margin: 0; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; gap: 10px; }
.geo-card a { color: #fff; }
.geo-card a::before { content: ''; position: absolute; inset: 0; }
.footer { background: #05080c; border-top: 1px solid var(--border); padding: 50px 20px; text-align: center; color: var(--text-muted); margin-top: 80px; }
.footer__disclaimer { font-size: 0.8rem; max-width: 800px; margin: 20px auto 0; opacity: 0.7; }
@media (max-width: 768px) { .article h1 { font-size: 2.2rem; } .inline-cta__buttons { flex-direction: column; } .nav__inner { flex-direction: column; gap: 15px; } .inline-cta { padding: 30px 20px; } }