* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

body {
    background: #f0f2f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    width: 90%;
    max-width: 800px;
    text-align: center;
}

.header {
    margin-bottom: 40px;
}

.header h1 {
    font-size: 2.5rem;
    color: #333;
    font-weight: 700;
}

.back-link {
    display: block;
    margin-top: 10px;
    font-size: 1rem;
    color: #00aaff;
    text-decoration: none;
}

.back-link:hover {
    text-decoration: underline;
}

.content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-top: 7px solid #ffa500;
    text-align: left;
}

.bot-details {
    text-align: center;
}

.bot-details img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.bot-details h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
}

.bot-details p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
}

.bot-details ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
    text-align: left;
}

.bot-details ul li {
    margin-bottom: 10px;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ffa500;
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #db8f02;
}