.wikiscore-cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 12px 0;
    z-index: 9999;
    background-color: rgba(40, 40, 40, 0.85);
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(6px);
}

.wcn-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wcn-text {
    flex: 1;
    margin: 0 10px;
    font-size: 12px;
    line-height: 1.4;
}

.wcn-buttons {
    display: flex;
    gap: 8px;
}

.wcn-btn {
    background: #42ACE0;
    border: none;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    transition: background 0.2s ease;
}

.wcn-btn:hover {
    background: #1a74a1;
}

.wcn-accept {
    font-weight: 500;
}

@media (max-width: 768px) {
    .wcn-container {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .wcn-text {
        margin: 0 0 8px 0;
    }
    
    .wcn-buttons {
        width: 100%;
        justify-content: center;
    }
}