#clickwrap-banner-container {
    position: fixed; top: 0; left: 0; width: 100%;
    background-color: #2c3e50; color: #ecf0f1;
    padding: 15px 20px; z-index: 99999;
    display: flex; align-items: center; justify-content: center;
    flex-wrap: wrap; gap: 10px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    font-size: 14px; line-height: 1.5;
    transition: transform 0.5s ease-in-out;
    transform: translateY(-100%);
}
#clickwrap-banner-container.visible {
    transform: translateY(0);
}
.clickwrap-text { text-align: center; flex-grow: 1; }
.clickwrap-text a { color: #3498db; text-decoration: underline; font-weight: bold; }
.clickwrap-text a:hover { color: #5dade2; }
#clickwrap-agree-button {
    background-color: #2980b9; color: #ffffff; border: none;
    padding: 8px 18px; border-radius: 20px; cursor: pointer;
    font-weight: bold; font-size: 14px; white-space: nowrap;
    transition: background-color 0.3s, transform 0.2s;
}
#clickwrap-agree-button:hover { background-color: #3498db; transform: scale(1.05); }
@media (max-width: 768px) {
    #clickwrap-banner-container { flex-direction: column; text-align: center; }
    .clickwrap-text { margin-bottom: 10px; }
}