body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #0b0c10;
    color: white;
}

.center {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    background: radial-gradient(circle at top, #151823, #0b0c10);
}

/* LOGO */
.logo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-bottom: 18px;
    box-shadow: 0 0 25px rgba(120, 120, 255, 0.25);
}

/* TEXT */
h1 {
    font-size: 2.6rem;
    margin: 0;
}

.tagline {
    margin-top: 10px;
    color: #a9b0c0;
    font-size: 1rem;
}

/* BASE BUTTON */
.btn {
    margin-top: 14px;
    padding: 12px 26px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1rem;
    transition: 0.2s;
    color: white;
}

/* TELEGRAM MAIN BUTTON */
.telegram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    background: linear-gradient(135deg, #2aabee, #229ed9);
    box-shadow: 0 10px 30px rgba(34, 158, 217, 0.35);
    font-weight: 600;
}

.telegram:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(34, 158, 217, 0.5);
}

.tg-icon {
    width: 20px;
    height: 20px;
}

/* FALLBACK BUTTON */
.fallback {
    background: rgba(255,255,255,0.08);
}

.fallback:hover {
    background: rgba(255,255,255,0.12);
}

/* PROXY BUTTON */
.proxy {
    background: rgba(255,255,255,0.06);
}

.proxy:hover {
    background: rgba(255,255,255,0.12);
}

/* FOOT TEXT */
.small {
    margin-top: 18px;
    font-size: 0.8rem;
    color: #666;
}
.help {
    margin-top: 25px;
    max-width: 320px;
    text-align: center;
}

.help-title {
    font-size: 0.95rem;
    color: #ffffff;
    margin-bottom: 6px;
}

.help-text {
    font-size: 0.8rem;
    color: #9aa3b2;
    line-height: 1.4;
}

/* чуть подчистим прокси кнопку */
.proxy {
    background: rgba(255,255,255,0.06);
}

.proxy:hover {
    background: rgba(255,255,255,0.12);
}