:root {
    --primary-color: #6366f1;
    --telegram-color: #0088cc;
    --discord-color: #5865f2;
    --bg-dark: #0f172a;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
}
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Outfit', sans-serif; }
body { background-color: var(--bg-dark); color: var(--text-main); min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.background-animation { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; background: radial-gradient(circle at 50% 50%, #1e293b 0%, #0f172a 100%); }
.circle { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.4; animation: move 20s infinite alternate; }
.circle-1 { width: 400px; height: 400px; background: var(--primary-color); top: -100px; left: -100px; }
.circle-2 { width: 500px; height: 500px; background: var(--discord-color); bottom: -150px; right: -150px; animation-delay: -5s; }
.circle-3 { width: 300px; height: 300px; background: var(--telegram-color); top: 50%; left: 50%; transform: translate(-50%, -50%); animation-duration: 15s; }
@keyframes move { from { transform: translate(0, 0) scale(1); } to { transform: translate(100px, 50px) scale(1.2); } }
.container { width: 100%; max-width: 600px; padding: 20px; perspective: 1000px; }
.glass-card { background: var(--glass-bg); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid var(--glass-border); border-radius: 32px; padding: 60px 40px; text-align: center; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5); animation: fadeInScale 0.8s cubic-bezier(0.34, 1.56, 0.64, 1); }
@keyframes fadeInScale { from { opacity: 0; transform: translateY(20px) scale(0.95); } to { opacity: 1; transform: translateY(0) scale(1); } }
.logo-text { font-size: 2.5rem; font-weight: 800; background: linear-gradient(to right, #fff, var(--primary-color)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.logo-text span { color: var(--primary-color); -webkit-text-fill-color: var(--primary-color); }
.title { font-size: 2rem; font-weight: 700; margin: 30px 0 15px; }
.description { color: var(--text-muted); font-size: 1.1rem; line-height: 1.6; margin-bottom: 40px; }
.platforms { display: flex; flex-direction: column; gap: 16px; }
.platform-btn { display: flex; align-items: center; text-decoration: none; padding: 18px 24px; border-radius: 20px; transition: all 0.3s ease; border: 1px solid transparent; position: relative; overflow: hidden; }
.icon-wrapper { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-right: 16px; background: rgba(255, 255, 255, 0.1); color: #fff; }
.btn-label { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(255, 255, 255, 0.6); }
.btn-name { display: block; font-size: 1.2rem; font-weight: 600; color: #fff; }
.arrow { opacity: 0; transform: translateX(-10px); transition: all 0.3s ease; color: #fff; }
.telegram { background: rgba(0, 136, 204, 0.1); border: 1px solid rgba(0, 136, 204, 0.2); }
.discord { background: rgba(88, 101, 242, 0.1); border: 1px solid rgba(88, 101, 242, 0.2); }
.platform-btn:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.3); }
.platform-btn:hover .arrow { opacity: 1; transform: translateX(0); }
.footer { margin-top: 40px; padding-top: 30px; border-top: 1px solid var(--glass-border); }
.footer p { color: var(--text-muted); font-size: 0.9rem; }
