* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-x: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: #333;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
}

body::before {
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;
    filter: blur(15px);
    opacity: 0.7;
    z-index: -1;
}

.bg-circle {
    position: absolute;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    animation: float 20s infinite ease-in-out;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: 15%;
    left: 10%;
    animation: float 15s infinite ease-in-out reverse;
}

.circle-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 20%;
    animation: float 25s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

.container {
    width: 100%;
    max-width: 500px;
    padding: 40px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.bot-name {
    margin-bottom: 30px;
    background: linear-gradient(to right, #667eea, #764ba2);
    background-clip: text;
    color: transparent;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.bot-image-container {
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
    overflow: hidden;
    border: 5px solid #f0f0f0;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.bot-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bot-description {
    margin-bottom: 35px;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.telegram-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80%;
    padding: 16px 32px;
    color: #fff;
    background: linear-gradient(to right, #0088cc, #34b7f1);
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(52, 183, 241, 0.3);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.telegram-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(52, 183, 241, 0.4);
}

.telegram-icon {
    margin-right: 12px;
    font-size: 1.35rem;
}

.footer {
    margin-top: 30px;
    color: #888;
    font-size: 0.9rem;
}

.status {
    margin-top: 8px;
    color: #9b9b9b;
    font-size: 0.78rem;
}

@media (max-width: 600px) {
    .container {
        max-width: 90%;
        padding: 30px 20px;
    }

    .bot-name {
        font-size: 2.2rem;
    }

    .bot-image-container {
        width: 180px;
        height: 180px;
    }

    .telegram-btn {
        width: 90%;
        padding: 14px 28px;
    }
}

@media (max-width: 400px) {
    .bot-name {
        font-size: 1.8rem;
    }

    .bot-image-container {
        width: 150px;
        height: 150px;
    }
}
