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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    background-image: url('./image.png');
    background-color: #000;
    background-size: cover;
}

.container {
    width: 100%;
    max-width: 480px;
    padding: 20px;
}

.header {
    text-align: right;
    margin-bottom: 20px;
}

.download-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

.download-link:hover {
    color: rgba(255, 255, 255, 1);
}

.content {
    text-align: center;
}

.bot-card {
    background: #1e1e1e;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.bot-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.bot-name {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.bot-username {
    font-size: 15px;
    color: #7d7f81;
    margin-bottom: 24px;
}

.bot-description {
    margin-bottom: 24px;
}

.bot-description p {
    font-size: 15px;
    color: #fff;
    line-height: 1.5;
}

@-webkit-keyframes bg-move {
    0%   { background-position: -500px 0; }
    100% { background-position: 1000px 0; }
  }
  @keyframes bg-move {
    0%   { background-position: -500px 0; }
    100% { background-position: 1000px 0; }
  }

.start-button {
    background-image: linear-gradient(270deg, rgba(100, 181, 239, 0) 48.44%, #64b5ef 75.52%, rgba(100, 181, 239, 0) 100%);
    background-repeat: no-repeat;
    animation: bg-move linear 5s infinite;
    font-size: 14px;
    line-height: 17px;
    font-weight: bold;
    -webkit-font-smoothing: antialiased;
    color: #FFF;
    background-color: #1c93e3;
    border-radius: 22px;
    overflow: hidden;
    display: inline-block;
    padding: 13px 24px;
    height: 42px;
    text-transform: uppercase;
    vertical-align: top;
    text-decoration: none;
}

.start-button:hover {
    background: #2a93c9;
}

.start-button:active {
    background: #2681b5;
}

.footer-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.6;
}

.footer-text strong {
    font-weight: 600;
}

/* Адаптивность */
@media (max-width: 480px) {
    .container {
        padding: 16px;
    }
    
    .bot-card {
        padding: 32px 20px;
    }
    
    .bot-name {
        font-size: 22px;
    }
    
    .bot-avatar {
        width: 100px;
        height: 100px;
    }
}
