* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: #0b0b0e;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.card {
    background: #121216;
    border: 1px solid #22222a;
    border-radius: 20px;
    padding: 35px 22px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.avatar-container {
    position: relative;
    width: 110px;
    height: 110px;
    margin: 0 auto 18px auto;
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #0088cc;
    background-color: #1a1a24;
}

.badge-online {
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #e50914;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 0 12px rgba(229, 9, 20, 0.7);
    letter-spacing: 0.5px;
}

.tag-pill {
    display: inline-block;
    border: 1px solid #333340;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 5px 14px;
    font-size: 11px;
    color: #b0b0ba;
    letter-spacing: 1.2px;
    margin-bottom: 16px;
    text-transform: uppercase;
    font-weight: 600;
}

h1 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 14px;
    color: #ffffff;
}

.description {
    font-size: 13.5px;
    color: #a0a0aa;
    line-height: 1.5;
    margin-bottom: 26px;
}

.btn-telegram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #0088cc;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    padding: 16px 20px;
    border-radius: 14px;
    transition: transform 0.2s, background-color 0.2s;
    box-shadow: 0 4px 18px rgba(0, 136, 204, 0.35);
}

.btn-telegram:hover {
    background-color: #0077b5;
    transform: translateY(-2px);
}

.status-schedule {
    margin-top: 22px;
    font-size: 12px;
    color: #d0d0da;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.dot {
    height: 8px;
    width: 8px;
    background-color: #2ecc71;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #2ecc71;
}

footer {
    margin-top: 32px;
    font-size: 10px;
    color: #60606a;
    line-height: 1.5;
}