* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
}

header {
    background: #0078ff;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

header h1 {
    font-size: 2.5rem;
}

header p {
    font-size: 1.2rem;
    margin: 1rem 0;
}

.cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #ff4081;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
}

main {
    padding: 2rem;
}

#ads {
    background: #ffffff;
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem;
    border-radius: 5px;
}

.ad-placeholder {
    background: #ddd;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #333;
}

#bots {
    text-align: center;
}

.bot-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.bot-card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin: 1rem;
    padding: 1.5rem;
    width: 250px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.bot-card:hover {
    transform: scale(1.05);
}

.bot-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.bot-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: #0078ff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

footer {
    text-align: center;
    padding: 1rem 0;
    background: #0078ff;
    color: white;
}

footer a {
    color: #ff4081;
    text-decoration: none;
}
