body {
    font-family: 'Bebas Neue', sans-serif;
    background-image: url('https://i.postimg.cc/C1hCgByn/fonsite.jpg');
    background-size: cover;
    background-position: center center;
    color: white;
    margin: 0;
    padding: 0;
    text-align: center;
}

header {
    margin-bottom: 20px;
}

#logo {
    width: 250px;
    margin-top: 10px;
}

h1 {
    font-size: 4em;
    margin: 10px 0;
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

/* AO GOAT - выделение зеленым цветом */
.highlight {
    color: #4CAF50;
    font-size: 1.2em;
}

/* AI Agent - выделение синим для контраста */
.ai-highlight {
    color: #2196F3;
    font-size: 1.2em;
}

p {
    font-size: 1.5em;
    margin-bottom: 20px;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}

/* Кнопки */
.buttons-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.buy-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-size: 1.5em;
    transition: 0.3s;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
}

.buy-button:hover {
    background-color: #45a049;
    transform: scale(1.1);
}

.chat-button {
    padding: 15px 30px;
    font-size: 1.5em;
    background-color: #2196F3;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 20px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.chat-button:hover {
    background-color: #1976D2;
    transform: scale(1.1);
}

.hidden {
    display: none;
}

#chatbox {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

/* Roadmap Section */
#roadmap-section {
    margin-top: 40px;
    text-align: center;
}

#roadmap-section h2 {
    font-size: 2.5em;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
    margin-bottom: 20px;
}

#roadmap-section ul {
    list-style: none;
    padding: 0;
    font-size: 1.4em;
    margin-bottom: 20px;
}

#roadmap-section li {
    margin-bottom: 15px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
}

#roadmap-section li strong {
    color: #4CAF50;
    font-size: 1.5em;
}

#roadmap-section li span {
    color: white;
}

#roadmap-section img {
    width: 25%;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.5);
    margin-top: 20px;
}

/* Footer Section */
footer {
    margin-top: 40px;
    font-size: 1.2em;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
}

footer a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}
