/* Общий контейнер */
.bonus-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    background: #121212;
    padding: 25px;
    border-radius: 12px;
    color: #e0e0e0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border: 1px solid #333;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    margin: 20px 0;
}

/* Боковые блоки */
.block-side {
    width: 38%;
    border: 1px solid #2a2a2a;
    padding: 20px;
    text-align: center;
    background: #1a1a1a;
    border-radius: 10px;
    transition: transform 0.3s ease;
}
.block-side:hover { border-color: #444; }

/* Центральный блок */
.block-center {
    width: 20%;
    text-align: center;
    align-self: center;
}
.block-center img {
    filter: drop-shadow(0 0 10px #ffcc00);
    margin-bottom: 10px;
}
.bonus-title {
    font-weight: bold;
    font-size: 1.1em;
    color: #ffcc00;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Ротатор кода */
.code-rotator {
    color: #ffcc00;
    font-family: 'Courier New', monospace;
    font-size: 1.8em;
    margin: 15px 0;
    border: 1px dashed #555;
    padding: 10px;
    background: #000;
    border-radius: 5px;
    text-shadow: 0 0 15px rgba(255, 204, 0, 0.4);
}

/* Списки ссылок */
.links-list {
    margin-top: 20px;
    text-align: left;
    font-size: 13px;
    border-top: 1px solid #2a2a2a;
    padding-top: 15px;
    max-height: 180px;
    overflow-y: auto;
}
.links-list strong { color: #888; text-transform: uppercase; font-size: 11px; }
.links-list a {
    display: block;
    padding: 5px 0;
    color: #00ff00;
    text-decoration: none;
    border-bottom: 1px solid #222;
    transition: 0.2s;
}
.links-list a:hover { color: #fff; padding-left: 5px; }

/* Формы и кнопки */
.bonus-input {
    width: 95%;
    margin-bottom: 10px;
    padding: 10px;
    background: #252525;
    border: 1px solid #444;
    color: #fff;
    border-radius: 4px;
    outline: none;
}
.bonus-input:focus { border-color: #ffcc00; }

.bonus-btn {
    width: 100%;
    background: #ffcc00;
    color: #000;
    border: none;
    padding: 12px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 4px;
    transition: 0.3s;
}
.bonus-btn:hover { background: #fff; transform: translateY(-2px); }

/* Сообщения */
.status-msg {
    text-align: center;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    font-weight: bold;
}
.msg-error { background: #441111; color: #ff9999; border: 1px solid #662222; }
.msg-success { background: #114411; color: #99ff99; border: 1px solid #226622; }

/* Остальные стили уже есть, добавим только для каптчи и счётчика попыток */

.captcha-block {
    margin: 15px 0;
    padding: 10px;
    background: #1e1e1e;
    border-radius: 8px;
    border: 1px solid #333;
}
.captcha-question {
    font-size: 1.2em;
    margin-bottom: 8px;
    color: #ffcc00;
    font-weight: bold;
}
.captcha-input {
    text-align: center;
    font-size: 1.1em;
}
.captcha-error {
    color: #ff8888;
    font-size: 0.85em;
    margin-top: 5px;
}
.attempts-warning {
    color: #ffaa66;
    background: #2a1a0a;
    border: 1px solid #aa7733;
    padding: 5px;
    border-radius: 4px;
    font-size: 0.85em;
    margin-top: 10px;
}
/* Метки над кнопками */
.button-label {
    font-size: 11px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

/* Рандомные ссылки в центре */
.random-links {
    margin-top: 20px;
    background: #1a1a1a;
    border-radius: 8px;
    padding: 10px;
    text-align: left;
}
.random-links strong {
    display: block;
    font-size: 12px;
    color: #ffcc00;
    margin-bottom: 8px;
}
.random-links ul {
    margin: 0;
    padding-left: 20px;
}
.random-links li {
    margin: 5px 0;
}
.random-links a {
    color: #00ff00;
    text-decoration: none;
    font-size: 12px;
}
.random-links a:hover {
    text-decoration: underline;
}

/* Блоки партнёров */
.partners-section {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}
.partner-block {
    flex: 1;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 15px;
    color: #ccc;
}
.partner-block h4 {
    color: #ffcc00;
    margin-top: 0;
    text-align: center;
}
.partner-block ul {
    margin: 10px 0 0;
    padding-left: 20px;
}
.partner-block li {
    margin: 5px 0;
    font-size: 13px;
}
.btn-cabinet {
    display: inline-block;
    background: #2e7d32;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
}
.btn-cabinet:hover {
    background: #1b5e20;
    color: white;
}